diff --git a/AudioPlayerAsync.cpp b/AudioPlayerAsync.cpp index 9a94a56..bb4ed01 100644 --- a/AudioPlayerAsync.cpp +++ b/AudioPlayerAsync.cpp @@ -1,3 +1,5 @@ +#ifdef AUDIO + #include "AudioPlayerAsync.h" @@ -88,3 +90,4 @@ void AudioPlayerAsync::workerThread() { } } +#endif \ No newline at end of file diff --git a/AudioPlayerAsync.h b/AudioPlayerAsync.h index a31e9de..b034d96 100644 --- a/AudioPlayerAsync.h +++ b/AudioPlayerAsync.h @@ -1,4 +1,7 @@ #pragma once + +#ifdef AUDIO + #include #include #include @@ -7,6 +10,7 @@ #include #include "cmakeaudioplayer/include/AudioPlayer.hpp" + class AudioPlayerAsync { public: AudioPlayerAsync(); @@ -45,3 +49,5 @@ private: void workerThread(); }; + +#endif \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..59b45ed --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,79 @@ +cmake_minimum_required(VERSION 3.10) + +# Название проекта +project(SDLApp VERSION 1.0 LANGUAGES CXX) + +# Устанавливаем стандарт C++ +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED True) + +# Активируем многопоточность +set(THREADS_PREFER_PTHREAD_FLAG ON) +find_package(Threads REQUIRED) + +# Находим библиотеки с помощью pkg-config +find_package(PkgConfig REQUIRED) +pkg_check_modules(SDL2 REQUIRED sdl2) +pkg_check_modules(GL REQUIRED gl) + +option(AUDIO "Enable audio support" ON) + +if(AUDIO) + pkg_check_modules(VORBIS REQUIRED vorbis vorbisfile ogg) + pkg_check_modules(OPENAL REQUIRED openal) + add_definitions(-DAUDIO) +endif() + +# Определяем исполняемый файл и исходники +add_executable(sdl_app + Game.cpp + main.cpp + Math.cpp + OpenGlExtensions.cpp + Physics.cpp + Renderer.cpp + ShaderManager.cpp + TextureManager.cpp + Utils.cpp + BoneAnimatedModel.cpp + ObjLoader.cpp + TextModel.cpp + Inventory.cpp + Environment.cpp + GameObjectManager.cpp + RenderSystem.cpp + QuestScripts.cpp +) + +if(AUDIO) + target_sources(sdl_app PRIVATE + cmakeaudioplayer/src/AudioPlayer.cpp + AudioPlayerAsync.cpp + ) +endif() + +target_include_directories(sdl_app PRIVATE + ${SDL2_INCLUDE_DIRS} + ${GL_INCLUDE_DIRS} +) + +if(AUDIO) + target_include_directories(sdl_app PRIVATE + ${VORBIS_INCLUDE_DIRS} + ${OPENAL_INCLUDE_DIRS} + cmakeaudioplayer/include + ) +endif() + +target_link_libraries(sdl_app + ${SDL2_LIBRARIES} + ${GL_LIBRARIES} + Threads::Threads +) + +if(AUDIO) + target_link_libraries(sdl_app + ${VORBIS_LIBRARIES} + ${OPENAL_LIBRARIES} + ) +endif() \ No newline at end of file diff --git a/Game.cpp b/Game.cpp index 6117a53..e2c6ea1 100755 --- a/Game.cpp +++ b/Game.cpp @@ -136,7 +136,9 @@ void Game::update() { { gameObjects.loadingThread.join(); } + #ifdef AUDIO gameObjects.audioPlayerAsync.exit(); + #endif Environment::exitGameLoop = true; } diff --git a/Game.h b/Game.h index 70e6680..eb62a86 100755 --- a/Game.h +++ b/Game.h @@ -19,7 +19,7 @@ public: bool shouldExit() const { return Environment::exitGameLoop; } -private: +private: void processTickCount(); void drawScene(); diff --git a/GameObjectManager.cpp b/GameObjectManager.cpp index 4c613c1..8812dbd 100644 --- a/GameObjectManager.cpp +++ b/GameObjectManager.cpp @@ -5,6 +5,8 @@ #include "QuestScripts.h" #include "TextModel.h" // Add this include for LoadFromTextFile +#include + namespace ZL { const float GameObjectManager::INVENTORY_ICON_SIZE = 44.0f; @@ -54,7 +56,6 @@ void GameObjectManager::initialize() { loadingThread = std::thread([this]() { preloadedRoomMeshArr.resize(3); - preloadedRoomMeshArr[0] = ZL::LoadFromTextFile("./oneroom001.txt"); preloadedRoomMeshArr[0].Scale(10); preloadedRoomMeshArr[0].Move(Vector3f{ 0, 93, 0 }); @@ -99,7 +100,7 @@ void GameObjectManager::initialize() { cubeForFirstRoomT.activeObjectScreenMeshMutable.AssignFrom(cubeForFirstRoomT.activeObjectScreenMesh); cubeForFirstRoomT.activeObjectScreenMeshMutable.RefreshVBO(); cubeForFirstRoomT.inventoryIconTexturePtr = std::make_shared(CreateTextureDataFromBmp32("./textures/inventory_objects/cubic_T_icon.bmp32")); - + ActiveObject cubeForFirstRoomO; cubeForFirstRoomO.name = "cube_O"; @@ -185,7 +186,7 @@ void GameObjectManager::initialize() { ActiveObject door; door.name = "doorGlory"; - door.activeObjectMesh = ZL::LoadFromTextFile("./door001.txt"); // Add ZL:: namespace + door.activeObjectMesh = ZL::LoadFromTextFile("./door.txt"); // Add ZL:: namespace door.activeObjectMesh.Scale(60); door.activeObjectMesh.RotateByMatrix(QuatToMatrix(QuatFromRotateAroundY(-M_PI * 0.5))); door.activeObjectMeshMutable.AssignFrom(door.activeObjectMesh); @@ -261,9 +262,10 @@ void GameObjectManager::initialize() { if (audioPlayer) { audioPlayer->playMusic(rooms[current_room_index].sound_name); }*/ + #ifdef AUDIO audioPlayerAsync.resetAsync(); audioPlayerAsync.playMusicAsync(rooms[current_room_index].sound_name); - + #endif // Initialize inventory inventoryIconMesh = CreateRect2D( { 0.0f, 40.0f }, @@ -326,10 +328,11 @@ void GameObjectManager::switch_room(int index){ if (audioPlayer) { audioPlayer->playMusic(rooms[current_room_index].sound_name); }*/ + #ifdef AUDIO audioPlayerAsync.stopAsync(); audioPlayerAsync.resetAsync(); audioPlayerAsync.playMusicAsync(rooms[current_room_index].sound_name); - + #endif activeObjects = rooms[current_room_index].objects; std::cout << "Current music" << rooms[current_room_index].sound_name << std::endl; @@ -523,7 +526,9 @@ void GameObjectManager::handleEvent(const SDL_Event& event) { { loadingThread.join(); } + #ifdef AUDIO audioPlayerAsync.exit(); + #endif Environment::exitGameLoop = true; break; case SDLK_LEFT: @@ -533,7 +538,9 @@ void GameObjectManager::handleEvent(const SDL_Event& event) { return; } Environment::leftPressed = true; + #ifdef AUDIO audioPlayerAsync.playSoundAsync("walk.ogg"); // Заменено + #endif if (Environment::violaCurrentAnimation == 0) { Environment::violaCurrentAnimation = 1; Environment::violaLastWalkFrame = -1; @@ -546,7 +553,9 @@ void GameObjectManager::handleEvent(const SDL_Event& event) { return; } Environment::rightPressed = true; + #ifdef AUDIO audioPlayerAsync.playSoundAsync("walk.ogg"); // Заменено + #endif if (Environment::violaCurrentAnimation == 0) { Environment::violaCurrentAnimation = 1; Environment::violaLastWalkFrame = -1; @@ -559,7 +568,9 @@ void GameObjectManager::handleEvent(const SDL_Event& event) { return; } Environment::upPressed = true; + #ifdef AUDIO audioPlayerAsync.playSoundAsync("walk.ogg"); // Заменено + #endif if (Environment::violaCurrentAnimation == 0) { Environment::violaCurrentAnimation = 1; Environment::violaLastWalkFrame = -1; @@ -572,7 +583,9 @@ void GameObjectManager::handleEvent(const SDL_Event& event) { return; } Environment::downPressed = true; + #ifdef AUDIO audioPlayerAsync.playSoundAsync("walk.ogg"); // Заменено + #endif if (Environment::violaCurrentAnimation == 0) { Environment::violaCurrentAnimation = 1; Environment::violaLastWalkFrame = -1; diff --git a/GameObjectManager.h b/GameObjectManager.h index ad28048..f3a5cab 100644 --- a/GameObjectManager.h +++ b/GameObjectManager.h @@ -61,7 +61,9 @@ public: std::string bearName; + #ifdef AUDIO AudioPlayerAsync audioPlayerAsync; + #endif ZL::VertexDataStruct inventoryIconMesh; ZL::VertexRenderStruct inventoryIconMeshMutable; diff --git a/Kitchen_ceramics.bmp b/Kitchen_ceramics.bmp deleted file mode 100644 index 37ea0bc..0000000 Binary files a/Kitchen_ceramics.bmp and /dev/null differ diff --git a/Readme.md b/Readme.md index dd27389..0120310 100644 --- a/Readme.md +++ b/Readme.md @@ -43,7 +43,6 @@ g++ Game.cpp main.cpp Math.cpp OpenGlExtensions.cpp Physics.cpp Renderer.cpp Sha $(pkg-config --cflags --libs sdl2 gl) \ $(pkg-config --cflags --libs vorbis vorbisfile ogg) \ -lopenal - ``` # License diff --git a/Renderer.cpp b/Renderer.cpp index d86ffa6..3c85e18 100755 --- a/Renderer.cpp +++ b/Renderer.cpp @@ -352,7 +352,6 @@ namespace ZL { glDepthFunc(GL_LEQUAL); CheckGlError(); - } void Renderer::PushProjectionMatrix(float width, float height, float zNear, float zFar) diff --git a/aaaa b/aaaa index 325b762..53b2490 100644 --- a/aaaa +++ b/aaaa @@ -17,3 +17,13 @@ void main() In windows it is ok. In linux, error: Failed to compile fragment shader code! + +Run using cmakelist +make -j$(nproc) -C build +./build/sdl_app + +Для постройки без звука +1. Очищаем build папку +rm -rf build +2. Пересоздаём конфигурацию CMake +cmake -B build -DAUDIO=OFF \ No newline at end of file diff --git a/aoscreen01.bmp b/aoscreen01.bmp deleted file mode 100644 index 87b960a..0000000 Binary files a/aoscreen01.bmp and /dev/null differ diff --git a/book001.txt b/book001.txt deleted file mode 100644 index e2f03ec..0000000 --- a/book001.txt +++ /dev/null @@ -1,453 +0,0 @@ -===Vertices: 32 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -===UV Coordinates: -Face count: 64 -Face 0 -UV Count: 3 - UV - UV - UV -Face 1 -UV Count: 3 - UV - UV - UV -Face 2 -UV Count: 3 - UV - UV - UV -Face 3 -UV Count: 3 - UV - UV - UV -Face 4 -UV Count: 3 - UV - UV - UV -Face 5 -UV Count: 3 - UV - UV - UV -Face 6 -UV Count: 3 - UV - UV - UV -Face 7 -UV Count: 3 - UV - UV - UV -Face 8 -UV Count: 3 - UV - UV - UV -Face 9 -UV Count: 3 - UV - UV - UV -Face 10 -UV Count: 3 - UV - UV - UV -Face 11 -UV Count: 3 - UV - UV - UV -Face 12 -UV Count: 3 - UV - UV - UV -Face 13 -UV Count: 3 - UV - UV - UV -Face 14 -UV Count: 3 - UV - UV - UV -Face 15 -UV Count: 3 - UV - UV - UV -Face 16 -UV Count: 3 - UV - UV - UV -Face 17 -UV Count: 3 - UV - UV - UV -Face 18 -UV Count: 3 - UV - UV - UV -Face 19 -UV Count: 3 - UV - UV - UV -Face 20 -UV Count: 3 - UV - UV - UV -Face 21 -UV Count: 3 - UV - UV - UV -Face 22 -UV Count: 3 - UV - UV - UV -Face 23 -UV Count: 3 - UV - UV - UV -Face 24 -UV Count: 3 - UV - UV - UV -Face 25 -UV Count: 3 - UV - UV - UV -Face 26 -UV Count: 3 - UV - UV - UV -Face 27 -UV Count: 3 - UV - UV - UV -Face 28 -UV Count: 3 - UV - UV - UV -Face 29 -UV Count: 3 - UV - UV - UV -Face 30 -UV Count: 3 - UV - UV - UV -Face 31 -UV Count: 3 - UV - UV - UV -Face 32 -UV Count: 3 - UV - UV - UV -Face 33 -UV Count: 3 - UV - UV - UV -Face 34 -UV Count: 3 - UV - UV - UV -Face 35 -UV Count: 3 - UV - UV - UV -Face 36 -UV Count: 3 - UV - UV - UV -Face 37 -UV Count: 3 - UV - UV - UV -Face 38 -UV Count: 3 - UV - UV - UV -Face 39 -UV Count: 3 - UV - UV - UV -Face 40 -UV Count: 3 - UV - UV - UV -Face 41 -UV Count: 3 - UV - UV - UV -Face 42 -UV Count: 3 - UV - UV - UV -Face 43 -UV Count: 3 - UV - UV - UV -Face 44 -UV Count: 3 - UV - UV - UV -Face 45 -UV Count: 3 - UV - UV - UV -Face 46 -UV Count: 3 - UV - UV - UV -Face 47 -UV Count: 3 - UV - UV - UV -Face 48 -UV Count: 3 - UV - UV - UV -Face 49 -UV Count: 3 - UV - UV - UV -Face 50 -UV Count: 3 - UV - UV - UV -Face 51 -UV Count: 3 - UV - UV - UV -Face 52 -UV Count: 3 - UV - UV - UV -Face 53 -UV Count: 3 - UV - UV - UV -Face 54 -UV Count: 3 - UV - UV - UV -Face 55 -UV Count: 3 - UV - UV - UV -Face 56 -UV Count: 3 - UV - UV - UV -Face 57 -UV Count: 3 - UV - UV - UV -Face 58 -UV Count: 3 - UV - UV - UV -Face 59 -UV Count: 3 - UV - UV - UV -Face 60 -UV Count: 3 - UV - UV - UV -Face 61 -UV Count: 3 - UV - UV - UV -Face 62 -UV Count: 3 - UV - UV - UV -Face 63 -UV Count: 3 - UV - UV - UV -===Normals: -Vertex 0: Normal -Vertex 1: Normal -Vertex 2: Normal -Vertex 3: Normal -Vertex 4: Normal -Vertex 5: Normal -Vertex 6: Normal -Vertex 7: Normal -Vertex 8: Normal -Vertex 9: Normal -Vertex 10: Normal -Vertex 11: Normal -Vertex 12: Normal -Vertex 13: Normal -Vertex 14: Normal -Vertex 15: Normal -Vertex 16: Normal -Vertex 17: Normal -Vertex 18: Normal -Vertex 19: Normal -Vertex 20: Normal -Vertex 21: Normal -Vertex 22: Normal -Vertex 23: Normal -Vertex 24: Normal -Vertex 25: Normal -Vertex 26: Normal -Vertex 27: Normal -Vertex 28: Normal -Vertex 29: Normal -Vertex 30: Normal -Vertex 31: Normal -===Triangles: 64 -Triangle: [0, 1, 2] -Triangle: [3, 4, 1] -Triangle: [5, 6, 7] -Triangle: [8, 9, 6] -Triangle: [7, 9, 2] -Triangle: [0, 10, 5] -Triangle: [11, 12, 13] -Triangle: [4, 2, 1] -Triangle: [14, 7, 4] -Triangle: [15, 2, 9] -Triangle: [16, 13, 17] -Triangle: [5, 18, 8] -Triangle: [15, 19, 0] -Triangle: [8, 20, 15] -Triangle: [21, 22, 23] -Triangle: [18, 24, 20] -Triangle: [20, 21, 19] -Triangle: [10, 22, 18] -Triangle: [25, 26, 27] -Triangle: [21, 25, 19] -Triangle: [10, 26, 23] -Triangle: [23, 28, 21] -Triangle: [17, 0, 29] -Triangle: [13, 3, 17] -Triangle: [13, 5, 14] -Triangle: [12, 0, 5] -Triangle: [30, 19, 31] -Triangle: [16, 27, 11] -Triangle: [16, 19, 25] -Triangle: [11, 10, 30] -Triangle: [30, 29, 12] -Triangle: [29, 16, 17] -Triangle: [0, 3, 1] -Triangle: [3, 14, 4] -Triangle: [5, 8, 6] -Triangle: [8, 15, 9] -Triangle: [7, 6, 9] -Triangle: [0, 19, 10] -Triangle: [11, 30, 12] -Triangle: [4, 7, 2] -Triangle: [14, 5, 7] -Triangle: [15, 0, 2] -Triangle: [16, 11, 13] -Triangle: [5, 10, 18] -Triangle: [15, 20, 19] -Triangle: [8, 18, 20] -Triangle: [21, 24, 22] -Triangle: [18, 22, 24] -Triangle: [20, 24, 21] -Triangle: [10, 23, 22] -Triangle: [25, 28, 26] -Triangle: [21, 28, 25] -Triangle: [10, 27, 26] -Triangle: [23, 26, 28] -Triangle: [17, 3, 0] -Triangle: [13, 14, 3] -Triangle: [13, 12, 5] -Triangle: [12, 29, 0] -Triangle: [30, 10, 19] -Triangle: [16, 25, 27] -Triangle: [16, 31, 19] -Triangle: [11, 27, 10] -Triangle: [30, 31, 29] -Triangle: [29, 31, 16] diff --git a/book03.bmp b/book03.bmp deleted file mode 100644 index dea14df..0000000 Binary files a/book03.bmp and /dev/null differ diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..f23408f --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,456 @@ +# This is the CMakeCache file. +# For build in directory: /home/romazan/Рабочий стол/cproject/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable audio support +AUDIO:BOOL=OFF + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/romazan/Рабочий стол/cproject/build/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=SDLApp + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=1.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config + +//Value Computed by CMake +SDLApp_BINARY_DIR:STATIC=/home/romazan/Рабочий стол/cproject/build + +//Value Computed by CMake +SDLApp_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +SDLApp_SOURCE_DIR:STATIC=/home/romazan/Рабочий стол/cproject + +//Path to a library. +pkgcfg_lib_GL_GL:FILEPATH=/usr/lib/x86_64-linux-gnu/libGL.so + +//Path to a library. +pkgcfg_lib_SDL2_SDL2:FILEPATH=/usr/lib/x86_64-linux-gnu/libSDL2.so + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/romazan/Рабочий стол/cproject/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/romazan/Рабочий стол/cproject +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding PkgConfig +FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.8.1()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +GL_CFLAGS:INTERNAL=-I/usr/include +GL_CFLAGS_I:INTERNAL= +GL_CFLAGS_OTHER:INTERNAL= +GL_FOUND:INTERNAL=1 +GL_INCLUDEDIR:INTERNAL=/usr/include +GL_INCLUDE_DIRS:INTERNAL=/usr/include +GL_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lGL +GL_LDFLAGS_OTHER:INTERNAL= +GL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +GL_LIBRARIES:INTERNAL=GL +GL_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +GL_LIBS:INTERNAL= +GL_LIBS_L:INTERNAL= +GL_LIBS_OTHER:INTERNAL= +GL_LIBS_PATHS:INTERNAL= +GL_MODULE_NAME:INTERNAL=gl +GL_PREFIX:INTERNAL=/usr +GL_STATIC_CFLAGS:INTERNAL=-I/usr/include +GL_STATIC_CFLAGS_I:INTERNAL= +GL_STATIC_CFLAGS_OTHER:INTERNAL= +GL_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +GL_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lGL +GL_STATIC_LDFLAGS_OTHER:INTERNAL= +GL_STATIC_LIBDIR:INTERNAL= +GL_STATIC_LIBRARIES:INTERNAL=GL +GL_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +GL_STATIC_LIBS:INTERNAL= +GL_STATIC_LIBS_L:INTERNAL= +GL_STATIC_LIBS_OTHER:INTERNAL= +GL_STATIC_LIBS_PATHS:INTERNAL= +GL_VERSION:INTERNAL=1.2 +GL_gl_INCLUDEDIR:INTERNAL= +GL_gl_LIBDIR:INTERNAL= +GL_gl_PREFIX:INTERNAL= +GL_gl_VERSION:INTERNAL= +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +SDL2_CFLAGS:INTERNAL=-I/usr/include;-I/usr/include/SDL2;-D_REENTRANT +SDL2_CFLAGS_I:INTERNAL= +SDL2_CFLAGS_OTHER:INTERNAL=-D_REENTRANT +SDL2_FOUND:INTERNAL=1 +SDL2_INCLUDEDIR:INTERNAL=/usr/include +SDL2_INCLUDE_DIRS:INTERNAL=/usr/include;/usr/include/SDL2 +SDL2_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lSDL2 +SDL2_LDFLAGS_OTHER:INTERNAL= +SDL2_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +SDL2_LIBRARIES:INTERNAL=SDL2 +SDL2_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +SDL2_LIBS:INTERNAL= +SDL2_LIBS_L:INTERNAL= +SDL2_LIBS_OTHER:INTERNAL= +SDL2_LIBS_PATHS:INTERNAL= +SDL2_MODULE_NAME:INTERNAL=sdl2 +SDL2_PREFIX:INTERNAL=/usr +SDL2_STATIC_CFLAGS:INTERNAL=-I/usr/include;-I/usr/include/SDL2;-D_REENTRANT +SDL2_STATIC_CFLAGS_I:INTERNAL= +SDL2_STATIC_CFLAGS_OTHER:INTERNAL=-D_REENTRANT +SDL2_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include;/usr/include/SDL2 +SDL2_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lSDL2;-lm;-lasound;-lm;-ldl;-lpthread;-lpulse;-pthread;-lsamplerate;-lX11;-lXext;-lXcursor;-lXi;-lXfixes;-lXrandr;-lXss;-ldrm;-lgbm;-lwayland-egl;-lwayland-client;-lwayland-cursor;-lxkbcommon;-ldecor-0;-lpthread +SDL2_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread +SDL2_STATIC_LIBDIR:INTERNAL= +SDL2_STATIC_LIBRARIES:INTERNAL=SDL2;m;asound;m;dl;pthread;pulse;samplerate;X11;Xext;Xcursor;Xi;Xfixes;Xrandr;Xss;drm;gbm;wayland-egl;wayland-client;wayland-cursor;xkbcommon;decor-0;pthread +SDL2_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +SDL2_STATIC_LIBS:INTERNAL= +SDL2_STATIC_LIBS_L:INTERNAL= +SDL2_STATIC_LIBS_OTHER:INTERNAL= +SDL2_STATIC_LIBS_PATHS:INTERNAL= +SDL2_VERSION:INTERNAL=2.30.0 +SDL2_sdl2_INCLUDEDIR:INTERNAL= +SDL2_sdl2_LIBDIR:INTERNAL= +SDL2_sdl2_PREFIX:INTERNAL= +SDL2_sdl2_VERSION:INTERNAL= +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +__pkg_config_arguments_GL:INTERNAL=REQUIRED;gl +__pkg_config_arguments_SDL2:INTERNAL=REQUIRED;sdl2 +__pkg_config_checked_GL:INTERNAL=1 +__pkg_config_checked_SDL2:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GL_GL +pkgcfg_lib_GL_GL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_SDL2_SDL2 +pkgcfg_lib_SDL2_SDL2-ADVANCED:INTERNAL=1 +prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu + diff --git a/build/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..8dbc9d3 --- /dev/null +++ b/build/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.3.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-13") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..e90f3f7 Binary files /dev/null and b/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.28.3/CMakeSystem.cmake b/build/CMakeFiles/3.28.3/CMakeSystem.cmake new file mode 100644 index 0000000..070f919 --- /dev/null +++ b/build/CMakeFiles/3.28.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.8.0-53-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.8.0-53-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.8.0-53-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.8.0-53-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9c9c90e --- /dev/null +++ b/build/CMakeFiles/3.28.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,869 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out b/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out new file mode 100755 index 0000000..c8ced32 Binary files /dev/null and b/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..7c54e02 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,310 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" + - "CMakeLists.txt:4 (project)" + message: | + The system is: Linux - 6.8.0-53-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:4 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /home/romazan/Рабочий стол/cproject/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/romazan/\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0441\u0442\u043e\u043b/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM" + binary: "/home/romazan/\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0441\u0442\u043e\u043b/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_a9483/fast + /usr/bin/gmake -f CMakeFiles/cmTC_a9483.dir/build.make CMakeFiles/cmTC_a9483.dir/build + gmake[1]: Entering directory '/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM' + Building CXX object CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -v -o CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a9483.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_a9483.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cceXW9ob.s + GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu) + compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/13 + /usr/include/x86_64-linux-gnu/c++/13 + /usr/include/c++/13/backward + /usr/lib/gcc/x86_64-linux-gnu/13/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + Compiler executable checksum: c81c05345ce537099dafd5580045814a + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a9483.dir/' + as -v --64 -o CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o /tmp/cceXW9ob.s + GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_a9483 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a9483.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a9483 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a9483' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_a9483.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccsDU8cr.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a9483 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a9483' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_a9483.' + gmake[1]: Leaving directory '/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/13] + add: [/usr/include/x86_64-linux-gnu/c++/13] + add: [/usr/include/c++/13/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/13] ==> [/usr/include/c++/13] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/13] ==> [/usr/include/x86_64-linux-gnu/c++/13] + collapse include dir [/usr/include/c++/13/backward] ==> [/usr/include/c++/13/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_a9483/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_a9483.dir/build.make CMakeFiles/cmTC_a9483.dir/build] + ignore line: [gmake[1]: Entering directory '/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-Rhk2HM'] + ignore line: [Building CXX object CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a9483.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_a9483.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cceXW9ob.s] + ignore line: [GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/13] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/13] + ignore line: [ /usr/include/c++/13/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: c81c05345ce537099dafd5580045814a] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a9483.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o /tmp/cceXW9ob.s] + ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_a9483] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a9483.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a9483 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a9483' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_a9483.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccsDU8cr.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a9483 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccsDU8cr.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_a9483] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] + arg [CMakeFiles/cmTC_a9483.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/usr/share/cmake-3.28/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "/usr/share/cmake-3.28/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "/usr/share/cmake-3.28/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "CMakeLists.txt:12 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/home/romazan/\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0441\u0442\u043e\u043b/cproject/build/CMakeFiles/CMakeScratch/TryCompile-sM8ZXL" + binary: "/home/romazan/\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0441\u0442\u043e\u043b/cproject/build/CMakeFiles/CMakeScratch/TryCompile-sM8ZXL" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-sM8ZXL' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_bb3ba/fast + /usr/bin/gmake -f CMakeFiles/cmTC_bb3ba.dir/build.make CMakeFiles/cmTC_bb3ba.dir/build + gmake[1]: вход в каталог «/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-sM8ZXL» + Building CXX object CMakeFiles/cmTC_bb3ba.dir/src.cxx.o + /usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu++17 -o CMakeFiles/cmTC_bb3ba.dir/src.cxx.o -c "/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-sM8ZXL/src.cxx" + Linking CXX executable cmTC_bb3ba + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bb3ba.dir/link.txt --verbose=1 + /usr/bin/c++ CMakeFiles/cmTC_bb3ba.dir/src.cxx.o -o cmTC_bb3ba + gmake[1]: выход из каталога «/home/romazan/Рабочий стол/cproject/build/CMakeFiles/CMakeScratch/TryCompile-sM8ZXL» + + exitCode: 0 +... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..4fd480f --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/romazan/Рабочий стол/cproject") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/romazan/Рабочий стол/cproject/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..a4063e3 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/romazan/Рабочий стол/cproject/CMakeLists.txt" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.28/Modules/CheckCXXSourceCompiles.cmake" + "/usr/share/cmake-3.28/Modules/CheckIncludeFileCXX.cmake" + "/usr/share/cmake-3.28/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.28/Modules/FindPkgConfig.cmake" + "/usr/share/cmake-3.28/Modules/FindThreads.cmake" + "/usr/share/cmake-3.28/Modules/Internal/CheckSourceCompiles.cmake" + "/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/sdl_app.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..49cabda --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = "/home/romazan/Рабочий стол/cproject" + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = "/home/romazan/Рабочий стол/cproject/build" + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/sdl_app.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/sdl_app.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/sdl_app.dir + +# All Build rule for target. +CMakeFiles/sdl_app.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 "Built target sdl_app" +.PHONY : CMakeFiles/sdl_app.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/sdl_app.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start "/home/romazan/Рабочий стол/cproject/build/CMakeFiles" 18 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/sdl_app.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start "/home/romazan/Рабочий стол/cproject/build/CMakeFiles" 0 +.PHONY : CMakeFiles/sdl_app.dir/rule + +# Convenience name for target. +sdl_app: CMakeFiles/sdl_app.dir/rule +.PHONY : sdl_app + +# clean rule for target. +CMakeFiles/sdl_app.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/clean +.PHONY : CMakeFiles/sdl_app.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..72a1c15 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/romazan/Рабочий стол/cproject/build/CMakeFiles/sdl_app.dir +/home/romazan/Рабочий стол/cproject/build/CMakeFiles/edit_cache.dir +/home/romazan/Рабочий стол/cproject/build/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..3c03207 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +18 diff --git a/build/CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o b/build/CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o new file mode 100644 index 0000000..4bcae22 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o.d b/build/CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o.d new file mode 100644 index 0000000..b381184 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o.d @@ -0,0 +1,370 @@ +CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /usr/include/c++/13/initializer_list \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/range_access.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/c++/13/stdlib.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/c++/13/math.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/regex /usr/include/c++/13/bitset \ + /usr/include/c++/13/locale /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/locale_facets_nonio.h /usr/include/c++/13/ctime \ + /usr/include/x86_64-linux-gnu/c++/13/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/13/bits/codecvt.h \ + /usr/include/c++/13/bits/locale_facets_nonio.tcc \ + /usr/include/c++/13/bits/locale_conv.h /usr/include/c++/13/sstream \ + /usr/include/c++/13/istream /usr/include/c++/13/ios \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ + /usr/include/c++/13/bits/ostream.tcc \ + /usr/include/c++/13/bits/istream.tcc \ + /usr/include/c++/13/bits/sstream.tcc \ + /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /usr/include/c++/13/bits/regex_constants.h \ + /usr/include/c++/13/bits/regex_error.h \ + /usr/include/c++/13/bits/regex_automaton.h \ + /usr/include/c++/13/bits/regex_automaton.tcc \ + /usr/include/c++/13/bits/regex_scanner.h \ + /usr/include/c++/13/bits/regex_scanner.tcc \ + /usr/include/c++/13/bits/regex_compiler.h \ + /usr/include/c++/13/bits/regex_compiler.tcc \ + /usr/include/c++/13/bits/regex.h /usr/include/c++/13/bits/regex.tcc \ + /usr/include/c++/13/bits/regex_executor.h \ + /usr/include/c++/13/bits/regex_executor.tcc /usr/include/c++/13/fstream \ + /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ + /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/iostream diff --git a/build/CMakeFiles/sdl_app.dir/DependInfo.cmake b/build/CMakeFiles/sdl_app.dir/DependInfo.cmake new file mode 100644 index 0000000..d5253b8 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/DependInfo.cmake @@ -0,0 +1,39 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/romazan/Рабочий стол/cproject/BoneAnimatedModel.cpp" "CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Environment.cpp" "CMakeFiles/sdl_app.dir/Environment.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Environment.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Game.cpp" "CMakeFiles/sdl_app.dir/Game.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Game.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/GameObjectManager.cpp" "CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Inventory.cpp" "CMakeFiles/sdl_app.dir/Inventory.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Inventory.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Math.cpp" "CMakeFiles/sdl_app.dir/Math.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Math.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/ObjLoader.cpp" "CMakeFiles/sdl_app.dir/ObjLoader.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/ObjLoader.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/OpenGlExtensions.cpp" "CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Physics.cpp" "CMakeFiles/sdl_app.dir/Physics.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Physics.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/QuestScripts.cpp" "CMakeFiles/sdl_app.dir/QuestScripts.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/QuestScripts.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/RenderSystem.cpp" "CMakeFiles/sdl_app.dir/RenderSystem.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/RenderSystem.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Renderer.cpp" "CMakeFiles/sdl_app.dir/Renderer.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Renderer.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/ShaderManager.cpp" "CMakeFiles/sdl_app.dir/ShaderManager.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/ShaderManager.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/TextModel.cpp" "CMakeFiles/sdl_app.dir/TextModel.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/TextModel.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/TextureManager.cpp" "CMakeFiles/sdl_app.dir/TextureManager.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/TextureManager.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/Utils.cpp" "CMakeFiles/sdl_app.dir/Utils.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/Utils.cpp.o.d" + "/home/romazan/Рабочий стол/cproject/main.cpp" "CMakeFiles/sdl_app.dir/main.cpp.o" "gcc" "CMakeFiles/sdl_app.dir/main.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/sdl_app.dir/Environment.cpp.o b/build/CMakeFiles/sdl_app.dir/Environment.cpp.o new file mode 100644 index 0000000..7bb69e0 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Environment.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Environment.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Environment.cpp.o.d new file mode 100644 index 0000000..7778a61 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Environment.cpp.o.d @@ -0,0 +1,364 @@ +CMakeFiles/sdl_app.dir/Environment.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Environment.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Environment.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /usr/include/c++/13/initializer_list \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/range_access.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/SDL2/SDL.h \ + /usr/include/SDL2/SDL_main.h /usr/include/SDL2/SDL_stdinc.h \ + /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/c++/13/stdlib.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/c++/13/math.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/GL/gl.h /usr/include/GL/glext.h \ + /usr/include/KHR/khrplatform.h /usr/include/GL/glu.h \ + /usr/include/GLES3/gl3.h /usr/include/GLES3/gl3platform.h \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.h \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /home/romazan/Рабочий\ стол/cproject/ActiveObject.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/AudioPlayerAsync.h \ + /home/romazan/Рабочий\ стол/cproject/Room.h \ + /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /home/romazan/Рабочий\ стол/cproject/BoundaryBox.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/thread \ + /usr/include/c++/13/bits/std_thread.h \ + /usr/include/c++/13/bits/this_thread_sleep.h \ + /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ + /usr/include/c++/13/cstdint /usr/include/c++/13/ctime \ + /usr/include/c++/13/bits/parse_numbers.h /usr/include/c++/13/list \ + /usr/include/c++/13/bits/stl_list.h /usr/include/c++/13/bits/list.tcc diff --git a/build/CMakeFiles/sdl_app.dir/Game.cpp.o b/build/CMakeFiles/sdl_app.dir/Game.cpp.o new file mode 100644 index 0000000..7dc4efd Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Game.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Game.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Game.cpp.o.d new file mode 100644 index 0000000..2781a94 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Game.cpp.o.d @@ -0,0 +1,364 @@ +CMakeFiles/sdl_app.dir/Game.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Game.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Game.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/AudioPlayerAsync.h \ + /home/romazan/Рабочий\ стол/cproject/ActiveObject.h \ + /home/romazan/Рабочий\ стол/cproject/Room.h \ + /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /home/romazan/Рабочий\ стол/cproject/BoundaryBox.h \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/SDL2/SDL.h \ + /usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \ + /usr/include/c++/13/bits/this_thread_sleep.h \ + /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ + /usr/include/c++/13/cstdint /usr/include/c++/13/ctime \ + /usr/include/c++/13/bits/parse_numbers.h /usr/include/c++/13/list \ + /usr/include/c++/13/bits/stl_list.h /usr/include/c++/13/bits/list.tcc \ + /home/romazan/Рабочий\ стол/cproject/Environment.h \ + /home/romazan/Рабочий\ стол/cproject/AnimatedModel.h diff --git a/build/CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o b/build/CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o new file mode 100644 index 0000000..b237912 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o.d b/build/CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o.d new file mode 100644 index 0000000..7d80df2 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o.d @@ -0,0 +1,365 @@ +CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/AudioPlayerAsync.h \ + /home/romazan/Рабочий\ стол/cproject/ActiveObject.h \ + /home/romazan/Рабочий\ стол/cproject/Room.h \ + /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /home/romazan/Рабочий\ стол/cproject/BoundaryBox.h \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/SDL2/SDL.h \ + /usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \ + /usr/include/c++/13/bits/this_thread_sleep.h \ + /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ + /usr/include/c++/13/cstdint /usr/include/c++/13/ctime \ + /usr/include/c++/13/bits/parse_numbers.h /usr/include/c++/13/list \ + /usr/include/c++/13/bits/stl_list.h /usr/include/c++/13/bits/list.tcc \ + /home/romazan/Рабочий\ стол/cproject/Environment.h \ + /home/romazan/Рабочий\ стол/cproject/ObjLoader.h \ + /home/romazan/Рабочий\ стол/cproject/QuestScripts.h \ + /home/romazan/Рабочий\ стол/cproject/TextModel.h diff --git a/build/CMakeFiles/sdl_app.dir/Inventory.cpp.o b/build/CMakeFiles/sdl_app.dir/Inventory.cpp.o new file mode 100644 index 0000000..5b12e02 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Inventory.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Inventory.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Inventory.cpp.o.d new file mode 100644 index 0000000..216fd4d --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Inventory.cpp.o.d @@ -0,0 +1,341 @@ +CMakeFiles/sdl_app.dir/Inventory.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Inventory.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/bits/ptr_traits.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h /usr/include/c++/13/typeinfo \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/iostream \ + /usr/include/c++/13/ostream /usr/include/c++/13/ios \ + /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ + /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/c++/13/stdlib.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/inttypes.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h diff --git a/build/CMakeFiles/sdl_app.dir/Math.cpp.o b/build/CMakeFiles/sdl_app.dir/Math.cpp.o new file mode 100644 index 0000000..d70d885 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Math.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Math.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Math.cpp.o.d new file mode 100644 index 0000000..6ede512 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Math.cpp.o.d @@ -0,0 +1,145 @@ +CMakeFiles/sdl_app.dir/Math.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Math.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /usr/include/c++/13/initializer_list \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/range_access.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc diff --git a/build/CMakeFiles/sdl_app.dir/ObjLoader.cpp.o b/build/CMakeFiles/sdl_app.dir/ObjLoader.cpp.o new file mode 100644 index 0000000..d9a2572 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/ObjLoader.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/ObjLoader.cpp.o.d b/build/CMakeFiles/sdl_app.dir/ObjLoader.cpp.o.d new file mode 100644 index 0000000..2ef4f61 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/ObjLoader.cpp.o.d @@ -0,0 +1,346 @@ +CMakeFiles/sdl_app.dir/ObjLoader.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/ObjLoader.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/ObjLoader.h \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/fstream \ + /usr/include/c++/13/bits/codecvt.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ + /usr/include/c++/13/bits/fstream.tcc diff --git a/build/CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o b/build/CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o new file mode 100644 index 0000000..f5dc26e Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o.d b/build/CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o.d new file mode 100644 index 0000000..d95a2b5 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o.d @@ -0,0 +1,320 @@ +CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h diff --git a/build/CMakeFiles/sdl_app.dir/Physics.cpp.o b/build/CMakeFiles/sdl_app.dir/Physics.cpp.o new file mode 100644 index 0000000..ceb6f67 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Physics.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Physics.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Physics.cpp.o.d new file mode 100644 index 0000000..ea4aca2 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Physics.cpp.o.d @@ -0,0 +1,146 @@ +CMakeFiles/sdl_app.dir/Physics.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Physics.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Physics.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /usr/include/c++/13/initializer_list \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/range_access.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc diff --git a/build/CMakeFiles/sdl_app.dir/QuestScripts.cpp.o b/build/CMakeFiles/sdl_app.dir/QuestScripts.cpp.o new file mode 100644 index 0000000..c69f020 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/QuestScripts.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/QuestScripts.cpp.o.d b/build/CMakeFiles/sdl_app.dir/QuestScripts.cpp.o.d new file mode 100644 index 0000000..efb5b03 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/QuestScripts.cpp.o.d @@ -0,0 +1,366 @@ +CMakeFiles/sdl_app.dir/QuestScripts.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/QuestScripts.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/QuestScripts.h \ + /usr/include/c++/13/functional \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h \ + /usr/include/c++/13/bits/stl_function.h /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/type_traits /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/tuple /usr/include/c++/13/bits/stl_pair.h \ + /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ + /usr/include/c++/13/bits/std_function.h /usr/include/c++/13/new \ + /usr/include/c++/13/bits/exception.h /usr/include/c++/13/typeinfo \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/bits/erase_if.h \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/c++/13/bits/uses_allocator_args.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/array \ + /usr/include/c++/13/compare /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /usr/include/c++/13/bits/stl_tempbuf.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/stdlib.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/AudioPlayerAsync.h \ + /home/romazan/Рабочий\ стол/cproject/ActiveObject.h \ + /home/romazan/Рабочий\ стол/cproject/Room.h \ + /home/romazan/Рабочий\ стол/cproject/BoundaryBox.h \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/SDL2/SDL.h \ + /usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \ + /usr/include/c++/13/bits/this_thread_sleep.h \ + /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ + /usr/include/c++/13/cstdint /usr/include/c++/13/ctime \ + /usr/include/c++/13/bits/parse_numbers.h /usr/include/c++/13/list \ + /usr/include/c++/13/bits/stl_list.h /usr/include/c++/13/bits/list.tcc \ + /usr/include/c++/13/chrono diff --git a/build/CMakeFiles/sdl_app.dir/RenderSystem.cpp.o b/build/CMakeFiles/sdl_app.dir/RenderSystem.cpp.o new file mode 100644 index 0000000..e1c009e Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/RenderSystem.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/RenderSystem.cpp.o.d b/build/CMakeFiles/sdl_app.dir/RenderSystem.cpp.o.d new file mode 100644 index 0000000..d461412 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/RenderSystem.cpp.o.d @@ -0,0 +1,362 @@ +CMakeFiles/sdl_app.dir/RenderSystem.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.h \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /home/romazan/Рабочий\ стол/cproject/ActiveObject.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/AudioPlayerAsync.h \ + /home/romazan/Рабочий\ стол/cproject/Room.h \ + /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /home/romazan/Рабочий\ стол/cproject/BoundaryBox.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/SDL2/SDL.h \ + /usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \ + /usr/include/c++/13/bits/this_thread_sleep.h \ + /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ + /usr/include/c++/13/cstdint /usr/include/c++/13/ctime \ + /usr/include/c++/13/bits/parse_numbers.h /usr/include/c++/13/list \ + /usr/include/c++/13/bits/stl_list.h /usr/include/c++/13/bits/list.tcc \ + /home/romazan/Рабочий\ стол/cproject/Environment.h diff --git a/build/CMakeFiles/sdl_app.dir/Renderer.cpp.o b/build/CMakeFiles/sdl_app.dir/Renderer.cpp.o new file mode 100644 index 0000000..5a3f215 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Renderer.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Renderer.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Renderer.cpp.o.d new file mode 100644 index 0000000..e84499a --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Renderer.cpp.o.d @@ -0,0 +1,324 @@ +CMakeFiles/sdl_app.dir/Renderer.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Renderer.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h diff --git a/build/CMakeFiles/sdl_app.dir/ShaderManager.cpp.o b/build/CMakeFiles/sdl_app.dir/ShaderManager.cpp.o new file mode 100644 index 0000000..178f086 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/ShaderManager.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/ShaderManager.cpp.o.d b/build/CMakeFiles/sdl_app.dir/ShaderManager.cpp.o.d new file mode 100644 index 0000000..b3f08ba --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/ShaderManager.cpp.o.d @@ -0,0 +1,338 @@ +CMakeFiles/sdl_app.dir/ShaderManager.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc diff --git a/build/CMakeFiles/sdl_app.dir/TextModel.cpp.o b/build/CMakeFiles/sdl_app.dir/TextModel.cpp.o new file mode 100644 index 0000000..34ab8ea Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/TextModel.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/TextModel.cpp.o.d b/build/CMakeFiles/sdl_app.dir/TextModel.cpp.o.d new file mode 100644 index 0000000..317dd19 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/TextModel.cpp.o.d @@ -0,0 +1,370 @@ +CMakeFiles/sdl_app.dir/TextModel.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/TextModel.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/TextModel.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /usr/include/c++/13/initializer_list \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/range_access.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ + /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/c++/13/stdlib.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/c++/13/math.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/regex /usr/include/c++/13/bitset \ + /usr/include/c++/13/locale /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/locale_facets_nonio.h /usr/include/c++/13/ctime \ + /usr/include/x86_64-linux-gnu/c++/13/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/13/bits/codecvt.h \ + /usr/include/c++/13/bits/locale_facets_nonio.tcc \ + /usr/include/c++/13/bits/locale_conv.h /usr/include/c++/13/sstream \ + /usr/include/c++/13/istream /usr/include/c++/13/ios \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ + /usr/include/c++/13/bits/ostream.tcc \ + /usr/include/c++/13/bits/istream.tcc \ + /usr/include/c++/13/bits/sstream.tcc \ + /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /usr/include/c++/13/bits/regex_constants.h \ + /usr/include/c++/13/bits/regex_error.h \ + /usr/include/c++/13/bits/regex_automaton.h \ + /usr/include/c++/13/bits/regex_automaton.tcc \ + /usr/include/c++/13/bits/regex_scanner.h \ + /usr/include/c++/13/bits/regex_scanner.tcc \ + /usr/include/c++/13/bits/regex_compiler.h \ + /usr/include/c++/13/bits/regex_compiler.tcc \ + /usr/include/c++/13/bits/regex.h /usr/include/c++/13/bits/regex.tcc \ + /usr/include/c++/13/bits/regex_executor.h \ + /usr/include/c++/13/bits/regex_executor.tcc /usr/include/c++/13/fstream \ + /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ + /usr/include/c++/13/bits/fstream.tcc /usr/include/c++/13/iostream diff --git a/build/CMakeFiles/sdl_app.dir/TextureManager.cpp.o b/build/CMakeFiles/sdl_app.dir/TextureManager.cpp.o new file mode 100644 index 0000000..36bde7d Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/TextureManager.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/TextureManager.cpp.o.d b/build/CMakeFiles/sdl_app.dir/TextureManager.cpp.o.d new file mode 100644 index 0000000..32f98a1 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/TextureManager.cpp.o.d @@ -0,0 +1,321 @@ +CMakeFiles/sdl_app.dir/TextureManager.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h diff --git a/build/CMakeFiles/sdl_app.dir/Utils.cpp.o b/build/CMakeFiles/sdl_app.dir/Utils.cpp.o new file mode 100644 index 0000000..02dfa71 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/Utils.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/Utils.cpp.o.d b/build/CMakeFiles/sdl_app.dir/Utils.cpp.o.d new file mode 100644 index 0000000..1a9c121 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/Utils.cpp.o.d @@ -0,0 +1,199 @@ +CMakeFiles/sdl_app.dir/Utils.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/Utils.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/string /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/13/type_traits /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/bits/move.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/ctype.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/ext/type_traits.h \ + /usr/include/c++/13/bits/ptr_traits.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/map /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /usr/include/c++/13/cstring /usr/include/string.h /usr/include/strings.h \ + /usr/include/c++/13/iterator /usr/include/c++/13/bits/stream_iterator.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/c++/13/algorithm \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /usr/include/c++/13/pstl/glue_algorithm_defs.h \ + /usr/include/c++/13/fstream /usr/include/c++/13/bits/codecvt.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/basic_file.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++io.h \ + /usr/include/c++/13/bits/fstream.tcc diff --git a/build/CMakeFiles/sdl_app.dir/build.make b/build/CMakeFiles/sdl_app.dir/build.make new file mode 100644 index 0000000..c67945f --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/build.make @@ -0,0 +1,366 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = "/home/romazan/Рабочий стол/cproject" + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = "/home/romazan/Рабочий стол/cproject/build" + +# Include any dependencies generated for this target. +include CMakeFiles/sdl_app.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/sdl_app.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/sdl_app.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/sdl_app.dir/flags.make + +CMakeFiles/sdl_app.dir/Game.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Game.cpp.o: /home/romazan/Рабочий\ стол/cproject/Game.cpp +CMakeFiles/sdl_app.dir/Game.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/sdl_app.dir/Game.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Game.cpp.o -MF CMakeFiles/sdl_app.dir/Game.cpp.o.d -o CMakeFiles/sdl_app.dir/Game.cpp.o -c "/home/romazan/Рабочий стол/cproject/Game.cpp" + +CMakeFiles/sdl_app.dir/Game.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Game.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Game.cpp" > CMakeFiles/sdl_app.dir/Game.cpp.i + +CMakeFiles/sdl_app.dir/Game.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Game.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Game.cpp" -o CMakeFiles/sdl_app.dir/Game.cpp.s + +CMakeFiles/sdl_app.dir/main.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/main.cpp.o: /home/romazan/Рабочий\ стол/cproject/main.cpp +CMakeFiles/sdl_app.dir/main.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/sdl_app.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/main.cpp.o -MF CMakeFiles/sdl_app.dir/main.cpp.o.d -o CMakeFiles/sdl_app.dir/main.cpp.o -c "/home/romazan/Рабочий стол/cproject/main.cpp" + +CMakeFiles/sdl_app.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/main.cpp" > CMakeFiles/sdl_app.dir/main.cpp.i + +CMakeFiles/sdl_app.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/main.cpp" -o CMakeFiles/sdl_app.dir/main.cpp.s + +CMakeFiles/sdl_app.dir/Math.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Math.cpp.o: /home/romazan/Рабочий\ стол/cproject/Math.cpp +CMakeFiles/sdl_app.dir/Math.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/sdl_app.dir/Math.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Math.cpp.o -MF CMakeFiles/sdl_app.dir/Math.cpp.o.d -o CMakeFiles/sdl_app.dir/Math.cpp.o -c "/home/romazan/Рабочий стол/cproject/Math.cpp" + +CMakeFiles/sdl_app.dir/Math.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Math.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Math.cpp" > CMakeFiles/sdl_app.dir/Math.cpp.i + +CMakeFiles/sdl_app.dir/Math.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Math.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Math.cpp" -o CMakeFiles/sdl_app.dir/Math.cpp.s + +CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o: /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.cpp +CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o -MF CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o.d -o CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o -c "/home/romazan/Рабочий стол/cproject/OpenGlExtensions.cpp" + +CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/OpenGlExtensions.cpp" > CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.i + +CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/OpenGlExtensions.cpp" -o CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.s + +CMakeFiles/sdl_app.dir/Physics.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Physics.cpp.o: /home/romazan/Рабочий\ стол/cproject/Physics.cpp +CMakeFiles/sdl_app.dir/Physics.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/sdl_app.dir/Physics.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Physics.cpp.o -MF CMakeFiles/sdl_app.dir/Physics.cpp.o.d -o CMakeFiles/sdl_app.dir/Physics.cpp.o -c "/home/romazan/Рабочий стол/cproject/Physics.cpp" + +CMakeFiles/sdl_app.dir/Physics.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Physics.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Physics.cpp" > CMakeFiles/sdl_app.dir/Physics.cpp.i + +CMakeFiles/sdl_app.dir/Physics.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Physics.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Physics.cpp" -o CMakeFiles/sdl_app.dir/Physics.cpp.s + +CMakeFiles/sdl_app.dir/Renderer.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Renderer.cpp.o: /home/romazan/Рабочий\ стол/cproject/Renderer.cpp +CMakeFiles/sdl_app.dir/Renderer.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/sdl_app.dir/Renderer.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Renderer.cpp.o -MF CMakeFiles/sdl_app.dir/Renderer.cpp.o.d -o CMakeFiles/sdl_app.dir/Renderer.cpp.o -c "/home/romazan/Рабочий стол/cproject/Renderer.cpp" + +CMakeFiles/sdl_app.dir/Renderer.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Renderer.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Renderer.cpp" > CMakeFiles/sdl_app.dir/Renderer.cpp.i + +CMakeFiles/sdl_app.dir/Renderer.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Renderer.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Renderer.cpp" -o CMakeFiles/sdl_app.dir/Renderer.cpp.s + +CMakeFiles/sdl_app.dir/ShaderManager.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/ShaderManager.cpp.o: /home/romazan/Рабочий\ стол/cproject/ShaderManager.cpp +CMakeFiles/sdl_app.dir/ShaderManager.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/sdl_app.dir/ShaderManager.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/ShaderManager.cpp.o -MF CMakeFiles/sdl_app.dir/ShaderManager.cpp.o.d -o CMakeFiles/sdl_app.dir/ShaderManager.cpp.o -c "/home/romazan/Рабочий стол/cproject/ShaderManager.cpp" + +CMakeFiles/sdl_app.dir/ShaderManager.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/ShaderManager.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/ShaderManager.cpp" > CMakeFiles/sdl_app.dir/ShaderManager.cpp.i + +CMakeFiles/sdl_app.dir/ShaderManager.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/ShaderManager.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/ShaderManager.cpp" -o CMakeFiles/sdl_app.dir/ShaderManager.cpp.s + +CMakeFiles/sdl_app.dir/TextureManager.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/TextureManager.cpp.o: /home/romazan/Рабочий\ стол/cproject/TextureManager.cpp +CMakeFiles/sdl_app.dir/TextureManager.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/sdl_app.dir/TextureManager.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/TextureManager.cpp.o -MF CMakeFiles/sdl_app.dir/TextureManager.cpp.o.d -o CMakeFiles/sdl_app.dir/TextureManager.cpp.o -c "/home/romazan/Рабочий стол/cproject/TextureManager.cpp" + +CMakeFiles/sdl_app.dir/TextureManager.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/TextureManager.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/TextureManager.cpp" > CMakeFiles/sdl_app.dir/TextureManager.cpp.i + +CMakeFiles/sdl_app.dir/TextureManager.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/TextureManager.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/TextureManager.cpp" -o CMakeFiles/sdl_app.dir/TextureManager.cpp.s + +CMakeFiles/sdl_app.dir/Utils.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Utils.cpp.o: /home/romazan/Рабочий\ стол/cproject/Utils.cpp +CMakeFiles/sdl_app.dir/Utils.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/sdl_app.dir/Utils.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Utils.cpp.o -MF CMakeFiles/sdl_app.dir/Utils.cpp.o.d -o CMakeFiles/sdl_app.dir/Utils.cpp.o -c "/home/romazan/Рабочий стол/cproject/Utils.cpp" + +CMakeFiles/sdl_app.dir/Utils.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Utils.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Utils.cpp" > CMakeFiles/sdl_app.dir/Utils.cpp.i + +CMakeFiles/sdl_app.dir/Utils.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Utils.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Utils.cpp" -o CMakeFiles/sdl_app.dir/Utils.cpp.s + +CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o: /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.cpp +CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o -MF CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o.d -o CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o -c "/home/romazan/Рабочий стол/cproject/BoneAnimatedModel.cpp" + +CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/BoneAnimatedModel.cpp" > CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.i + +CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/BoneAnimatedModel.cpp" -o CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.s + +CMakeFiles/sdl_app.dir/ObjLoader.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/ObjLoader.cpp.o: /home/romazan/Рабочий\ стол/cproject/ObjLoader.cpp +CMakeFiles/sdl_app.dir/ObjLoader.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/sdl_app.dir/ObjLoader.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/ObjLoader.cpp.o -MF CMakeFiles/sdl_app.dir/ObjLoader.cpp.o.d -o CMakeFiles/sdl_app.dir/ObjLoader.cpp.o -c "/home/romazan/Рабочий стол/cproject/ObjLoader.cpp" + +CMakeFiles/sdl_app.dir/ObjLoader.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/ObjLoader.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/ObjLoader.cpp" > CMakeFiles/sdl_app.dir/ObjLoader.cpp.i + +CMakeFiles/sdl_app.dir/ObjLoader.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/ObjLoader.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/ObjLoader.cpp" -o CMakeFiles/sdl_app.dir/ObjLoader.cpp.s + +CMakeFiles/sdl_app.dir/TextModel.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/TextModel.cpp.o: /home/romazan/Рабочий\ стол/cproject/TextModel.cpp +CMakeFiles/sdl_app.dir/TextModel.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/sdl_app.dir/TextModel.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/TextModel.cpp.o -MF CMakeFiles/sdl_app.dir/TextModel.cpp.o.d -o CMakeFiles/sdl_app.dir/TextModel.cpp.o -c "/home/romazan/Рабочий стол/cproject/TextModel.cpp" + +CMakeFiles/sdl_app.dir/TextModel.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/TextModel.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/TextModel.cpp" > CMakeFiles/sdl_app.dir/TextModel.cpp.i + +CMakeFiles/sdl_app.dir/TextModel.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/TextModel.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/TextModel.cpp" -o CMakeFiles/sdl_app.dir/TextModel.cpp.s + +CMakeFiles/sdl_app.dir/Inventory.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Inventory.cpp.o: /home/romazan/Рабочий\ стол/cproject/Inventory.cpp +CMakeFiles/sdl_app.dir/Inventory.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/sdl_app.dir/Inventory.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Inventory.cpp.o -MF CMakeFiles/sdl_app.dir/Inventory.cpp.o.d -o CMakeFiles/sdl_app.dir/Inventory.cpp.o -c "/home/romazan/Рабочий стол/cproject/Inventory.cpp" + +CMakeFiles/sdl_app.dir/Inventory.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Inventory.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Inventory.cpp" > CMakeFiles/sdl_app.dir/Inventory.cpp.i + +CMakeFiles/sdl_app.dir/Inventory.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Inventory.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Inventory.cpp" -o CMakeFiles/sdl_app.dir/Inventory.cpp.s + +CMakeFiles/sdl_app.dir/Environment.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/Environment.cpp.o: /home/romazan/Рабочий\ стол/cproject/Environment.cpp +CMakeFiles/sdl_app.dir/Environment.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/sdl_app.dir/Environment.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/Environment.cpp.o -MF CMakeFiles/sdl_app.dir/Environment.cpp.o.d -o CMakeFiles/sdl_app.dir/Environment.cpp.o -c "/home/romazan/Рабочий стол/cproject/Environment.cpp" + +CMakeFiles/sdl_app.dir/Environment.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/Environment.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/Environment.cpp" > CMakeFiles/sdl_app.dir/Environment.cpp.i + +CMakeFiles/sdl_app.dir/Environment.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/Environment.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/Environment.cpp" -o CMakeFiles/sdl_app.dir/Environment.cpp.s + +CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o: /home/romazan/Рабочий\ стол/cproject/GameObjectManager.cpp +CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o -MF CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o.d -o CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o -c "/home/romazan/Рабочий стол/cproject/GameObjectManager.cpp" + +CMakeFiles/sdl_app.dir/GameObjectManager.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/GameObjectManager.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/GameObjectManager.cpp" > CMakeFiles/sdl_app.dir/GameObjectManager.cpp.i + +CMakeFiles/sdl_app.dir/GameObjectManager.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/GameObjectManager.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/GameObjectManager.cpp" -o CMakeFiles/sdl_app.dir/GameObjectManager.cpp.s + +CMakeFiles/sdl_app.dir/RenderSystem.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/RenderSystem.cpp.o: /home/romazan/Рабочий\ стол/cproject/RenderSystem.cpp +CMakeFiles/sdl_app.dir/RenderSystem.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object CMakeFiles/sdl_app.dir/RenderSystem.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/RenderSystem.cpp.o -MF CMakeFiles/sdl_app.dir/RenderSystem.cpp.o.d -o CMakeFiles/sdl_app.dir/RenderSystem.cpp.o -c "/home/romazan/Рабочий стол/cproject/RenderSystem.cpp" + +CMakeFiles/sdl_app.dir/RenderSystem.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/RenderSystem.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/RenderSystem.cpp" > CMakeFiles/sdl_app.dir/RenderSystem.cpp.i + +CMakeFiles/sdl_app.dir/RenderSystem.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/RenderSystem.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/RenderSystem.cpp" -o CMakeFiles/sdl_app.dir/RenderSystem.cpp.s + +CMakeFiles/sdl_app.dir/QuestScripts.cpp.o: CMakeFiles/sdl_app.dir/flags.make +CMakeFiles/sdl_app.dir/QuestScripts.cpp.o: /home/romazan/Рабочий\ стол/cproject/QuestScripts.cpp +CMakeFiles/sdl_app.dir/QuestScripts.cpp.o: CMakeFiles/sdl_app.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object CMakeFiles/sdl_app.dir/QuestScripts.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/sdl_app.dir/QuestScripts.cpp.o -MF CMakeFiles/sdl_app.dir/QuestScripts.cpp.o.d -o CMakeFiles/sdl_app.dir/QuestScripts.cpp.o -c "/home/romazan/Рабочий стол/cproject/QuestScripts.cpp" + +CMakeFiles/sdl_app.dir/QuestScripts.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/sdl_app.dir/QuestScripts.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "/home/romazan/Рабочий стол/cproject/QuestScripts.cpp" > CMakeFiles/sdl_app.dir/QuestScripts.cpp.i + +CMakeFiles/sdl_app.dir/QuestScripts.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/sdl_app.dir/QuestScripts.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "/home/romazan/Рабочий стол/cproject/QuestScripts.cpp" -o CMakeFiles/sdl_app.dir/QuestScripts.cpp.s + +# Object files for target sdl_app +sdl_app_OBJECTS = \ +"CMakeFiles/sdl_app.dir/Game.cpp.o" \ +"CMakeFiles/sdl_app.dir/main.cpp.o" \ +"CMakeFiles/sdl_app.dir/Math.cpp.o" \ +"CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o" \ +"CMakeFiles/sdl_app.dir/Physics.cpp.o" \ +"CMakeFiles/sdl_app.dir/Renderer.cpp.o" \ +"CMakeFiles/sdl_app.dir/ShaderManager.cpp.o" \ +"CMakeFiles/sdl_app.dir/TextureManager.cpp.o" \ +"CMakeFiles/sdl_app.dir/Utils.cpp.o" \ +"CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o" \ +"CMakeFiles/sdl_app.dir/ObjLoader.cpp.o" \ +"CMakeFiles/sdl_app.dir/TextModel.cpp.o" \ +"CMakeFiles/sdl_app.dir/Inventory.cpp.o" \ +"CMakeFiles/sdl_app.dir/Environment.cpp.o" \ +"CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o" \ +"CMakeFiles/sdl_app.dir/RenderSystem.cpp.o" \ +"CMakeFiles/sdl_app.dir/QuestScripts.cpp.o" + +# External object files for target sdl_app +sdl_app_EXTERNAL_OBJECTS = + +sdl_app: CMakeFiles/sdl_app.dir/Game.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/main.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/Math.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/Physics.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/Renderer.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/ShaderManager.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/TextureManager.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/Utils.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/ObjLoader.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/TextModel.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/Inventory.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/Environment.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/RenderSystem.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/QuestScripts.cpp.o +sdl_app: CMakeFiles/sdl_app.dir/build.make +sdl_app: CMakeFiles/sdl_app.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir="/home/romazan/Рабочий стол/cproject/build/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_18) "Linking CXX executable sdl_app" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/sdl_app.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/sdl_app.dir/build: sdl_app +.PHONY : CMakeFiles/sdl_app.dir/build + +CMakeFiles/sdl_app.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/sdl_app.dir/cmake_clean.cmake +.PHONY : CMakeFiles/sdl_app.dir/clean + +CMakeFiles/sdl_app.dir/depend: + cd "/home/romazan/Рабочий стол/cproject/build" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/home/romazan/Рабочий стол/cproject" "/home/romazan/Рабочий стол/cproject" "/home/romazan/Рабочий стол/cproject/build" "/home/romazan/Рабочий стол/cproject/build" "/home/romazan/Рабочий стол/cproject/build/CMakeFiles/sdl_app.dir/DependInfo.cmake" "--color=$(COLOR)" +.PHONY : CMakeFiles/sdl_app.dir/depend + diff --git a/build/CMakeFiles/sdl_app.dir/cmake_clean.cmake b/build/CMakeFiles/sdl_app.dir/cmake_clean.cmake new file mode 100644 index 0000000..1410bac --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/cmake_clean.cmake @@ -0,0 +1,43 @@ +file(REMOVE_RECURSE + "CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o" + "CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o.d" + "CMakeFiles/sdl_app.dir/Environment.cpp.o" + "CMakeFiles/sdl_app.dir/Environment.cpp.o.d" + "CMakeFiles/sdl_app.dir/Game.cpp.o" + "CMakeFiles/sdl_app.dir/Game.cpp.o.d" + "CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o" + "CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o.d" + "CMakeFiles/sdl_app.dir/Inventory.cpp.o" + "CMakeFiles/sdl_app.dir/Inventory.cpp.o.d" + "CMakeFiles/sdl_app.dir/Math.cpp.o" + "CMakeFiles/sdl_app.dir/Math.cpp.o.d" + "CMakeFiles/sdl_app.dir/ObjLoader.cpp.o" + "CMakeFiles/sdl_app.dir/ObjLoader.cpp.o.d" + "CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o" + "CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o.d" + "CMakeFiles/sdl_app.dir/Physics.cpp.o" + "CMakeFiles/sdl_app.dir/Physics.cpp.o.d" + "CMakeFiles/sdl_app.dir/QuestScripts.cpp.o" + "CMakeFiles/sdl_app.dir/QuestScripts.cpp.o.d" + "CMakeFiles/sdl_app.dir/RenderSystem.cpp.o" + "CMakeFiles/sdl_app.dir/RenderSystem.cpp.o.d" + "CMakeFiles/sdl_app.dir/Renderer.cpp.o" + "CMakeFiles/sdl_app.dir/Renderer.cpp.o.d" + "CMakeFiles/sdl_app.dir/ShaderManager.cpp.o" + "CMakeFiles/sdl_app.dir/ShaderManager.cpp.o.d" + "CMakeFiles/sdl_app.dir/TextModel.cpp.o" + "CMakeFiles/sdl_app.dir/TextModel.cpp.o.d" + "CMakeFiles/sdl_app.dir/TextureManager.cpp.o" + "CMakeFiles/sdl_app.dir/TextureManager.cpp.o.d" + "CMakeFiles/sdl_app.dir/Utils.cpp.o" + "CMakeFiles/sdl_app.dir/Utils.cpp.o.d" + "CMakeFiles/sdl_app.dir/main.cpp.o" + "CMakeFiles/sdl_app.dir/main.cpp.o.d" + "sdl_app" + "sdl_app.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/sdl_app.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/sdl_app.dir/compiler_depend.make b/build/CMakeFiles/sdl_app.dir/compiler_depend.make new file mode 100644 index 0000000..b34f76b --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for sdl_app. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/sdl_app.dir/compiler_depend.ts b/build/CMakeFiles/sdl_app.dir/compiler_depend.ts new file mode 100644 index 0000000..4aa09ee --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for sdl_app. diff --git a/build/CMakeFiles/sdl_app.dir/depend.make b/build/CMakeFiles/sdl_app.dir/depend.make new file mode 100644 index 0000000..917a9f0 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for sdl_app. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/sdl_app.dir/flags.make b/build/CMakeFiles/sdl_app.dir/flags.make new file mode 100644 index 0000000..1524020 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/usr/include/SDL2 + +CXX_FLAGS = -std=gnu++17 + diff --git a/build/CMakeFiles/sdl_app.dir/link.txt b/build/CMakeFiles/sdl_app.dir/link.txt new file mode 100644 index 0000000..c7e9bd6 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/sdl_app.dir/Game.cpp.o CMakeFiles/sdl_app.dir/main.cpp.o CMakeFiles/sdl_app.dir/Math.cpp.o CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o CMakeFiles/sdl_app.dir/Physics.cpp.o CMakeFiles/sdl_app.dir/Renderer.cpp.o CMakeFiles/sdl_app.dir/ShaderManager.cpp.o CMakeFiles/sdl_app.dir/TextureManager.cpp.o CMakeFiles/sdl_app.dir/Utils.cpp.o CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o CMakeFiles/sdl_app.dir/ObjLoader.cpp.o CMakeFiles/sdl_app.dir/TextModel.cpp.o CMakeFiles/sdl_app.dir/Inventory.cpp.o CMakeFiles/sdl_app.dir/Environment.cpp.o CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o CMakeFiles/sdl_app.dir/RenderSystem.cpp.o CMakeFiles/sdl_app.dir/QuestScripts.cpp.o -o sdl_app -lSDL2 -lGL diff --git a/build/CMakeFiles/sdl_app.dir/main.cpp.o b/build/CMakeFiles/sdl_app.dir/main.cpp.o new file mode 100644 index 0000000..d34f3f9 Binary files /dev/null and b/build/CMakeFiles/sdl_app.dir/main.cpp.o differ diff --git a/build/CMakeFiles/sdl_app.dir/main.cpp.o.d b/build/CMakeFiles/sdl_app.dir/main.cpp.o.d new file mode 100644 index 0000000..4f3e536 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/main.cpp.o.d @@ -0,0 +1,363 @@ +CMakeFiles/sdl_app.dir/main.cpp.o: \ + /home/romazan/Рабочий\ стол/cproject/main.cpp \ + /usr/include/stdc-predef.h \ + /home/romazan/Рабочий\ стол/cproject/Game.h \ + /home/romazan/Рабочий\ стол/cproject/OpenGlExtensions.h \ + /usr/include/SDL2/SDL.h /usr/include/SDL2/SDL_main.h \ + /usr/include/SDL2/SDL_stdinc.h /usr/include/SDL2/SDL_config.h \ + /usr/include/x86_64-linux-gnu/SDL2/_real_SDL_config.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/begin_code.h \ + /usr/include/SDL2/close_code.h /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/inttypes.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/ctype.h \ + /usr/include/c++/13/math.h /usr/include/c++/13/cmath \ + /usr/include/c++/13/bits/requires_hosted.h \ + /usr/include/c++/13/bits/cpp_type_traits.h \ + /usr/include/c++/13/ext/type_traits.h /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/13/bits/specfun.h \ + /usr/include/c++/13/bits/stl_algobase.h \ + /usr/include/c++/13/bits/functexcept.h \ + /usr/include/c++/13/bits/exception_defines.h \ + /usr/include/c++/13/ext/numeric_traits.h \ + /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ + /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ + /usr/include/c++/13/bits/stl_iterator_base_types.h \ + /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/13/bits/concept_check.h \ + /usr/include/c++/13/debug/assertions.h \ + /usr/include/c++/13/bits/stl_iterator.h \ + /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ + /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ + /usr/include/c++/13/limits /usr/include/c++/13/tr1/gamma.tcc \ + /usr/include/c++/13/tr1/special_function_util.h \ + /usr/include/c++/13/tr1/bessel_function.tcc \ + /usr/include/c++/13/tr1/beta_function.tcc \ + /usr/include/c++/13/tr1/ell_integral.tcc \ + /usr/include/c++/13/tr1/exp_integral.tcc \ + /usr/include/c++/13/tr1/hypergeometric.tcc \ + /usr/include/c++/13/tr1/legendre_function.tcc \ + /usr/include/c++/13/tr1/modified_bessel_func.tcc \ + /usr/include/c++/13/tr1/poly_hermite.tcc \ + /usr/include/c++/13/tr1/poly_laguerre.tcc \ + /usr/include/c++/13/tr1/riemann_zeta.tcc \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ + /usr/include/SDL2/SDL_assert.h /usr/include/SDL2/SDL_atomic.h \ + /usr/include/SDL2/SDL_platform.h /usr/include/SDL2/SDL_audio.h \ + /usr/include/SDL2/SDL_error.h /usr/include/SDL2/SDL_endian.h \ + /usr/include/SDL2/SDL_mutex.h /usr/include/SDL2/SDL_thread.h \ + /usr/include/SDL2/SDL_rwops.h /usr/include/SDL2/SDL_clipboard.h \ + /usr/include/SDL2/SDL_cpuinfo.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/cmpccxaddintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/raointintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/mm_malloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxvnniint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512fp16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/avxneconvertintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxcomplexintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/amxfp16intrin.h \ + /usr/include/SDL2/SDL_events.h /usr/include/SDL2/SDL_video.h \ + /usr/include/SDL2/SDL_pixels.h /usr/include/SDL2/SDL_rect.h \ + /usr/include/SDL2/SDL_surface.h /usr/include/SDL2/SDL_blendmode.h \ + /usr/include/SDL2/SDL_keyboard.h /usr/include/SDL2/SDL_keycode.h \ + /usr/include/SDL2/SDL_scancode.h /usr/include/SDL2/SDL_mouse.h \ + /usr/include/SDL2/SDL_joystick.h /usr/include/SDL2/SDL_guid.h \ + /usr/include/SDL2/SDL_gamecontroller.h /usr/include/SDL2/SDL_sensor.h \ + /usr/include/SDL2/SDL_quit.h /usr/include/SDL2/SDL_gesture.h \ + /usr/include/SDL2/SDL_touch.h /usr/include/SDL2/SDL_filesystem.h \ + /usr/include/SDL2/SDL_haptic.h /usr/include/SDL2/SDL_hidapi.h \ + /usr/include/SDL2/SDL_hints.h /usr/include/SDL2/SDL_loadso.h \ + /usr/include/SDL2/SDL_log.h /usr/include/SDL2/SDL_messagebox.h \ + /usr/include/SDL2/SDL_metal.h /usr/include/SDL2/SDL_power.h \ + /usr/include/SDL2/SDL_render.h /usr/include/SDL2/SDL_shape.h \ + /usr/include/SDL2/SDL_system.h /usr/include/SDL2/SDL_timer.h \ + /usr/include/SDL2/SDL_version.h /usr/include/SDL2/SDL_locale.h \ + /usr/include/SDL2/SDL_misc.h /usr/include/GL/gl.h \ + /usr/include/GL/glext.h /usr/include/KHR/khrplatform.h \ + /usr/include/GL/glu.h /usr/include/GLES3/gl3.h \ + /usr/include/GLES3/gl3platform.h /usr/include/c++/13/exception \ + /usr/include/c++/13/bits/exception.h \ + /usr/include/c++/13/bits/exception_ptr.h \ + /usr/include/c++/13/bits/cxxabi_init_exception.h \ + /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ + /usr/include/c++/13/new /usr/include/c++/13/bits/nested_exception.h \ + /usr/include/c++/13/stdexcept /usr/include/c++/13/string \ + /usr/include/c++/13/bits/stringfwd.h \ + /usr/include/c++/13/bits/memoryfwd.h \ + /usr/include/c++/13/bits/char_traits.h \ + /usr/include/c++/13/bits/postypes.h /usr/include/c++/13/cwchar \ + /usr/include/c++/13/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ + /usr/include/c++/13/bits/new_allocator.h \ + /usr/include/c++/13/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ + /usr/include/c++/13/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/iosfwd \ + /usr/include/c++/13/cctype /usr/include/c++/13/bits/ostream_insert.h \ + /usr/include/c++/13/bits/cxxabi_forced.h \ + /usr/include/c++/13/bits/stl_function.h \ + /usr/include/c++/13/backward/binders.h \ + /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ + /usr/include/c++/13/bits/range_access.h \ + /usr/include/c++/13/initializer_list \ + /usr/include/c++/13/bits/basic_string.h \ + /usr/include/c++/13/ext/alloc_traits.h \ + /usr/include/c++/13/bits/alloc_traits.h \ + /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ + /usr/include/c++/13/bits/functional_hash.h \ + /usr/include/c++/13/bits/string_view.tcc \ + /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ + /usr/include/c++/13/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/13/bits/charconv.h \ + /usr/include/c++/13/bits/basic_string.tcc \ + /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ + /usr/include/c++/13/bits/uses_allocator.h \ + /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ + /home/romazan/Рабочий\ стол/cproject/GameObjectManager.h \ + /home/romazan/Рабочий\ стол/cproject/TextureManager.h \ + /home/romazan/Рабочий\ стол/cproject/Utils.h \ + /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ + /usr/include/c++/13/bits/stl_vector.h \ + /usr/include/c++/13/bits/stl_bvector.h \ + /usr/include/c++/13/bits/vector.tcc /usr/include/c++/13/map \ + /usr/include/c++/13/bits/stl_tree.h \ + /usr/include/c++/13/ext/aligned_buffer.h \ + /usr/include/c++/13/bits/node_handle.h \ + /usr/include/c++/13/bits/stl_map.h \ + /usr/include/c++/13/bits/stl_multimap.h \ + /usr/include/c++/13/bits/erase_if.h /usr/include/c++/13/stack \ + /usr/include/c++/13/deque /usr/include/c++/13/bits/stl_deque.h \ + /usr/include/c++/13/bits/deque.tcc /usr/include/c++/13/bits/stl_stack.h \ + /usr/include/c++/13/memory /usr/include/c++/13/bits/stl_tempbuf.h \ + /usr/include/c++/13/bits/stl_raw_storage_iter.h \ + /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ + /usr/include/c++/13/bits/shared_ptr.h \ + /usr/include/c++/13/bits/shared_ptr_base.h \ + /usr/include/c++/13/bits/allocated_ptr.h \ + /usr/include/c++/13/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/13/ext/concurrence.h \ + /usr/include/c++/13/bits/shared_ptr_atomic.h \ + /usr/include/c++/13/bits/atomic_base.h \ + /usr/include/c++/13/bits/atomic_lockfree_defines.h \ + /usr/include/c++/13/backward/auto_ptr.h \ + /usr/include/c++/13/pstl/glue_memory_defs.h \ + /usr/include/c++/13/pstl/execution_defs.h \ + /usr/include/c++/13/unordered_map \ + /usr/include/c++/13/bits/unordered_map.h \ + /usr/include/c++/13/bits/hashtable.h \ + /usr/include/c++/13/bits/hashtable_policy.h \ + /usr/include/c++/13/bits/enable_special_members.h \ + /home/romazan/Рабочий\ стол/cproject/BoneAnimatedModel.h \ + /home/romazan/Рабочий\ стол/cproject/Math.h \ + /usr/include/c++/13/array /usr/include/c++/13/compare \ + /home/romazan/Рабочий\ стол/cproject/Renderer.h \ + /home/romazan/Рабочий\ стол/cproject/ShaderManager.h \ + /home/romazan/Рабочий\ стол/cproject/AudioPlayerAsync.h \ + /home/romazan/Рабочий\ стол/cproject/ActiveObject.h \ + /home/romazan/Рабочий\ стол/cproject/Room.h \ + /usr/include/c++/13/functional /usr/include/c++/13/bits/std_function.h \ + /usr/include/c++/13/bits/stl_algo.h \ + /usr/include/c++/13/bits/algorithmfwd.h \ + /usr/include/c++/13/bits/stl_heap.h \ + /usr/include/c++/13/bits/uniform_int_dist.h \ + /home/romazan/Рабочий\ стол/cproject/BoundaryBox.h \ + /home/romazan/Рабочий\ стол/cproject/RenderSystem.h \ + /home/romazan/Рабочий\ стол/cproject/Inventory.h \ + /usr/include/c++/13/iostream /usr/include/c++/13/ostream \ + /usr/include/c++/13/ios /usr/include/c++/13/bits/ios_base.h \ + /usr/include/c++/13/bits/locale_classes.h \ + /usr/include/c++/13/bits/locale_classes.tcc \ + /usr/include/c++/13/system_error \ + /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ + /usr/include/c++/13/streambuf /usr/include/c++/13/bits/streambuf.tcc \ + /usr/include/c++/13/bits/basic_ios.h \ + /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ + /usr/include/c++/13/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ + /usr/include/c++/13/bits/locale_facets.tcc \ + /usr/include/c++/13/bits/basic_ios.tcc \ + /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ + /usr/include/c++/13/bits/istream.tcc /usr/include/SDL2/SDL.h \ + /usr/include/c++/13/thread /usr/include/c++/13/bits/std_thread.h \ + /usr/include/c++/13/bits/this_thread_sleep.h \ + /usr/include/c++/13/bits/chrono.h /usr/include/c++/13/ratio \ + /usr/include/c++/13/cstdint /usr/include/c++/13/ctime \ + /usr/include/c++/13/bits/parse_numbers.h /usr/include/c++/13/list \ + /usr/include/c++/13/bits/stl_list.h /usr/include/c++/13/bits/list.tcc \ + /home/romazan/Рабочий\ стол/cproject/Environment.h diff --git a/build/CMakeFiles/sdl_app.dir/progress.make b/build/CMakeFiles/sdl_app.dir/progress.make new file mode 100644 index 0000000..4f47425 --- /dev/null +++ b/build/CMakeFiles/sdl_app.dir/progress.make @@ -0,0 +1,19 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 + diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..8cc70f4 --- /dev/null +++ b/build/Makefile @@ -0,0 +1,613 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = "/home/romazan/Рабочий стол/cproject" + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = "/home/romazan/Рабочий стол/cproject/build" + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start "/home/romazan/Рабочий стол/cproject/build/CMakeFiles" "/home/romazan/Рабочий стол/cproject/build//CMakeFiles/progress.marks" + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start "/home/romazan/Рабочий стол/cproject/build/CMakeFiles" 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named sdl_app + +# Build rule for target. +sdl_app: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 sdl_app +.PHONY : sdl_app + +# fast build rule for target. +sdl_app/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/build +.PHONY : sdl_app/fast + +BoneAnimatedModel.o: BoneAnimatedModel.cpp.o +.PHONY : BoneAnimatedModel.o + +# target to build an object file +BoneAnimatedModel.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.o +.PHONY : BoneAnimatedModel.cpp.o + +BoneAnimatedModel.i: BoneAnimatedModel.cpp.i +.PHONY : BoneAnimatedModel.i + +# target to preprocess a source file +BoneAnimatedModel.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.i +.PHONY : BoneAnimatedModel.cpp.i + +BoneAnimatedModel.s: BoneAnimatedModel.cpp.s +.PHONY : BoneAnimatedModel.s + +# target to generate assembly for a file +BoneAnimatedModel.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/BoneAnimatedModel.cpp.s +.PHONY : BoneAnimatedModel.cpp.s + +Environment.o: Environment.cpp.o +.PHONY : Environment.o + +# target to build an object file +Environment.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Environment.cpp.o +.PHONY : Environment.cpp.o + +Environment.i: Environment.cpp.i +.PHONY : Environment.i + +# target to preprocess a source file +Environment.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Environment.cpp.i +.PHONY : Environment.cpp.i + +Environment.s: Environment.cpp.s +.PHONY : Environment.s + +# target to generate assembly for a file +Environment.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Environment.cpp.s +.PHONY : Environment.cpp.s + +Game.o: Game.cpp.o +.PHONY : Game.o + +# target to build an object file +Game.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Game.cpp.o +.PHONY : Game.cpp.o + +Game.i: Game.cpp.i +.PHONY : Game.i + +# target to preprocess a source file +Game.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Game.cpp.i +.PHONY : Game.cpp.i + +Game.s: Game.cpp.s +.PHONY : Game.s + +# target to generate assembly for a file +Game.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Game.cpp.s +.PHONY : Game.cpp.s + +GameObjectManager.o: GameObjectManager.cpp.o +.PHONY : GameObjectManager.o + +# target to build an object file +GameObjectManager.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/GameObjectManager.cpp.o +.PHONY : GameObjectManager.cpp.o + +GameObjectManager.i: GameObjectManager.cpp.i +.PHONY : GameObjectManager.i + +# target to preprocess a source file +GameObjectManager.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/GameObjectManager.cpp.i +.PHONY : GameObjectManager.cpp.i + +GameObjectManager.s: GameObjectManager.cpp.s +.PHONY : GameObjectManager.s + +# target to generate assembly for a file +GameObjectManager.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/GameObjectManager.cpp.s +.PHONY : GameObjectManager.cpp.s + +Inventory.o: Inventory.cpp.o +.PHONY : Inventory.o + +# target to build an object file +Inventory.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Inventory.cpp.o +.PHONY : Inventory.cpp.o + +Inventory.i: Inventory.cpp.i +.PHONY : Inventory.i + +# target to preprocess a source file +Inventory.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Inventory.cpp.i +.PHONY : Inventory.cpp.i + +Inventory.s: Inventory.cpp.s +.PHONY : Inventory.s + +# target to generate assembly for a file +Inventory.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Inventory.cpp.s +.PHONY : Inventory.cpp.s + +Math.o: Math.cpp.o +.PHONY : Math.o + +# target to build an object file +Math.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Math.cpp.o +.PHONY : Math.cpp.o + +Math.i: Math.cpp.i +.PHONY : Math.i + +# target to preprocess a source file +Math.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Math.cpp.i +.PHONY : Math.cpp.i + +Math.s: Math.cpp.s +.PHONY : Math.s + +# target to generate assembly for a file +Math.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Math.cpp.s +.PHONY : Math.cpp.s + +ObjLoader.o: ObjLoader.cpp.o +.PHONY : ObjLoader.o + +# target to build an object file +ObjLoader.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/ObjLoader.cpp.o +.PHONY : ObjLoader.cpp.o + +ObjLoader.i: ObjLoader.cpp.i +.PHONY : ObjLoader.i + +# target to preprocess a source file +ObjLoader.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/ObjLoader.cpp.i +.PHONY : ObjLoader.cpp.i + +ObjLoader.s: ObjLoader.cpp.s +.PHONY : ObjLoader.s + +# target to generate assembly for a file +ObjLoader.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/ObjLoader.cpp.s +.PHONY : ObjLoader.cpp.s + +OpenGlExtensions.o: OpenGlExtensions.cpp.o +.PHONY : OpenGlExtensions.o + +# target to build an object file +OpenGlExtensions.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.o +.PHONY : OpenGlExtensions.cpp.o + +OpenGlExtensions.i: OpenGlExtensions.cpp.i +.PHONY : OpenGlExtensions.i + +# target to preprocess a source file +OpenGlExtensions.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.i +.PHONY : OpenGlExtensions.cpp.i + +OpenGlExtensions.s: OpenGlExtensions.cpp.s +.PHONY : OpenGlExtensions.s + +# target to generate assembly for a file +OpenGlExtensions.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/OpenGlExtensions.cpp.s +.PHONY : OpenGlExtensions.cpp.s + +Physics.o: Physics.cpp.o +.PHONY : Physics.o + +# target to build an object file +Physics.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Physics.cpp.o +.PHONY : Physics.cpp.o + +Physics.i: Physics.cpp.i +.PHONY : Physics.i + +# target to preprocess a source file +Physics.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Physics.cpp.i +.PHONY : Physics.cpp.i + +Physics.s: Physics.cpp.s +.PHONY : Physics.s + +# target to generate assembly for a file +Physics.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Physics.cpp.s +.PHONY : Physics.cpp.s + +QuestScripts.o: QuestScripts.cpp.o +.PHONY : QuestScripts.o + +# target to build an object file +QuestScripts.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/QuestScripts.cpp.o +.PHONY : QuestScripts.cpp.o + +QuestScripts.i: QuestScripts.cpp.i +.PHONY : QuestScripts.i + +# target to preprocess a source file +QuestScripts.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/QuestScripts.cpp.i +.PHONY : QuestScripts.cpp.i + +QuestScripts.s: QuestScripts.cpp.s +.PHONY : QuestScripts.s + +# target to generate assembly for a file +QuestScripts.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/QuestScripts.cpp.s +.PHONY : QuestScripts.cpp.s + +RenderSystem.o: RenderSystem.cpp.o +.PHONY : RenderSystem.o + +# target to build an object file +RenderSystem.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/RenderSystem.cpp.o +.PHONY : RenderSystem.cpp.o + +RenderSystem.i: RenderSystem.cpp.i +.PHONY : RenderSystem.i + +# target to preprocess a source file +RenderSystem.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/RenderSystem.cpp.i +.PHONY : RenderSystem.cpp.i + +RenderSystem.s: RenderSystem.cpp.s +.PHONY : RenderSystem.s + +# target to generate assembly for a file +RenderSystem.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/RenderSystem.cpp.s +.PHONY : RenderSystem.cpp.s + +Renderer.o: Renderer.cpp.o +.PHONY : Renderer.o + +# target to build an object file +Renderer.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Renderer.cpp.o +.PHONY : Renderer.cpp.o + +Renderer.i: Renderer.cpp.i +.PHONY : Renderer.i + +# target to preprocess a source file +Renderer.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Renderer.cpp.i +.PHONY : Renderer.cpp.i + +Renderer.s: Renderer.cpp.s +.PHONY : Renderer.s + +# target to generate assembly for a file +Renderer.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Renderer.cpp.s +.PHONY : Renderer.cpp.s + +ShaderManager.o: ShaderManager.cpp.o +.PHONY : ShaderManager.o + +# target to build an object file +ShaderManager.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/ShaderManager.cpp.o +.PHONY : ShaderManager.cpp.o + +ShaderManager.i: ShaderManager.cpp.i +.PHONY : ShaderManager.i + +# target to preprocess a source file +ShaderManager.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/ShaderManager.cpp.i +.PHONY : ShaderManager.cpp.i + +ShaderManager.s: ShaderManager.cpp.s +.PHONY : ShaderManager.s + +# target to generate assembly for a file +ShaderManager.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/ShaderManager.cpp.s +.PHONY : ShaderManager.cpp.s + +TextModel.o: TextModel.cpp.o +.PHONY : TextModel.o + +# target to build an object file +TextModel.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/TextModel.cpp.o +.PHONY : TextModel.cpp.o + +TextModel.i: TextModel.cpp.i +.PHONY : TextModel.i + +# target to preprocess a source file +TextModel.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/TextModel.cpp.i +.PHONY : TextModel.cpp.i + +TextModel.s: TextModel.cpp.s +.PHONY : TextModel.s + +# target to generate assembly for a file +TextModel.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/TextModel.cpp.s +.PHONY : TextModel.cpp.s + +TextureManager.o: TextureManager.cpp.o +.PHONY : TextureManager.o + +# target to build an object file +TextureManager.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/TextureManager.cpp.o +.PHONY : TextureManager.cpp.o + +TextureManager.i: TextureManager.cpp.i +.PHONY : TextureManager.i + +# target to preprocess a source file +TextureManager.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/TextureManager.cpp.i +.PHONY : TextureManager.cpp.i + +TextureManager.s: TextureManager.cpp.s +.PHONY : TextureManager.s + +# target to generate assembly for a file +TextureManager.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/TextureManager.cpp.s +.PHONY : TextureManager.cpp.s + +Utils.o: Utils.cpp.o +.PHONY : Utils.o + +# target to build an object file +Utils.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Utils.cpp.o +.PHONY : Utils.cpp.o + +Utils.i: Utils.cpp.i +.PHONY : Utils.i + +# target to preprocess a source file +Utils.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Utils.cpp.i +.PHONY : Utils.cpp.i + +Utils.s: Utils.cpp.s +.PHONY : Utils.s + +# target to generate assembly for a file +Utils.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/Utils.cpp.s +.PHONY : Utils.cpp.s + +main.o: main.cpp.o +.PHONY : main.o + +# target to build an object file +main.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/sdl_app.dir/build.make CMakeFiles/sdl_app.dir/main.cpp.s +.PHONY : main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... sdl_app" + @echo "... BoneAnimatedModel.o" + @echo "... BoneAnimatedModel.i" + @echo "... BoneAnimatedModel.s" + @echo "... Environment.o" + @echo "... Environment.i" + @echo "... Environment.s" + @echo "... Game.o" + @echo "... Game.i" + @echo "... Game.s" + @echo "... GameObjectManager.o" + @echo "... GameObjectManager.i" + @echo "... GameObjectManager.s" + @echo "... Inventory.o" + @echo "... Inventory.i" + @echo "... Inventory.s" + @echo "... Math.o" + @echo "... Math.i" + @echo "... Math.s" + @echo "... ObjLoader.o" + @echo "... ObjLoader.i" + @echo "... ObjLoader.s" + @echo "... OpenGlExtensions.o" + @echo "... OpenGlExtensions.i" + @echo "... OpenGlExtensions.s" + @echo "... Physics.o" + @echo "... Physics.i" + @echo "... Physics.s" + @echo "... QuestScripts.o" + @echo "... QuestScripts.i" + @echo "... QuestScripts.s" + @echo "... RenderSystem.o" + @echo "... RenderSystem.i" + @echo "... RenderSystem.s" + @echo "... Renderer.o" + @echo "... Renderer.i" + @echo "... Renderer.s" + @echo "... ShaderManager.o" + @echo "... ShaderManager.i" + @echo "... ShaderManager.s" + @echo "... TextModel.o" + @echo "... TextModel.i" + @echo "... TextModel.s" + @echo "... TextureManager.o" + @echo "... TextureManager.i" + @echo "... TextureManager.s" + @echo "... Utils.o" + @echo "... Utils.i" + @echo "... Utils.s" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..c431e0f --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/romazan/Рабочий стол/cproject + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/romazan/Рабочий стол/cproject/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/chair_01.obj b/chair_01.obj deleted file mode 100644 index b2d1c58..0000000 --- a/chair_01.obj +++ /dev/null @@ -1,845 +0,0 @@ -# File produced by Open Asset Import Library (http://www.assimp.sf.net) -# (assimp v3.1.243586452) - -adobe_mdllib chair_03.mdl - -# vertex positions -v 0.174148 0.345293 0.193496 -v 0.174148 0.372476 0.193496 -v -0.174148 0.372476 0.193496 -v -0.174148 0.345293 0.193496 -v -0.132761 0.345293 -0.198900 -v -0.132761 0.372476 -0.198900 -v 0.132761 0.372476 -0.198900 -v 0.132761 0.345293 -0.198900 -v 0.188859 0.345293 -0.135453 -v 0.188859 0.372476 -0.135453 -v 0.193496 0.372476 0.174149 -v 0.193496 0.345293 0.174149 -v -0.193496 0.345293 0.174149 -v -0.193496 0.372476 0.174149 -v -0.188859 0.372476 -0.135453 -v -0.188859 0.345293 -0.135453 -v 0.159079 0.372476 -0.185720 -v 0.159079 0.345293 -0.185720 -v 0.179627 0.372476 -0.164475 -v 0.179627 0.345293 -0.164475 -v -0.179627 0.372476 -0.164475 -v -0.179627 0.345293 -0.164475 -v -0.159079 0.372476 -0.185720 -v -0.159079 0.345293 -0.185720 -v 0.187829 0.345293 0.187829 -v 0.187829 0.372476 0.187829 -v -0.187829 0.345293 0.187829 -v -0.187829 0.372476 0.187829 -v -0.159554 0.275653 -0.156458 -v -0.184846 0.275653 -0.156458 -v -0.184846 0.141308 -0.165571 -v -0.159554 0.141308 -0.165571 -v -0.184846 0.275653 -0.195924 -v -0.159554 0.275653 -0.195924 -v -0.159554 0.141308 -0.201722 -v -0.184846 0.141308 -0.201722 -v -0.184846 0.000000 -0.214654 -v -0.159554 0.000000 -0.214654 -v -0.159554 0.000000 -0.185918 -v -0.184846 0.000000 -0.185918 -v -0.159554 0.406973 -0.202951 -v -0.159554 0.406973 -0.162999 -v -0.184846 0.406973 -0.162999 -v -0.184846 0.406973 -0.202951 -v -0.159554 0.857491 -0.245516 -v -0.159554 0.857491 -0.221878 -v -0.184846 0.857491 -0.221878 -v -0.184846 0.857491 -0.245516 -v -0.159554 0.347038 0.180502 -v -0.184846 0.347038 0.180502 -v -0.184846 0.000000 0.180502 -v -0.159554 0.000000 0.180502 -v -0.184846 0.347038 0.134330 -v -0.159554 0.347038 0.134330 -v -0.159554 0.000000 0.151766 -v -0.184846 0.000000 0.151766 -v -0.179757 0.318788 -0.164206 -v -0.166843 0.318788 -0.164206 -v -0.166843 0.318788 0.137869 -v -0.179757 0.318788 0.137869 -v -0.179757 0.347524 -0.164206 -v -0.179757 0.347524 0.137869 -v -0.166843 0.347524 -0.164206 -v -0.166843 0.347524 0.137869 -v 0.100121 0.879784 -0.259162 -v 0.100121 0.883241 -0.227301 -v 0.200242 0.884241 -0.218089 -v 0.200242 0.880783 -0.249950 -v 0.100121 0.843428 -0.254019 -v 0.193565 0.844428 -0.244806 -v 0.100121 0.846757 -0.223342 -v 0.193565 0.847757 -0.214129 -v -0.100121 0.883241 -0.227301 -v -0.200242 0.884241 -0.218089 -v -0.193565 0.847757 -0.214129 -v -0.100121 0.846757 -0.223342 -v -0.193565 0.844428 -0.244806 -v -0.100121 0.843428 -0.254019 -v -0.200242 0.880783 -0.249950 -v -0.100121 0.879784 -0.259162 -v 0.000000 0.882942 -0.230053 -v 0.000000 0.846459 -0.226093 -v 0.000000 0.843129 -0.256771 -v 0.000000 0.879485 -0.261914 -v 0.166884 0.318788 -0.164206 -v 0.179797 0.318788 -0.164206 -v 0.179797 0.318788 0.137869 -v 0.166884 0.318788 0.137869 -v 0.166884 0.347524 -0.164206 -v 0.166884 0.347524 0.137869 -v 0.179797 0.347524 -0.164206 -v 0.179797 0.347524 0.137869 -v 0.085696 0.442857 -0.201557 -v 0.085696 0.445319 -0.178867 -v 0.171392 0.446319 -0.169654 -v 0.171392 0.443856 -0.192344 -v 0.085696 0.408515 -0.197830 -v 0.171392 0.409514 -0.188617 -v 0.085696 0.410977 -0.175140 -v 0.171392 0.411977 -0.165927 -v -0.085696 0.445319 -0.178867 -v -0.171392 0.446319 -0.169654 -v -0.171392 0.411977 -0.165927 -v -0.085696 0.410977 -0.175140 -v -0.171392 0.409514 -0.188617 -v -0.085696 0.408515 -0.197830 -v -0.171392 0.443856 -0.192344 -v -0.085696 0.442857 -0.201557 -v 0.000000 0.445020 -0.181618 -v 0.000000 0.410678 -0.177892 -v 0.000000 0.408216 -0.200581 -v 0.000000 0.442558 -0.204308 -v 0.172319 0.318788 0.164549 -v 0.172319 0.318788 0.177462 -v -0.172319 0.318788 0.177462 -v -0.172319 0.318788 0.164549 -v 0.172319 0.347524 0.164549 -v -0.172319 0.347524 0.164549 -v 0.172319 0.347524 0.177462 -v -0.172319 0.347524 0.177462 -v -0.162206 0.318788 -0.170740 -v -0.162206 0.318788 -0.183654 -v 0.162206 0.318788 -0.183654 -v 0.162206 0.318788 -0.170740 -v -0.162206 0.347524 -0.170740 -v 0.162206 0.347524 -0.170740 -v -0.162206 0.347524 -0.183654 -v 0.162206 0.347524 -0.183654 -v 0.184849 0.275653 -0.156458 -v 0.159558 0.275653 -0.156458 -v 0.159558 0.141308 -0.165571 -v 0.184849 0.141308 -0.165571 -v 0.159558 0.275653 -0.195924 -v 0.184849 0.275653 -0.195924 -v 0.184849 0.141308 -0.201722 -v 0.159558 0.141308 -0.201722 -v 0.159558 0.000000 -0.214654 -v 0.184849 0.000000 -0.214654 -v 0.184849 0.000000 -0.185918 -v 0.159558 0.000000 -0.185918 -v 0.184849 0.406973 -0.202951 -v 0.184849 0.406973 -0.162999 -v 0.159558 0.406973 -0.162999 -v 0.159558 0.406973 -0.202951 -v 0.184849 0.857491 -0.245516 -v 0.184849 0.857491 -0.221878 -v 0.159558 0.857491 -0.221878 -v 0.159558 0.857491 -0.245516 -v 0.184849 0.347038 0.180502 -v 0.159558 0.347038 0.180502 -v 0.159558 0.000000 0.180502 -v 0.184849 0.000000 0.180502 -v 0.159558 0.347038 0.134330 -v 0.184849 0.347038 0.134330 -v 0.184849 0.000000 0.151766 -v 0.159558 0.000000 0.151766 -v 0.055957 0.849196 -0.254543 -v 0.055957 0.849196 -0.236012 -v 0.046171 0.442297 -0.184164 -v 0.046171 0.442248 -0.200416 -v -0.055957 0.849196 -0.236012 -v -0.046171 0.442297 -0.184164 -v -0.046171 0.442248 -0.200416 -v -0.055957 0.849196 -0.254543 - -# UV coordinates -vt 0.964423 0.359152 -vt 0.986640 0.359152 -vt 0.986640 0.643817 -vt 0.964423 0.643817 -vt 0.927144 0.056003 -vt 0.949361 0.056003 -vt 0.949361 0.273015 -vt 0.927144 0.273015 -vt 0.964423 0.081879 -vt 0.986640 0.081879 -vt 0.986640 0.334947 -vt 0.964423 0.334947 -vt 0.964423 0.668022 -vt 0.986640 0.668022 -vt 0.986640 0.921089 -vt 0.964423 0.921089 -vt 0.949361 0.297072 -vt 0.927144 0.297072 -vt 0.986639 0.032832 -vt 0.986640 0.056989 -vt 0.964423 0.056989 -vt 0.964423 0.032832 -vt 0.986640 0.945980 -vt 0.964423 0.945980 -vt 0.986640 0.970136 -vt 0.964423 0.970136 -vt 0.949361 0.031947 -vt 0.927144 0.031947 -vt 0.964423 0.347049 -vt 0.986640 0.347049 -vt 0.964423 0.655919 -vt 0.986640 0.656015 -vt 0.669839 0.067030 -vt 0.361128 0.067030 -vt 0.368673 0.043311 -vt 0.662294 0.043311 -vt 0.329595 0.331251 -vt 0.022567 0.331250 -vt 0.017936 0.320069 -vt 0.334227 0.320069 -vt 0.021726 0.067030 -vt 0.330437 0.067030 -vt 0.318413 0.335882 -vt 0.033749 0.335882 -vt 0.322892 0.043311 -vt 0.029271 0.043311 -vt 0.046065 0.025947 -vt 0.306097 0.025947 -vt 0.067575 0.015175 -vt 0.284587 0.015175 -vt 0.357338 0.320069 -vt 0.673628 0.320069 -vt 0.645499 0.025947 -vt 0.385467 0.025947 -vt 0.406977 0.015175 -vt 0.623989 0.015175 -vt 0.361969 0.331251 -vt 0.668997 0.331251 -vt 0.657815 0.335882 -vt 0.373151 0.335882 -vt 0.800491 0.262909 -vt 0.779813 0.262948 -vt 0.778308 0.154256 -vt 0.798979 0.153763 -vt 0.747361 0.262738 -vt 0.726595 0.262527 -vt 0.728278 0.151507 -vt 0.748942 0.151858 -vt 0.729278 0.014576 -vt 0.730695 0.035200 -vt 0.707322 0.036833 -vt 0.705868 0.016208 -vt 0.694175 0.262023 -vt 0.698826 0.152901 -vt 0.751297 0.035617 -vt 0.774572 0.038174 -vt 0.795251 0.037488 -vt 0.725787 0.371235 -vt 0.693293 0.368633 -vt 0.799595 0.369478 -vt 0.778935 0.368930 -vt 0.746451 0.371309 -vt 0.725794 0.741375 -vt 0.706573 0.739566 -vt 0.786334 0.740284 -vt 0.765673 0.739551 -vt 0.746451 0.741370 -vt 0.487747 0.678448 -vt 0.467076 0.678448 -vt 0.467076 0.394812 -vt 0.487747 0.394812 -vt 0.429340 0.678448 -vt 0.408695 0.677411 -vt 0.422946 0.393775 -vt 0.443590 0.394812 -vt 0.424124 0.370319 -vt 0.444769 0.371356 -vt 0.525483 0.678448 -vt 0.511233 0.394812 -vt 0.229182 0.982798 -vt 0.218628 0.982798 -vt 0.218628 0.735910 -vt 0.229182 0.735910 -vt 0.252668 0.982798 -vt 0.252668 0.735910 -vt 0.195142 0.982798 -vt 0.195142 0.735910 -vt 0.301082 0.604823 -vt 0.327240 0.606274 -vt 0.327240 0.688857 -vt 0.301271 0.686576 -vt 0.271574 0.604993 -vt 0.271971 0.681439 -vt 0.357354 0.606336 -vt 0.357023 0.683392 -vt 0.382432 0.604915 -vt 0.382828 0.681147 -vt 0.327152 0.441180 -vt 0.327069 0.358601 -vt 0.356857 0.364037 -vt 0.357256 0.441096 -vt 0.381194 0.366258 -vt 0.381590 0.442492 -vt 0.270335 0.366073 -vt 0.301102 0.360908 -vt 0.300995 0.442661 -vt 0.270731 0.442520 -vt 0.327306 0.523731 -vt 0.357308 0.523711 -vt 0.382011 0.523698 -vt 0.300994 0.523744 -vt 0.271153 0.523759 -vt 0.481016 0.347955 -vt 0.507159 0.348790 -vt 0.506187 0.379217 -vt 0.481016 0.378414 -vt 0.572308 0.378061 -vt 0.546152 0.378061 -vt 0.547124 0.347618 -vt 0.572308 0.347618 -vt 0.317140 0.982798 -vt 0.306586 0.982798 -vt 0.306586 0.735910 -vt 0.317140 0.735910 -vt 0.340626 0.982798 -vt 0.340626 0.735910 -vt 0.283100 0.982798 -vt 0.283100 0.735910 -vt 0.396610 0.915941 -vt 0.415219 0.917174 -vt 0.415219 0.987949 -vt 0.396788 0.986062 -vt 0.368368 0.916020 -vt 0.368556 0.986238 -vt 0.443555 0.917253 -vt 0.443259 0.987914 -vt 0.462167 0.916073 -vt 0.461712 0.986082 -vt 0.415397 0.775838 -vt 0.415502 0.705145 -vt 0.443534 0.705088 -vt 0.443729 0.775882 -vt 0.461985 0.706957 -vt 0.462338 0.777088 -vt 0.368862 0.706746 -vt 0.397073 0.706986 -vt 0.396784 0.777047 -vt 0.368544 0.776898 -vt 0.415384 0.846519 -vt 0.443631 0.846554 -vt 0.462354 0.846574 -vt 0.396650 0.846496 -vt 0.368404 0.846460 -vt 0.056810 0.988213 -vt 0.046256 0.988213 -vt 0.046256 0.706538 -vt 0.056810 0.706538 -vt 0.080296 0.988213 -vt 0.080296 0.706538 -vt 0.022770 0.988213 -vt 0.022770 0.706538 -vt 0.144549 0.982877 -vt 0.133995 0.982886 -vt 0.133995 0.717741 -vt 0.144549 0.717733 -vt 0.168035 0.982859 -vt 0.168035 0.717715 -vt 0.110509 0.982904 -vt 0.110509 0.717760 -vt 0.835458 0.262897 -vt 0.814783 0.262827 -vt 0.816350 0.153685 -vt 0.837008 0.154198 -vt 0.888674 0.262477 -vt 0.867909 0.262713 -vt 0.866372 0.151815 -vt 0.887038 0.151471 -vt 0.884677 0.035172 -vt 0.886117 0.014615 -vt 0.909475 0.016250 -vt 0.908035 0.036810 -vt 0.916487 0.152869 -vt 0.921094 0.261971 -vt 0.840797 0.038112 -vt 0.864071 0.035561 -vt 0.820136 0.037420 -vt 0.868772 0.371264 -vt 0.836284 0.368880 -vt 0.815617 0.369389 -vt 0.921933 0.368597 -vt 0.889436 0.371199 -vt 0.868772 0.741330 -vt 0.848693 0.739430 -vt 0.828023 0.740118 -vt 0.909505 0.739446 -vt 0.889427 0.741336 -vt 0.601359 0.676759 -vt 0.580688 0.676759 -vt 0.580688 0.393123 -vt 0.601359 0.393123 -vt 0.659740 0.675722 -vt 0.639095 0.676759 -vt 0.624845 0.393123 -vt 0.645490 0.392086 -vt 0.623666 0.369667 -vt 0.644311 0.368630 -vt 0.542952 0.676759 -vt 0.557203 0.393123 -vt 0.135251 0.687029 -vt 0.120190 0.687028 -vt 0.113139 0.351667 -vt 0.126352 0.351667 -vt 0.028722 0.687029 -vt 0.037668 0.351667 -vt 0.024447 0.351667 -vt 0.013653 0.687029 -vt 0.245571 0.687113 -vt 0.154104 0.687113 -vt 0.162102 0.351583 -vt 0.237574 0.351583 - -# vertex normals -vn 0.015653 0.000000 0.999878 -vn -0.015653 0.000000 0.999878 -vn -0.045115 0.000000 -0.998982 -vn 0.045115 0.000000 -0.998982 -vn 0.999162 0.000000 -0.040922 -vn 0.999995 0.000000 0.003186 -vn -0.999995 0.000000 0.003186 -vn -0.999162 0.000000 -0.040922 -vn 0.591992 0.000000 -0.805943 -vn 0.860349 0.000000 -0.509706 -vn -0.860349 0.000000 -0.509706 -vn -0.591992 0.000000 -0.805943 -vn 0.382683 0.000000 0.923880 -vn 0.923880 0.000000 0.382684 -vn -0.923880 0.000000 0.382684 -vn -0.382683 0.000000 0.923880 -vn 0.000000 -1.000000 -0.000000 -vn 0.000000 -1.000000 0.000000 -vn 0.000000 1.000000 -0.000001 -vn 0.000000 1.000000 -0.000000 -vn 0.000000 1.000000 -0.000000 -vn 0.000000 1.000000 0.000000 -vn 0.000000 1.000000 0.000001 -vn 0.000000 1.000000 0.000001 -vn 0.000000 1.000000 0.000000 -vn 0.000000 -1.000000 -0.000000 -vn 0.000000 -1.000000 -0.000001 -vn 0.000000 -1.000000 0.000001 -vn 0.000000 -1.000000 0.000001 -vn 0.000000 -1.000000 0.000003 -vn 0.000000 -0.009682 0.999953 -vn 0.000000 -0.106269 0.994337 -vn 0.000000 -0.004625 -0.999989 -vn 0.000000 0.067791 -0.997700 -vn 0.000000 -1.000000 0.000000 -vn 1.000000 -0.000000 0.000000 -vn 1.000000 -0.000000 0.000000 -vn 1.000000 -0.000000 0.000000 -vn 1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 0.000000 0.091131 -0.995839 -vn -1.000000 0.000000 0.000000 -vn 0.000000 -0.142521 0.989792 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 0.000000 0.111732 0.993738 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn 0.000000 -0.084926 -0.996387 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 0.000000 0.129590 0.991568 -vn 0.000000 -0.094062 -0.995566 -vn 0.000000 0.000000 1.000000 -vn 0.000000 -0.050179 -0.998740 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 0.000000 -1.000000 -0.000000 -vn 0.000000 -1.000000 -0.000000 -vn 0.000000 -1.000000 -0.000000 -vn 0.000000 -1.000000 -0.000000 -vn -1.000000 0.000001 0.000000 -vn 1.000000 -0.000000 0.000000 -vn 1.000000 -0.000000 0.000000 -vn -0.000000 0.994163 -0.107888 -vn -0.000000 0.994163 -0.107888 -vn 0.000001 0.994163 -0.107888 -vn 0.000001 0.994163 -0.107888 -vn 0.061008 -0.144045 -0.987689 -vn 0.060922 -0.144035 -0.987696 -vn 0.095232 -0.148007 -0.984391 -vn 0.095232 -0.148007 -0.984391 -vn -0.095309 0.116012 0.988665 -vn -0.061003 0.111934 0.991841 -vn -0.061003 0.111934 0.991841 -vn -0.000000 -0.994163 0.107888 -vn -0.000001 -0.994163 0.107887 -vn -0.000001 -0.994163 0.107887 -vn -0.000000 -0.994163 0.107888 -vn 0.061003 0.111934 0.991841 -vn 0.095309 0.116012 0.988665 -vn 0.061003 0.111934 0.991841 -vn 0.000001 -0.994163 0.107887 -vn 0.000000 -0.994163 0.107888 -vn 0.000000 -0.994163 0.107888 -vn 0.000001 -0.994163 0.107887 -vn -0.095232 -0.148007 -0.984391 -vn -0.095232 -0.148007 -0.984391 -vn -0.060922 -0.144035 -0.987696 -vn -0.061008 -0.144045 -0.987689 -vn -0.000001 0.994163 -0.107886 -vn 0.000000 0.994163 -0.107886 -vn 0.000000 0.994163 -0.107886 -vn -0.000000 0.107888 0.994163 -vn -0.000000 0.107888 0.994163 -vn 0.000000 -0.994163 0.107889 -vn 0.000000 -0.994163 0.107889 -vn 0.000000 -0.140076 -0.990141 -vn 0.000000 0.994163 -0.107887 -vn -0.000000 0.994163 -0.107887 -vn 0.983850 -0.177951 0.019312 -vn 0.983850 -0.177951 0.019312 -vn 0.983850 -0.177951 0.019312 -vn -0.983850 -0.177952 0.019310 -vn -0.983850 -0.177952 0.019310 -vn -0.983850 -0.177952 0.019310 -vn -0.983850 -0.177952 0.019310 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 0.000000 0.994163 -0.107889 -vn 0.000000 0.994163 -0.107888 -vn -0.000000 0.994163 -0.107887 -vn 0.070043 -0.107622 -0.991721 -vn 0.070043 -0.107622 -0.991721 -vn 0.107510 -0.107262 -0.988401 -vn 0.107510 -0.107262 -0.988401 -vn -0.107510 0.107262 0.988401 -vn -0.070043 0.107622 0.991722 -vn -0.070043 0.107622 0.991721 -vn -0.000000 -0.994163 0.107888 -vn 0.000000 -0.994163 0.107889 -vn 0.000000 -0.994163 0.107889 -vn 0.000000 -0.994163 0.107888 -vn 0.070043 0.107622 0.991721 -vn 0.107510 0.107262 0.988401 -vn 0.107510 0.107262 0.988401 -vn 0.070043 0.107622 0.991721 -vn -0.000000 -0.994163 0.107887 -vn 0.000000 -0.994163 0.107888 -vn -0.000000 -0.994163 0.107888 -vn -0.107509 -0.107262 -0.988401 -vn -0.107509 -0.107262 -0.988401 -vn -0.070043 -0.107622 -0.991721 -vn -0.070043 -0.107622 -0.991721 -vn 0.000000 0.994163 -0.107886 -vn 0.000000 0.994163 -0.107885 -vn -0.000000 0.994163 -0.107886 -vn -0.000000 0.994163 -0.107886 -vn 0.000000 0.107887 0.994163 -vn -0.000000 0.107887 0.994163 -vn -0.000000 -0.994163 0.107888 -vn -0.000000 -0.994163 0.107888 -vn 0.000000 -0.107887 -0.994163 -vn -0.000000 0.994163 -0.107889 -vn 0.000000 0.994163 -0.107889 -vn -0.000000 -1.000000 0.000000 -vn 0.000000 0.000000 -1.000000 -vn 0.000000 -1.000000 0.000000 -vn 0.000000 -1.000000 0.000000 -vn 0.000000 0.000000 1.000000 -vn 0.000000 0.000000 1.000000 -vn 0.000000 -0.009682 0.999953 -vn 0.000000 -0.106269 0.994337 -vn 1.000000 -0.000000 0.000000 -vn 1.000000 -0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 0.000000 0.000000 -vn -1.000000 0.000000 0.000000 -vn -1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn 0.000000 -0.142521 0.989792 -vn 1.000000 0.000000 0.000000 -vn 1.000000 0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn -1.000000 -0.000000 0.000000 -vn 0.000000 -0.050179 -0.998740 -vn 0.999711 -0.024036 0.000033 -vn 0.999711 -0.024036 0.000033 -vn 0.999711 -0.024036 0.000033 -vn 0.999711 -0.024036 0.000033 -vn 0.000000 0.126400 0.991979 -vn 0.000000 0.126400 0.991979 -vn -0.999711 -0.024036 0.000033 -vn -0.999711 -0.024036 0.000033 -vn -0.999711 -0.024036 0.000033 -vn 0.000000 -0.131846 -0.991270 -vn 0.000000 -0.131846 -0.991270 - -# Mesh -g chair_01 -usemtl MATERIAL_CHAIR_01_ -f 4/4/2 1/1/1 2/2/1 -f 2/2/1 3/3/2 4/4/2 -f 8/8/4 5/5/3 6/6/3 -f 6/6/3 7/7/4 8/8/4 -f 12/12/6 9/9/5 10/10/5 -f 10/10/5 11/11/6 12/12/6 -f 16/16/8 13/13/7 14/14/7 -f 14/14/7 15/15/8 16/16/8 -f 8/8/4 7/7/4 17/17/9 -f 17/17/9 18/18/9 8/8/4 -f 18/22/9 17/19/9 19/20/10 -f 19/20/10 20/21/10 18/22/9 -f 20/21/10 19/20/10 10/10/5 -f 10/10/5 9/9/5 20/21/10 -f 16/16/8 15/15/8 21/23/11 -f 21/23/11 22/24/11 16/16/8 -f 22/24/11 21/23/11 23/25/12 -f 23/25/12 24/26/12 22/24/11 -f 24/28/12 23/27/12 6/6/3 -f 6/6/3 5/5/3 24/28/12 -f 2/2/1 1/1/1 25/29/13 -f 25/29/13 26/30/13 2/2/1 -f 26/30/14 25/29/14 12/12/6 -f 12/12/6 11/11/6 26/30/14 -f 14/14/7 13/13/7 27/31/15 -f 27/31/15 28/32/15 14/14/7 -f 28/32/16 27/31/16 4/4/2 -f 4/4/2 3/3/2 28/32/16 -f 20/36/18 9/33/17 16/34/17 -f 16/34/17 22/35/18 20/36/18 -f 14/40/20 28/37/19 26/38/19 -f 26/38/19 11/39/20 14/40/20 -f 15/42/21 14/40/20 11/39/20 -f 11/39/20 10/41/21 15/42/21 -f 26/38/19 28/37/19 3/43/22 -f 3/43/22 2/44/22 26/38/19 -f 23/48/24 21/45/23 19/46/23 -f 19/46/23 17/47/24 23/48/24 -f 21/45/23 15/42/21 10/41/21 -f 10/41/21 19/46/23 21/45/23 -f 6/50/25 23/48/24 17/47/24 -f 17/47/24 7/49/25 6/50/25 -f 12/52/26 13/51/26 16/34/17 -f 16/34/17 9/33/17 12/52/26 -f 8/56/28 18/53/27 24/54/27 -f 24/54/27 5/55/28 8/56/28 -f 18/53/27 20/36/18 22/35/18 -f 22/35/18 24/54/27 18/53/27 -f 4/60/30 27/57/29 25/58/29 -f 25/58/29 1/59/30 4/60/30 -f 27/57/29 13/51/26 12/52/26 -f 12/52/26 25/58/29 27/57/29 -f 32/64/32 29/61/31 30/62/31 -f 30/62/31 31/63/32 32/64/32 -f 36/68/34 33/65/33 34/66/33 -f 34/66/33 35/67/34 36/68/34 -f 40/72/35 37/69/35 38/70/35 -f 38/70/35 39/71/35 40/72/35 -f 35/67/39 34/66/36 29/73/37 -f 29/73/37 32/74/38 35/67/39 -f 33/65/43 36/68/40 31/63/41 -f 31/63/41 30/62/42 33/65/43 -f 38/70/44 35/67/39 32/74/38 -f 32/74/38 39/71/44 38/70/44 -f 37/75/45 36/68/34 35/67/34 -f 35/67/34 38/70/45 37/75/45 -f 37/75/46 40/76/46 31/63/41 -f 31/63/41 36/68/40 37/75/46 -f 39/77/47 32/64/32 31/63/32 -f 31/63/32 40/76/47 39/77/47 -f 34/66/36 41/78/48 42/79/49 -f 42/79/49 29/73/37 34/66/36 -f 29/61/31 42/80/50 43/81/50 -f 43/81/50 30/62/31 29/61/31 -f 44/82/52 33/65/43 30/62/42 -f 30/62/42 43/81/51 44/82/52 -f 33/65/33 44/82/53 41/78/53 -f 41/78/53 34/66/33 33/65/33 -f 41/78/48 45/83/54 46/84/55 -f 46/84/55 42/79/49 41/78/48 -f 42/80/50 46/85/56 47/86/56 -f 47/86/56 43/81/50 42/80/50 -f 48/87/46 44/82/52 43/81/51 -f 43/81/51 47/86/46 48/87/46 -f 44/82/53 48/87/57 45/83/57 -f 45/83/57 41/78/53 44/82/53 -f 52/91/58 49/88/58 50/89/58 -f 50/89/58 51/90/58 52/91/58 -f 56/95/59 53/92/59 54/93/59 -f 54/93/59 55/94/59 56/95/59 -f 51/97/35 56/95/35 55/94/35 -f 55/94/35 52/96/35 51/97/35 -f 55/99/62 54/98/60 49/88/61 -f 49/88/61 52/91/61 55/99/62 -f 56/95/46 51/90/46 50/89/46 -f 50/89/46 53/92/46 56/95/46 -f 60/103/66 57/100/63 58/101/64 -f 58/101/64 59/102/65 60/103/66 -f 62/105/67 61/104/67 57/100/67 -f 57/100/67 60/103/67 62/105/67 -f 64/107/68 59/102/68 58/101/69 -f 58/101/69 63/106/69 64/107/68 -f 68/111/73 65/108/70 66/109/71 -f 66/109/71 67/110/72 68/111/73 -f 70/113/77 69/112/74 65/108/75 -f 65/108/75 68/111/76 70/113/77 -f 72/115/78 67/110/78 66/109/79 -f 66/109/79 71/114/80 72/115/78 -f 71/114/84 69/116/81 70/117/82 -f 70/117/82 72/115/83 71/114/84 -f 76/121/87 73/118/85 74/119/86 -f 74/119/86 75/120/86 76/121/87 -f 75/120/91 77/122/88 78/123/89 -f 78/123/89 76/121/90 75/120/91 -f 78/127/95 77/124/92 79/125/93 -f 79/125/93 80/126/94 78/127/95 -f 80/126/98 79/125/96 74/119/96 -f 74/119/96 73/118/97 80/126/98 -f 82/129/100 81/128/99 73/118/85 -f 73/118/85 76/121/87 82/129/100 -f 76/121/90 78/123/89 83/130/101 -f 83/130/101 82/129/102 76/121/90 -f 83/132/103 78/127/95 80/126/94 -f 80/126/94 84/131/103 83/132/103 -f 84/131/105 80/126/98 73/118/97 -f 73/118/97 81/128/104 84/131/105 -f 71/114/80 66/109/79 81/128/99 -f 81/128/99 82/129/100 71/114/80 -f 82/129/102 83/130/101 69/116/81 -f 69/116/81 71/114/84 82/129/102 -f 69/112/74 83/132/103 84/131/103 -f 84/131/103 65/108/75 69/112/74 -f 65/108/70 84/131/105 81/128/104 -f 81/128/104 66/109/71 65/108/70 -f 70/136/108 68/133/106 67/134/107 -f 67/134/107 72/135/106 70/136/108 -f 75/140/112 74/137/109 79/138/110 -f 79/138/110 77/139/111 75/140/112 -f 88/144/66 85/141/63 86/142/64 -f 86/142/64 87/143/65 88/144/66 -f 90/146/67 89/145/67 85/141/67 -f 85/141/67 88/144/67 90/146/67 -f 92/148/115 87/143/113 86/142/114 -f 86/142/114 91/147/113 92/148/115 -f 96/152/118 93/149/116 94/150/117 -f 94/150/117 95/151/118 96/152/118 -f 98/154/122 97/153/119 93/149/120 -f 93/149/120 96/152/121 98/154/122 -f 100/156/123 95/151/123 94/150/124 -f 94/150/124 99/155/125 100/156/123 -f 99/155/129 97/157/126 98/158/127 -f 98/158/127 100/156/128 99/155/129 -f 104/162/133 101/159/130 102/160/131 -f 102/160/131 103/161/132 104/162/133 -f 103/161/134 105/163/134 106/164/135 -f 106/164/135 104/162/136 103/161/134 -f 106/168/140 105/165/137 107/166/138 -f 107/166/138 108/167/139 106/168/140 -f 108/167/144 107/166/141 102/160/142 -f 102/160/142 101/159/143 108/167/144 -f 110/170/146 109/169/145 101/159/130 -f 101/159/130 104/162/133 110/170/146 -f 104/162/136 106/164/135 111/171/147 -f 111/171/147 110/170/148 104/162/136 -f 111/173/149 106/168/140 108/167/139 -f 108/167/139 112/172/149 111/173/149 -f 112/172/151 108/167/144 101/159/143 -f 101/159/143 109/169/150 112/172/151 -f 99/155/125 94/150/124 109/169/145 -f 109/169/145 110/170/146 99/155/125 -f 110/170/148 111/171/147 97/157/126 -f 97/157/126 99/155/129 110/170/148 -f 97/153/119 111/173/149 112/172/149 -f 112/172/149 93/149/120 97/153/119 -f 93/149/116 112/172/151 109/169/150 -f 109/169/150 94/150/117 93/149/116 -f 116/177/152 113/174/152 114/175/152 -f 114/175/152 115/176/152 116/177/152 -f 118/179/153 117/178/153 113/174/153 -f 113/174/153 116/177/153 118/179/153 -f 120/181/58 115/176/58 114/175/58 -f 114/175/58 119/180/58 120/181/58 -f 124/185/154 121/182/154 122/183/155 -f 122/183/155 123/184/154 124/185/154 -f 126/187/156 125/186/156 121/182/157 -f 121/182/157 124/185/156 126/187/156 -f 128/189/153 123/184/153 122/183/153 -f 122/183/153 127/188/153 128/189/153 -f 132/193/159 129/190/158 130/191/158 -f 130/191/158 131/192/159 132/193/159 -f 136/197/34 133/194/33 134/195/33 -f 134/195/33 135/196/34 136/197/34 -f 140/201/35 137/198/35 138/199/35 -f 138/199/35 139/200/35 140/201/35 -f 135/196/163 134/195/160 129/190/161 -f 129/190/161 132/193/162 135/196/163 -f 133/194/167 136/197/164 131/202/165 -f 131/202/165 130/203/166 133/194/167 -f 138/205/168 135/196/163 132/193/162 -f 132/193/162 139/204/168 138/205/168 -f 137/198/45 136/197/34 135/196/34 -f 135/196/34 138/205/45 137/198/45 -f 137/198/170 140/201/169 131/202/165 -f 131/202/165 136/197/164 137/198/170 -f 139/204/171 132/193/159 131/192/159 -f 131/192/159 140/206/171 139/204/171 -f 134/195/160 141/207/172 142/208/173 -f 142/208/173 129/190/161 134/195/160 -f 129/190/158 142/208/50 143/209/50 -f 143/209/50 130/191/158 129/190/158 -f 144/211/175 133/194/167 130/203/166 -f 130/203/166 143/210/174 144/211/175 -f 133/194/33 144/211/53 141/207/53 -f 141/207/53 134/195/33 133/194/33 -f 141/207/172 145/212/54 146/213/55 -f 146/213/55 142/208/173 141/207/172 -f 142/208/50 146/213/56 147/214/56 -f 147/214/56 143/209/50 142/208/50 -f 148/216/46 144/211/175 143/210/174 -f 143/210/174 147/215/46 148/216/46 -f 144/211/53 148/216/57 145/212/57 -f 145/212/57 141/207/53 144/211/53 -f 152/220/58 149/217/58 150/218/58 -f 150/218/58 151/219/58 152/220/58 -f 156/224/176 153/221/176 154/222/176 -f 154/222/176 155/223/176 156/224/176 -f 151/226/35 156/224/35 155/223/35 -f 155/223/35 152/225/35 151/226/35 -f 155/223/44 154/222/44 149/217/44 -f 149/217/44 152/220/44 155/223/44 -f 156/228/46 151/219/46 150/218/46 -f 150/218/46 153/227/46 156/228/46 -f 160/232/180 157/229/177 158/230/178 -f 158/230/178 159/231/179 160/232/180 -f 159/231/181 158/230/181 161/233/181 -f 161/233/181 162/234/182 159/231/181 -f 164/236/185 163/235/183 162/234/184 -f 162/234/184 161/233/184 164/236/185 -f 163/240/186 164/237/186 157/238/187 -f 157/238/187 160/239/186 163/240/186 diff --git a/chair_01_Base_Color.png b/chair_01_Base_Color.png deleted file mode 100644 index 7a5790e..0000000 Binary files a/chair_01_Base_Color.png and /dev/null differ diff --git a/cone001.txt b/cone001.txt deleted file mode 100644 index 14c24c3..0000000 --- a/cone001.txt +++ /dev/null @@ -1,2805 +0,0 @@ -===Vertices: 200 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -===UV Coordinates: -Face count: 400 -Face 0 -UV Count: 3 - UV - UV - UV -Face 1 -UV Count: 3 - UV - UV - UV -Face 2 -UV Count: 3 - UV - UV - UV -Face 3 -UV Count: 3 - UV - UV - UV -Face 4 -UV Count: 3 - UV - UV - UV -Face 5 -UV Count: 3 - UV - UV - UV -Face 6 -UV Count: 3 - UV - UV - UV -Face 7 -UV Count: 3 - UV - UV - UV -Face 8 -UV Count: 3 - UV - UV - UV -Face 9 -UV Count: 3 - UV - UV - UV -Face 10 -UV Count: 3 - UV - UV - UV -Face 11 -UV Count: 3 - UV - UV - UV -Face 12 -UV Count: 3 - UV - UV - UV -Face 13 -UV Count: 3 - UV - UV - UV -Face 14 -UV Count: 3 - UV - UV - UV -Face 15 -UV Count: 3 - UV - UV - UV -Face 16 -UV Count: 3 - UV - UV - UV -Face 17 -UV Count: 3 - UV - UV - UV -Face 18 -UV Count: 3 - UV - UV - UV -Face 19 -UV Count: 3 - UV - UV - UV -Face 20 -UV Count: 3 - UV - UV - UV -Face 21 -UV Count: 3 - UV - UV - UV -Face 22 -UV Count: 3 - UV - UV - UV -Face 23 -UV Count: 3 - UV - UV - UV -Face 24 -UV Count: 3 - UV - UV - UV -Face 25 -UV Count: 3 - UV - UV - UV -Face 26 -UV Count: 3 - UV - UV - UV -Face 27 -UV Count: 3 - UV - UV - UV -Face 28 -UV Count: 3 - UV - UV - UV -Face 29 -UV Count: 3 - UV - UV - UV -Face 30 -UV Count: 3 - UV - UV - UV -Face 31 -UV Count: 3 - UV - UV - UV -Face 32 -UV Count: 3 - UV - UV - UV -Face 33 -UV Count: 3 - UV - UV - UV -Face 34 -UV Count: 3 - UV - UV - UV -Face 35 -UV Count: 3 - UV - UV - UV -Face 36 -UV Count: 3 - UV - UV - UV -Face 37 -UV Count: 3 - UV - UV - UV -Face 38 -UV Count: 3 - UV - UV - UV -Face 39 -UV Count: 3 - UV - UV - UV -Face 40 -UV Count: 3 - UV - UV - UV -Face 41 -UV Count: 3 - UV - UV - UV -Face 42 -UV Count: 3 - UV - UV - UV -Face 43 -UV Count: 3 - UV - UV - UV -Face 44 -UV Count: 3 - UV - UV - UV -Face 45 -UV Count: 3 - UV - UV - UV -Face 46 -UV Count: 3 - UV - UV - UV -Face 47 -UV Count: 3 - UV - UV - UV -Face 48 -UV Count: 3 - UV - UV - UV -Face 49 -UV Count: 3 - UV - UV - UV -Face 50 -UV Count: 3 - UV - UV - UV -Face 51 -UV Count: 3 - UV - UV - UV -Face 52 -UV Count: 3 - UV - UV - UV -Face 53 -UV Count: 3 - UV - UV - UV -Face 54 -UV Count: 3 - UV - UV - UV -Face 55 -UV Count: 3 - UV - UV - UV -Face 56 -UV Count: 3 - UV - UV - UV -Face 57 -UV Count: 3 - UV - UV - UV -Face 58 -UV Count: 3 - UV - UV - UV -Face 59 -UV Count: 3 - UV - UV - UV -Face 60 -UV Count: 3 - UV - UV - UV -Face 61 -UV Count: 3 - UV - UV - UV -Face 62 -UV Count: 3 - UV - UV - UV -Face 63 -UV Count: 3 - UV - UV - UV -Face 64 -UV Count: 3 - UV - UV - UV -Face 65 -UV Count: 3 - UV - UV - UV -Face 66 -UV Count: 3 - UV - UV - UV -Face 67 -UV Count: 3 - UV - UV - UV -Face 68 -UV Count: 3 - UV - UV - UV -Face 69 -UV Count: 3 - UV - UV - UV -Face 70 -UV Count: 3 - UV - UV - UV -Face 71 -UV Count: 3 - UV - UV - UV -Face 72 -UV Count: 3 - UV - UV - UV -Face 73 -UV Count: 3 - UV - UV - UV -Face 74 -UV Count: 3 - UV - UV - UV -Face 75 -UV Count: 3 - UV - UV - UV -Face 76 -UV Count: 3 - UV - UV - UV -Face 77 -UV Count: 3 - UV - UV - UV -Face 78 -UV Count: 3 - UV - UV - UV -Face 79 -UV Count: 3 - UV - UV - UV -Face 80 -UV Count: 3 - UV - UV - UV -Face 81 -UV Count: 3 - UV - UV - UV -Face 82 -UV Count: 3 - UV - UV - UV -Face 83 -UV Count: 3 - UV - UV - UV -Face 84 -UV Count: 3 - UV - UV - UV -Face 85 -UV Count: 3 - UV - UV - UV -Face 86 -UV Count: 3 - UV - UV - UV -Face 87 -UV Count: 3 - UV - UV - UV -Face 88 -UV Count: 3 - UV - UV - UV -Face 89 -UV Count: 3 - UV - UV - UV -Face 90 -UV Count: 3 - UV - UV - UV -Face 91 -UV Count: 3 - UV - UV - UV -Face 92 -UV Count: 3 - UV - UV - UV -Face 93 -UV Count: 3 - UV - UV - UV -Face 94 -UV Count: 3 - UV - UV - UV -Face 95 -UV Count: 3 - UV - UV - UV -Face 96 -UV Count: 3 - UV - UV - UV -Face 97 -UV Count: 3 - UV - UV - UV -Face 98 -UV Count: 3 - UV - UV - UV -Face 99 -UV Count: 3 - UV - UV - UV -Face 100 -UV Count: 3 - UV - UV - UV -Face 101 -UV Count: 3 - UV - UV - UV -Face 102 -UV Count: 3 - UV - UV - UV -Face 103 -UV Count: 3 - UV - UV - UV -Face 104 -UV Count: 3 - UV - UV - UV -Face 105 -UV Count: 3 - UV - UV - UV -Face 106 -UV Count: 3 - UV - UV - UV -Face 107 -UV Count: 3 - UV - UV - UV -Face 108 -UV Count: 3 - UV - UV - UV -Face 109 -UV Count: 3 - UV - UV - UV -Face 110 -UV Count: 3 - UV - UV - UV -Face 111 -UV Count: 3 - UV - UV - UV -Face 112 -UV Count: 3 - UV - UV - UV -Face 113 -UV Count: 3 - UV - UV - UV -Face 114 -UV Count: 3 - UV - UV - UV -Face 115 -UV Count: 3 - UV - UV - UV -Face 116 -UV Count: 3 - UV - UV - UV -Face 117 -UV Count: 3 - UV - UV - UV -Face 118 -UV Count: 3 - UV - UV - UV -Face 119 -UV Count: 3 - UV - UV - UV -Face 120 -UV Count: 3 - UV - UV - UV -Face 121 -UV Count: 3 - UV - UV - UV -Face 122 -UV Count: 3 - UV - UV - UV -Face 123 -UV Count: 3 - UV - UV - UV -Face 124 -UV Count: 3 - UV - UV - UV -Face 125 -UV Count: 3 - UV - UV - UV -Face 126 -UV Count: 3 - UV - UV - UV -Face 127 -UV Count: 3 - UV - UV - UV -Face 128 -UV Count: 3 - UV - UV - UV -Face 129 -UV Count: 3 - UV - UV - UV -Face 130 -UV Count: 3 - UV - UV - UV -Face 131 -UV Count: 3 - UV - UV - UV -Face 132 -UV Count: 3 - UV - UV - UV -Face 133 -UV Count: 3 - UV - UV - UV -Face 134 -UV Count: 3 - UV - UV - UV -Face 135 -UV Count: 3 - UV - UV - UV -Face 136 -UV Count: 3 - UV - UV - UV -Face 137 -UV Count: 3 - UV - UV - UV -Face 138 -UV Count: 3 - UV - UV - UV -Face 139 -UV Count: 3 - UV - UV - UV -Face 140 -UV Count: 3 - UV - UV - UV -Face 141 -UV Count: 3 - UV - UV - UV -Face 142 -UV Count: 3 - UV - UV - UV -Face 143 -UV Count: 3 - UV - UV - UV -Face 144 -UV Count: 3 - UV - UV - UV -Face 145 -UV Count: 3 - UV - UV - UV -Face 146 -UV Count: 3 - UV - UV - UV -Face 147 -UV Count: 3 - UV - UV - UV -Face 148 -UV Count: 3 - UV - UV - UV -Face 149 -UV Count: 3 - UV - UV - UV -Face 150 -UV Count: 3 - UV - UV - UV -Face 151 -UV Count: 3 - UV - UV - UV -Face 152 -UV Count: 3 - UV - UV - UV -Face 153 -UV Count: 3 - UV - UV - UV -Face 154 -UV Count: 3 - UV - UV - UV -Face 155 -UV Count: 3 - UV - UV - UV -Face 156 -UV Count: 3 - UV - UV - UV -Face 157 -UV Count: 3 - UV - UV - UV -Face 158 -UV Count: 3 - UV - UV - UV -Face 159 -UV Count: 3 - UV - UV - UV -Face 160 -UV Count: 3 - UV - UV - UV -Face 161 -UV Count: 3 - UV - UV - UV -Face 162 -UV Count: 3 - UV - UV - UV -Face 163 -UV Count: 3 - UV - UV - UV -Face 164 -UV Count: 3 - UV - UV - UV -Face 165 -UV Count: 3 - UV - UV - UV -Face 166 -UV Count: 3 - UV - UV - UV -Face 167 -UV Count: 3 - UV - UV - UV -Face 168 -UV Count: 3 - UV - UV - UV -Face 169 -UV Count: 3 - UV - UV - UV -Face 170 -UV Count: 3 - UV - UV - UV -Face 171 -UV Count: 3 - UV - UV - UV -Face 172 -UV Count: 3 - UV - UV - UV -Face 173 -UV Count: 3 - UV - UV - UV -Face 174 -UV Count: 3 - UV - UV - UV -Face 175 -UV Count: 3 - UV - UV - UV -Face 176 -UV Count: 3 - UV - UV - UV -Face 177 -UV Count: 3 - UV - UV - UV -Face 178 -UV Count: 3 - UV - UV - UV -Face 179 -UV Count: 3 - UV - UV - UV -Face 180 -UV Count: 3 - UV - UV - UV -Face 181 -UV Count: 3 - UV - UV - UV -Face 182 -UV Count: 3 - UV - UV - UV -Face 183 -UV Count: 3 - UV - UV - UV -Face 184 -UV Count: 3 - UV - UV - UV -Face 185 -UV Count: 3 - UV - UV - UV -Face 186 -UV Count: 3 - UV - UV - UV -Face 187 -UV Count: 3 - UV - UV - UV -Face 188 -UV Count: 3 - UV - UV - UV -Face 189 -UV Count: 3 - UV - UV - UV -Face 190 -UV Count: 3 - UV - UV - UV -Face 191 -UV Count: 3 - UV - UV - UV -Face 192 -UV Count: 3 - UV - UV - UV -Face 193 -UV Count: 3 - UV - UV - UV -Face 194 -UV Count: 3 - UV - UV - UV -Face 195 -UV Count: 3 - UV - UV - UV -Face 196 -UV Count: 3 - UV - UV - UV -Face 197 -UV Count: 3 - UV - UV - UV -Face 198 -UV Count: 3 - UV - UV - UV -Face 199 -UV Count: 3 - UV - UV - UV -Face 200 -UV Count: 3 - UV - UV - UV -Face 201 -UV Count: 3 - UV - UV - UV -Face 202 -UV Count: 3 - UV - UV - UV -Face 203 -UV Count: 3 - UV - UV - UV -Face 204 -UV Count: 3 - UV - UV - UV -Face 205 -UV Count: 3 - UV - UV - UV -Face 206 -UV Count: 3 - UV - UV - UV -Face 207 -UV Count: 3 - UV - UV - UV -Face 208 -UV Count: 3 - UV - UV - UV -Face 209 -UV Count: 3 - UV - UV - UV -Face 210 -UV Count: 3 - UV - UV - UV -Face 211 -UV Count: 3 - UV - UV - UV -Face 212 -UV Count: 3 - UV - UV - UV -Face 213 -UV Count: 3 - UV - UV - UV -Face 214 -UV Count: 3 - UV - UV - UV -Face 215 -UV Count: 3 - UV - UV - UV -Face 216 -UV Count: 3 - UV - UV - UV -Face 217 -UV Count: 3 - UV - UV - UV -Face 218 -UV Count: 3 - UV - UV - UV -Face 219 -UV Count: 3 - UV - UV - UV -Face 220 -UV Count: 3 - UV - UV - UV -Face 221 -UV Count: 3 - UV - UV - UV -Face 222 -UV Count: 3 - UV - UV - UV -Face 223 -UV Count: 3 - UV - UV - UV -Face 224 -UV Count: 3 - UV - UV - UV -Face 225 -UV Count: 3 - UV - UV - UV -Face 226 -UV Count: 3 - UV - UV - UV -Face 227 -UV Count: 3 - UV - UV - UV -Face 228 -UV Count: 3 - UV - UV - UV -Face 229 -UV Count: 3 - UV - UV - UV -Face 230 -UV Count: 3 - UV - UV - UV -Face 231 -UV Count: 3 - UV - UV - UV -Face 232 -UV Count: 3 - UV - UV - UV -Face 233 -UV Count: 3 - UV - UV - UV -Face 234 -UV Count: 3 - UV - UV - UV -Face 235 -UV Count: 3 - UV - UV - UV -Face 236 -UV Count: 3 - UV - UV - UV -Face 237 -UV Count: 3 - UV - UV - UV -Face 238 -UV Count: 3 - UV - UV - UV -Face 239 -UV Count: 3 - UV - UV - UV -Face 240 -UV Count: 3 - UV - UV - UV -Face 241 -UV Count: 3 - UV - UV - UV -Face 242 -UV Count: 3 - UV - UV - UV -Face 243 -UV Count: 3 - UV - UV - UV -Face 244 -UV Count: 3 - UV - UV - UV -Face 245 -UV Count: 3 - UV - UV - UV -Face 246 -UV Count: 3 - UV - UV - UV -Face 247 -UV Count: 3 - UV - UV - UV -Face 248 -UV Count: 3 - UV - UV - UV -Face 249 -UV Count: 3 - UV - UV - UV -Face 250 -UV Count: 3 - UV - UV - UV -Face 251 -UV Count: 3 - UV - UV - UV -Face 252 -UV Count: 3 - UV - UV - UV -Face 253 -UV Count: 3 - UV - UV - UV -Face 254 -UV Count: 3 - UV - UV - UV -Face 255 -UV Count: 3 - UV - UV - UV -Face 256 -UV Count: 3 - UV - UV - UV -Face 257 -UV Count: 3 - UV - UV - UV -Face 258 -UV Count: 3 - UV - UV - UV -Face 259 -UV Count: 3 - UV - UV - UV -Face 260 -UV Count: 3 - UV - UV - UV -Face 261 -UV Count: 3 - UV - UV - UV -Face 262 -UV Count: 3 - UV - UV - UV -Face 263 -UV Count: 3 - UV - UV - UV -Face 264 -UV Count: 3 - UV - UV - UV -Face 265 -UV Count: 3 - UV - UV - UV -Face 266 -UV Count: 3 - UV - UV - UV -Face 267 -UV Count: 3 - UV - UV - UV -Face 268 -UV Count: 3 - UV - UV - UV -Face 269 -UV Count: 3 - UV - UV - UV -Face 270 -UV Count: 3 - UV - UV - UV -Face 271 -UV Count: 3 - UV - UV - UV -Face 272 -UV Count: 3 - UV - UV - UV -Face 273 -UV Count: 3 - UV - UV - UV -Face 274 -UV Count: 3 - UV - UV - UV -Face 275 -UV Count: 3 - UV - UV - UV -Face 276 -UV Count: 3 - UV - UV - UV -Face 277 -UV Count: 3 - UV - UV - UV -Face 278 -UV Count: 3 - UV - UV - UV -Face 279 -UV Count: 3 - UV - UV - UV -Face 280 -UV Count: 3 - UV - UV - UV -Face 281 -UV Count: 3 - UV - UV - UV -Face 282 -UV Count: 3 - UV - UV - UV -Face 283 -UV Count: 3 - UV - UV - UV -Face 284 -UV Count: 3 - UV - UV - UV -Face 285 -UV Count: 3 - UV - UV - UV -Face 286 -UV Count: 3 - UV - UV - UV -Face 287 -UV Count: 3 - UV - UV - UV -Face 288 -UV Count: 3 - UV - UV - UV -Face 289 -UV Count: 3 - UV - UV - UV -Face 290 -UV Count: 3 - UV - UV - UV -Face 291 -UV Count: 3 - UV - UV - UV -Face 292 -UV Count: 3 - UV - UV - UV -Face 293 -UV Count: 3 - UV - UV - UV -Face 294 -UV Count: 3 - UV - UV - UV -Face 295 -UV Count: 3 - UV - UV - UV -Face 296 -UV Count: 3 - UV - UV - UV -Face 297 -UV Count: 3 - UV - UV - UV -Face 298 -UV Count: 3 - UV - UV - UV -Face 299 -UV Count: 3 - UV - UV - UV -Face 300 -UV Count: 3 - UV - UV - UV -Face 301 -UV Count: 3 - UV - UV - UV -Face 302 -UV Count: 3 - UV - UV - UV -Face 303 -UV Count: 3 - UV - UV - UV -Face 304 -UV Count: 3 - UV - UV - UV -Face 305 -UV Count: 3 - UV - UV - UV -Face 306 -UV Count: 3 - UV - UV - UV -Face 307 -UV Count: 3 - UV - UV - UV -Face 308 -UV Count: 3 - UV - UV - UV -Face 309 -UV Count: 3 - UV - UV - UV -Face 310 -UV Count: 3 - UV - UV - UV -Face 311 -UV Count: 3 - UV - UV - UV -Face 312 -UV Count: 3 - UV - UV - UV -Face 313 -UV Count: 3 - UV - UV - UV -Face 314 -UV Count: 3 - UV - UV - UV -Face 315 -UV Count: 3 - UV - UV - UV -Face 316 -UV Count: 3 - UV - UV - UV -Face 317 -UV Count: 3 - UV - UV - UV -Face 318 -UV Count: 3 - UV - UV - UV -Face 319 -UV Count: 3 - UV - UV - UV -Face 320 -UV Count: 3 - UV - UV - UV -Face 321 -UV Count: 3 - UV - UV - UV -Face 322 -UV Count: 3 - UV - UV - UV -Face 323 -UV Count: 3 - UV - UV - UV -Face 324 -UV Count: 3 - UV - UV - UV -Face 325 -UV Count: 3 - UV - UV - UV -Face 326 -UV Count: 3 - UV - UV - UV -Face 327 -UV Count: 3 - UV - UV - UV -Face 328 -UV Count: 3 - UV - UV - UV -Face 329 -UV Count: 3 - UV - UV - UV -Face 330 -UV Count: 3 - UV - UV - UV -Face 331 -UV Count: 3 - UV - UV - UV -Face 332 -UV Count: 3 - UV - UV - UV -Face 333 -UV Count: 3 - UV - UV - UV -Face 334 -UV Count: 3 - UV - UV - UV -Face 335 -UV Count: 3 - UV - UV - UV -Face 336 -UV Count: 3 - UV - UV - UV -Face 337 -UV Count: 3 - UV - UV - UV -Face 338 -UV Count: 3 - UV - UV - UV -Face 339 -UV Count: 3 - UV - UV - UV -Face 340 -UV Count: 3 - UV - UV - UV -Face 341 -UV Count: 3 - UV - UV - UV -Face 342 -UV Count: 3 - UV - UV - UV -Face 343 -UV Count: 3 - UV - UV - UV -Face 344 -UV Count: 3 - UV - UV - UV -Face 345 -UV Count: 3 - UV - UV - UV -Face 346 -UV Count: 3 - UV - UV - UV -Face 347 -UV Count: 3 - UV - UV - UV -Face 348 -UV Count: 3 - UV - UV - UV -Face 349 -UV Count: 3 - UV - UV - UV -Face 350 -UV Count: 3 - UV - UV - UV -Face 351 -UV Count: 3 - UV - UV - UV -Face 352 -UV Count: 3 - UV - UV - UV -Face 353 -UV Count: 3 - UV - UV - UV -Face 354 -UV Count: 3 - UV - UV - UV -Face 355 -UV Count: 3 - UV - UV - UV -Face 356 -UV Count: 3 - UV - UV - UV -Face 357 -UV Count: 3 - UV - UV - UV -Face 358 -UV Count: 3 - UV - UV - UV -Face 359 -UV Count: 3 - UV - UV - UV -Face 360 -UV Count: 3 - UV - UV - UV -Face 361 -UV Count: 3 - UV - UV - UV -Face 362 -UV Count: 3 - UV - UV - UV -Face 363 -UV Count: 3 - UV - UV - UV -Face 364 -UV Count: 3 - UV - UV - UV -Face 365 -UV Count: 3 - UV - UV - UV -Face 366 -UV Count: 3 - UV - UV - UV -Face 367 -UV Count: 3 - UV - UV - UV -Face 368 -UV Count: 3 - UV - UV - UV -Face 369 -UV Count: 3 - UV - UV - UV -Face 370 -UV Count: 3 - UV - UV - UV -Face 371 -UV Count: 3 - UV - UV - UV -Face 372 -UV Count: 3 - UV - UV - UV -Face 373 -UV Count: 3 - UV - UV - UV -Face 374 -UV Count: 3 - UV - UV - UV -Face 375 -UV Count: 3 - UV - UV - UV -Face 376 -UV Count: 3 - UV - UV - UV -Face 377 -UV Count: 3 - UV - UV - UV -Face 378 -UV Count: 3 - UV - UV - UV -Face 379 -UV Count: 3 - UV - UV - UV -Face 380 -UV Count: 3 - UV - UV - UV -Face 381 -UV Count: 3 - UV - UV - UV -Face 382 -UV Count: 3 - UV - UV - UV -Face 383 -UV Count: 3 - UV - UV - UV -Face 384 -UV Count: 3 - UV - UV - UV -Face 385 -UV Count: 3 - UV - UV - UV -Face 386 -UV Count: 3 - UV - UV - UV -Face 387 -UV Count: 3 - UV - UV - UV -Face 388 -UV Count: 3 - UV - UV - UV -Face 389 -UV Count: 3 - UV - UV - UV -Face 390 -UV Count: 3 - UV - UV - UV -Face 391 -UV Count: 3 - UV - UV - UV -Face 392 -UV Count: 3 - UV - UV - UV -Face 393 -UV Count: 3 - UV - UV - UV -Face 394 -UV Count: 3 - UV - UV - UV -Face 395 -UV Count: 3 - UV - UV - UV -Face 396 -UV Count: 3 - UV - UV - UV -Face 397 -UV Count: 3 - UV - UV - UV -Face 398 -UV Count: 3 - UV - UV - UV -Face 399 -UV Count: 3 - UV - UV - UV -===Normals: -Vertex 0: Normal -Vertex 1: Normal -Vertex 2: Normal -Vertex 3: Normal -Vertex 4: Normal -Vertex 5: Normal -Vertex 6: Normal -Vertex 7: Normal -Vertex 8: Normal -Vertex 9: Normal -Vertex 10: Normal -Vertex 11: Normal -Vertex 12: Normal -Vertex 13: Normal -Vertex 14: Normal -Vertex 15: Normal -Vertex 16: Normal -Vertex 17: Normal -Vertex 18: Normal -Vertex 19: Normal -Vertex 20: Normal -Vertex 21: Normal -Vertex 22: Normal -Vertex 23: Normal -Vertex 24: Normal -Vertex 25: Normal -Vertex 26: Normal -Vertex 27: Normal -Vertex 28: Normal -Vertex 29: Normal -Vertex 30: Normal -Vertex 31: Normal -Vertex 32: Normal -Vertex 33: Normal -Vertex 34: Normal -Vertex 35: Normal -Vertex 36: Normal -Vertex 37: Normal -Vertex 38: Normal -Vertex 39: Normal -Vertex 40: Normal -Vertex 41: Normal -Vertex 42: Normal -Vertex 43: Normal -Vertex 44: Normal -Vertex 45: Normal -Vertex 46: Normal -Vertex 47: Normal -Vertex 48: Normal -Vertex 49: Normal -Vertex 50: Normal -Vertex 51: Normal -Vertex 52: Normal -Vertex 53: Normal -Vertex 54: Normal -Vertex 55: Normal -Vertex 56: Normal -Vertex 57: Normal -Vertex 58: Normal -Vertex 59: Normal -Vertex 60: Normal -Vertex 61: Normal -Vertex 62: Normal -Vertex 63: Normal -Vertex 64: Normal -Vertex 65: Normal -Vertex 66: Normal -Vertex 67: Normal -Vertex 68: Normal -Vertex 69: Normal -Vertex 70: Normal -Vertex 71: Normal -Vertex 72: Normal -Vertex 73: Normal -Vertex 74: Normal -Vertex 75: Normal -Vertex 76: Normal -Vertex 77: Normal -Vertex 78: Normal -Vertex 79: Normal -Vertex 80: Normal -Vertex 81: Normal -Vertex 82: Normal -Vertex 83: Normal -Vertex 84: Normal -Vertex 85: Normal -Vertex 86: Normal -Vertex 87: Normal -Vertex 88: Normal -Vertex 89: Normal -Vertex 90: Normal -Vertex 91: Normal -Vertex 92: Normal -Vertex 93: Normal -Vertex 94: Normal -Vertex 95: Normal -Vertex 96: Normal -Vertex 97: Normal -Vertex 98: Normal -Vertex 99: Normal -Vertex 100: Normal -Vertex 101: Normal -Vertex 102: Normal -Vertex 103: Normal -Vertex 104: Normal -Vertex 105: Normal -Vertex 106: Normal -Vertex 107: Normal -Vertex 108: Normal -Vertex 109: Normal -Vertex 110: Normal -Vertex 111: Normal -Vertex 112: Normal -Vertex 113: Normal -Vertex 114: Normal -Vertex 115: Normal -Vertex 116: Normal -Vertex 117: Normal -Vertex 118: Normal -Vertex 119: Normal -Vertex 120: Normal -Vertex 121: Normal -Vertex 122: Normal -Vertex 123: Normal -Vertex 124: Normal -Vertex 125: Normal -Vertex 126: Normal -Vertex 127: Normal -Vertex 128: Normal -Vertex 129: Normal -Vertex 130: Normal -Vertex 131: Normal -Vertex 132: Normal -Vertex 133: Normal -Vertex 134: Normal -Vertex 135: Normal -Vertex 136: Normal -Vertex 137: Normal -Vertex 138: Normal -Vertex 139: Normal -Vertex 140: Normal -Vertex 141: Normal -Vertex 142: Normal -Vertex 143: Normal -Vertex 144: Normal -Vertex 145: Normal -Vertex 146: Normal -Vertex 147: Normal -Vertex 148: Normal -Vertex 149: Normal -Vertex 150: Normal -Vertex 151: Normal -Vertex 152: Normal -Vertex 153: Normal -Vertex 154: Normal -Vertex 155: Normal -Vertex 156: Normal -Vertex 157: Normal -Vertex 158: Normal -Vertex 159: Normal -Vertex 160: Normal -Vertex 161: Normal -Vertex 162: Normal -Vertex 163: Normal -Vertex 164: Normal -Vertex 165: Normal -Vertex 166: Normal -Vertex 167: Normal -Vertex 168: Normal -Vertex 169: Normal -Vertex 170: Normal -Vertex 171: Normal -Vertex 172: Normal -Vertex 173: Normal -Vertex 174: Normal -Vertex 175: Normal -Vertex 176: Normal -Vertex 177: Normal -Vertex 178: Normal -Vertex 179: Normal -Vertex 180: Normal -Vertex 181: Normal -Vertex 182: Normal -Vertex 183: Normal -Vertex 184: Normal -Vertex 185: Normal -Vertex 186: Normal -Vertex 187: Normal -Vertex 188: Normal -Vertex 189: Normal -Vertex 190: Normal -Vertex 191: Normal -Vertex 192: Normal -Vertex 193: Normal -Vertex 194: Normal -Vertex 195: Normal -Vertex 196: Normal -Vertex 197: Normal -Vertex 198: Normal -Vertex 199: Normal -===Triangles: 400 -Triangle: [15, 21, 34] -Triangle: [32, 35, 16] -Triangle: [8, 47, 32] -Triangle: [24, 51, 55] -Triangle: [57, 26, 28] -Triangle: [7, 33, 25] -Triangle: [52, 58, 14] -Triangle: [38, 50, 34] -Triangle: [34, 3, 38] -Triangle: [34, 60, 49] -Triangle: [30, 34, 49] -Triangle: [39, 50, 18] -Triangle: [39, 25, 33] -Triangle: [59, 15, 30] -Triangle: [56, 58, 45] -Triangle: [39, 17, 36] -Triangle: [35, 31, 16] -Triangle: [55, 35, 46] -Triangle: [51, 1, 31] -Triangle: [10, 36, 9] -Triangle: [37, 18, 38] -Triangle: [2, 38, 3] -Triangle: [56, 6, 4] -Triangle: [5, 43, 40] -Triangle: [12, 42, 13] -Triangle: [7, 52, 14] -Triangle: [4, 15, 56] -Triangle: [59, 14, 58] -Triangle: [31, 44, 16] -Triangle: [1, 53, 31] -Triangle: [23, 40, 53] -Triangle: [53, 19, 44] -Triangle: [32, 27, 8] -Triangle: [16, 54, 32] -Triangle: [44, 41, 54] -Triangle: [54, 12, 27] -Triangle: [37, 46, 17] -Triangle: [56, 20, 43] -Triangle: [52, 20, 45] -Triangle: [11, 42, 52] -Triangle: [36, 46, 57] -Triangle: [2, 55, 37] -Triangle: [28, 36, 57] -Triangle: [46, 47, 57] -Triangle: [48, 14, 29] -Triangle: [29, 60, 48] -Triangle: [59, 49, 60] -Triangle: [19, 43, 20] -Triangle: [20, 41, 19] -Triangle: [60, 33, 48] -Triangle: [75, 69, 84] -Triangle: [85, 82, 70] -Triangle: [97, 8, 82] -Triangle: [101, 78, 105] -Triangle: [26, 107, 28] -Triangle: [83, 7, 25] -Triangle: [108, 102, 68] -Triangle: [100, 88, 84] -Triangle: [64, 84, 88] -Triangle: [110, 84, 99] -Triangle: [84, 80, 99] -Triangle: [100, 89, 72] -Triangle: [25, 89, 83] -Triangle: [69, 109, 80] -Triangle: [108, 106, 95] -Triangle: [71, 89, 86] -Triangle: [81, 85, 70] -Triangle: [85, 105, 96] -Triangle: [62, 101, 81] -Triangle: [86, 10, 9] -Triangle: [72, 87, 88] -Triangle: [88, 63, 64] -Triangle: [67, 106, 65] -Triangle: [93, 66, 90] -Triangle: [92, 12, 13] -Triangle: [102, 7, 68] -Triangle: [69, 65, 106] -Triangle: [68, 109, 108] -Triangle: [94, 81, 70] -Triangle: [103, 62, 81] -Triangle: [90, 77, 103] -Triangle: [73, 103, 94] -Triangle: [27, 82, 8] -Triangle: [104, 70, 82] -Triangle: [91, 94, 104] -Triangle: [12, 104, 27] -Triangle: [96, 87, 71] -Triangle: [74, 106, 93] -Triangle: [74, 102, 95] -Triangle: [92, 11, 102] -Triangle: [96, 86, 107] -Triangle: [105, 63, 87] -Triangle: [86, 28, 107] -Triangle: [97, 96, 107] -Triangle: [68, 98, 79] -Triangle: [110, 79, 98] -Triangle: [99, 109, 110] -Triangle: [93, 73, 74] -Triangle: [91, 74, 73] -Triangle: [83, 110, 98] -Triangle: [21, 119, 134] -Triangle: [135, 132, 120] -Triangle: [147, 112, 132] -Triangle: [151, 24, 155] -Triangle: [126, 157, 128] -Triangle: [133, 111, 125] -Triangle: [158, 152, 118] -Triangle: [150, 138, 134] -Triangle: [3, 134, 138] -Triangle: [160, 134, 149] -Triangle: [134, 130, 149] -Triangle: [150, 139, 122] -Triangle: [125, 139, 133] -Triangle: [119, 159, 130] -Triangle: [158, 156, 145] -Triangle: [121, 139, 136] -Triangle: [131, 135, 120] -Triangle: [135, 155, 146] -Triangle: [1, 151, 131] -Triangle: [136, 114, 113] -Triangle: [122, 137, 138] -Triangle: [138, 2, 3] -Triangle: [6, 156, 4] -Triangle: [143, 5, 140] -Triangle: [142, 116, 117] -Triangle: [152, 111, 118] -Triangle: [119, 4, 156] -Triangle: [118, 159, 158] -Triangle: [144, 131, 120] -Triangle: [153, 1, 131] -Triangle: [140, 23, 153] -Triangle: [123, 153, 144] -Triangle: [127, 132, 112] -Triangle: [154, 120, 132] -Triangle: [141, 144, 154] -Triangle: [116, 154, 127] -Triangle: [146, 137, 121] -Triangle: [124, 156, 143] -Triangle: [124, 152, 145] -Triangle: [142, 115, 152] -Triangle: [146, 136, 157] -Triangle: [155, 2, 137] -Triangle: [136, 128, 157] -Triangle: [147, 146, 157] -Triangle: [118, 148, 129] -Triangle: [160, 129, 148] -Triangle: [149, 159, 160] -Triangle: [143, 123, 124] -Triangle: [141, 124, 123] -Triangle: [133, 160, 148] -Triangle: [162, 75, 173] -Triangle: [171, 174, 163] -Triangle: [112, 186, 171] -Triangle: [78, 190, 194] -Triangle: [196, 126, 128] -Triangle: [111, 172, 125] -Triangle: [191, 197, 161] -Triangle: [177, 189, 173] -Triangle: [173, 64, 177] -Triangle: [173, 199, 188] -Triangle: [169, 173, 188] -Triangle: [178, 189, 165] -Triangle: [178, 125, 172] -Triangle: [198, 162, 169] -Triangle: [195, 197, 184] -Triangle: [178, 164, 175] -Triangle: [174, 170, 163] -Triangle: [194, 174, 185] -Triangle: [190, 62, 170] -Triangle: [114, 175, 113] -Triangle: [176, 165, 177] -Triangle: [63, 177, 64] -Triangle: [195, 67, 65] -Triangle: [66, 182, 179] -Triangle: [116, 181, 117] -Triangle: [111, 191, 161] -Triangle: [65, 162, 195] -Triangle: [198, 161, 197] -Triangle: [170, 183, 163] -Triangle: [62, 192, 170] -Triangle: [77, 179, 192] -Triangle: [192, 166, 183] -Triangle: [171, 127, 112] -Triangle: [163, 193, 171] -Triangle: [183, 180, 193] -Triangle: [193, 116, 127] -Triangle: [176, 185, 164] -Triangle: [195, 167, 182] -Triangle: [191, 167, 184] -Triangle: [115, 181, 191] -Triangle: [175, 185, 196] -Triangle: [63, 194, 176] -Triangle: [128, 175, 196] -Triangle: [185, 186, 196] -Triangle: [187, 161, 168] -Triangle: [168, 199, 187] -Triangle: [198, 188, 199] -Triangle: [166, 182, 167] -Triangle: [167, 180, 166] -Triangle: [199, 172, 187] -Triangle: [15, 0, 21] -Triangle: [32, 47, 35] -Triangle: [8, 26, 47] -Triangle: [24, 22, 51] -Triangle: [57, 47, 26] -Triangle: [7, 14, 33] -Triangle: [52, 45, 58] -Triangle: [38, 18, 50] -Triangle: [34, 21, 3] -Triangle: [34, 50, 60] -Triangle: [30, 15, 34] -Triangle: [39, 33, 50] -Triangle: [39, 10, 25] -Triangle: [59, 58, 15] -Triangle: [56, 15, 58] -Triangle: [39, 18, 17] -Triangle: [35, 51, 31] -Triangle: [55, 51, 35] -Triangle: [51, 22, 1] -Triangle: [10, 39, 36] -Triangle: [37, 17, 18] -Triangle: [2, 37, 38] -Triangle: [56, 43, 6] -Triangle: [5, 6, 43] -Triangle: [12, 41, 42] -Triangle: [7, 11, 52] -Triangle: [4, 0, 15] -Triangle: [59, 29, 14] -Triangle: [31, 53, 44] -Triangle: [1, 23, 53] -Triangle: [23, 5, 40] -Triangle: [53, 40, 19] -Triangle: [32, 54, 27] -Triangle: [16, 44, 54] -Triangle: [44, 19, 41] -Triangle: [54, 41, 12] -Triangle: [37, 55, 46] -Triangle: [56, 45, 20] -Triangle: [52, 42, 20] -Triangle: [11, 13, 42] -Triangle: [36, 17, 46] -Triangle: [2, 24, 55] -Triangle: [28, 9, 36] -Triangle: [46, 35, 47] -Triangle: [48, 33, 14] -Triangle: [29, 59, 60] -Triangle: [59, 30, 49] -Triangle: [19, 40, 43] -Triangle: [20, 42, 41] -Triangle: [60, 50, 33] -Triangle: [75, 61, 69] -Triangle: [85, 97, 82] -Triangle: [97, 26, 8] -Triangle: [101, 76, 78] -Triangle: [26, 97, 107] -Triangle: [83, 68, 7] -Triangle: [108, 95, 102] -Triangle: [100, 72, 88] -Triangle: [64, 75, 84] -Triangle: [110, 100, 84] -Triangle: [84, 69, 80] -Triangle: [100, 83, 89] -Triangle: [25, 10, 89] -Triangle: [69, 108, 109] -Triangle: [108, 69, 106] -Triangle: [71, 72, 89] -Triangle: [81, 101, 85] -Triangle: [85, 101, 105] -Triangle: [62, 76, 101] -Triangle: [86, 89, 10] -Triangle: [72, 71, 87] -Triangle: [88, 87, 63] -Triangle: [67, 93, 106] -Triangle: [93, 67, 66] -Triangle: [92, 91, 12] -Triangle: [102, 11, 7] -Triangle: [69, 61, 65] -Triangle: [68, 79, 109] -Triangle: [94, 103, 81] -Triangle: [103, 77, 62] -Triangle: [90, 66, 77] -Triangle: [73, 90, 103] -Triangle: [27, 104, 82] -Triangle: [104, 94, 70] -Triangle: [91, 73, 94] -Triangle: [12, 91, 104] -Triangle: [96, 105, 87] -Triangle: [74, 95, 106] -Triangle: [74, 92, 102] -Triangle: [92, 13, 11] -Triangle: [96, 71, 86] -Triangle: [105, 78, 63] -Triangle: [86, 9, 28] -Triangle: [97, 85, 96] -Triangle: [68, 83, 98] -Triangle: [110, 109, 79] -Triangle: [99, 80, 109] -Triangle: [93, 90, 73] -Triangle: [91, 92, 74] -Triangle: [83, 100, 110] -Triangle: [21, 0, 119] -Triangle: [135, 147, 132] -Triangle: [147, 126, 112] -Triangle: [151, 22, 24] -Triangle: [126, 147, 157] -Triangle: [133, 118, 111] -Triangle: [158, 145, 152] -Triangle: [150, 122, 138] -Triangle: [3, 21, 134] -Triangle: [160, 150, 134] -Triangle: [134, 119, 130] -Triangle: [150, 133, 139] -Triangle: [125, 114, 139] -Triangle: [119, 158, 159] -Triangle: [158, 119, 156] -Triangle: [121, 122, 139] -Triangle: [131, 151, 135] -Triangle: [135, 151, 155] -Triangle: [1, 22, 151] -Triangle: [136, 139, 114] -Triangle: [122, 121, 137] -Triangle: [138, 137, 2] -Triangle: [6, 143, 156] -Triangle: [143, 6, 5] -Triangle: [142, 141, 116] -Triangle: [152, 115, 111] -Triangle: [119, 0, 4] -Triangle: [118, 129, 159] -Triangle: [144, 153, 131] -Triangle: [153, 23, 1] -Triangle: [140, 5, 23] -Triangle: [123, 140, 153] -Triangle: [127, 154, 132] -Triangle: [154, 144, 120] -Triangle: [141, 123, 144] -Triangle: [116, 141, 154] -Triangle: [146, 155, 137] -Triangle: [124, 145, 156] -Triangle: [124, 142, 152] -Triangle: [142, 117, 115] -Triangle: [146, 121, 136] -Triangle: [155, 24, 2] -Triangle: [136, 113, 128] -Triangle: [147, 135, 146] -Triangle: [118, 133, 148] -Triangle: [160, 159, 129] -Triangle: [149, 130, 159] -Triangle: [143, 140, 123] -Triangle: [141, 142, 124] -Triangle: [133, 150, 160] -Triangle: [162, 61, 75] -Triangle: [171, 186, 174] -Triangle: [112, 126, 186] -Triangle: [78, 76, 190] -Triangle: [196, 186, 126] -Triangle: [111, 161, 172] -Triangle: [191, 184, 197] -Triangle: [177, 165, 189] -Triangle: [173, 75, 64] -Triangle: [173, 189, 199] -Triangle: [169, 162, 173] -Triangle: [178, 172, 189] -Triangle: [178, 114, 125] -Triangle: [198, 197, 162] -Triangle: [195, 162, 197] -Triangle: [178, 165, 164] -Triangle: [174, 190, 170] -Triangle: [194, 190, 174] -Triangle: [190, 76, 62] -Triangle: [114, 178, 175] -Triangle: [176, 164, 165] -Triangle: [63, 176, 177] -Triangle: [195, 182, 67] -Triangle: [66, 67, 182] -Triangle: [116, 180, 181] -Triangle: [111, 115, 191] -Triangle: [65, 61, 162] -Triangle: [198, 168, 161] -Triangle: [170, 192, 183] -Triangle: [62, 77, 192] -Triangle: [77, 66, 179] -Triangle: [192, 179, 166] -Triangle: [171, 193, 127] -Triangle: [163, 183, 193] -Triangle: [183, 166, 180] -Triangle: [193, 180, 116] -Triangle: [176, 194, 185] -Triangle: [195, 184, 167] -Triangle: [191, 181, 167] -Triangle: [115, 117, 181] -Triangle: [175, 164, 185] -Triangle: [63, 78, 194] -Triangle: [128, 113, 175] -Triangle: [185, 174, 186] -Triangle: [187, 172, 161] -Triangle: [168, 198, 199] -Triangle: [198, 169, 188] -Triangle: [166, 179, 182] -Triangle: [167, 181, 180] -Triangle: [199, 189, 172] diff --git a/cubic_icon2.bmp32 b/cubic_icon2.bmp32 deleted file mode 100644 index afb2723..0000000 Binary files a/cubic_icon2.bmp32 and /dev/null differ diff --git a/idleviola001.txt b/idleviola001.txt deleted file mode 100644 index 5b77c0c..0000000 --- a/idleviola001.txt +++ /dev/null @@ -1,17612 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 7 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 19 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 21 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 29 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 40 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - diff --git a/idleviola002.txt b/idleviola002.txt deleted file mode 100644 index 5b77c0c..0000000 --- a/idleviola002.txt +++ /dev/null @@ -1,17612 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 7 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 19 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 21 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 29 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 40 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - diff --git a/idleviola008.txt b/idleviola008.txt deleted file mode 100644 index 70663bc..0000000 --- a/idleviola008.txt +++ /dev/null @@ -1,17612 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 7 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 19 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 21 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 29 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 40 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - diff --git a/idleviola_uv009.txt b/idleviola_uv009.txt deleted file mode 100644 index 94db950..0000000 --- a/idleviola_uv009.txt +++ /dev/null @@ -1,42311 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===UV Coordinates: -Face count: 4480 -Face 0 -UV Count: 3 - UV - UV - UV -Face 1 -UV Count: 3 - UV - UV - UV -Face 2 -UV Count: 3 - UV - UV - UV -Face 3 -UV Count: 3 - UV - UV - UV -Face 4 -UV Count: 3 - UV - UV - UV -Face 5 -UV Count: 3 - UV - UV - UV -Face 6 -UV Count: 3 - UV - UV - UV -Face 7 -UV Count: 3 - UV - UV - UV -Face 8 -UV Count: 3 - UV - UV - UV -Face 9 -UV Count: 3 - UV - UV - UV -Face 10 -UV Count: 3 - UV - UV - UV -Face 11 -UV Count: 3 - UV - UV - UV -Face 12 -UV Count: 3 - UV - UV - UV -Face 13 -UV Count: 3 - UV - UV - UV -Face 14 -UV Count: 3 - UV - UV - UV -Face 15 -UV Count: 3 - UV - UV - UV -Face 16 -UV Count: 3 - UV - UV - UV -Face 17 -UV Count: 3 - UV - UV - UV -Face 18 -UV Count: 3 - UV - UV - UV -Face 19 -UV Count: 3 - UV - UV - UV -Face 20 -UV Count: 3 - UV - UV - UV -Face 21 -UV Count: 3 - UV - UV - UV -Face 22 -UV Count: 3 - UV - UV - UV -Face 23 -UV Count: 3 - UV - UV - UV -Face 24 -UV Count: 3 - UV - UV - UV -Face 25 -UV Count: 3 - UV - UV - UV -Face 26 -UV Count: 3 - UV - UV - UV -Face 27 -UV Count: 3 - UV - UV - UV -Face 28 -UV Count: 3 - UV - UV - UV -Face 29 -UV Count: 3 - UV - UV - UV -Face 30 -UV Count: 3 - UV - UV - UV -Face 31 -UV Count: 3 - UV - UV - UV -Face 32 -UV Count: 3 - UV - UV - UV -Face 33 -UV Count: 3 - UV - UV - UV -Face 34 -UV Count: 3 - UV - UV - UV -Face 35 -UV Count: 3 - UV - UV - UV -Face 36 -UV Count: 3 - UV - UV - UV -Face 37 -UV Count: 3 - UV - UV - UV -Face 38 -UV Count: 3 - UV - UV - UV -Face 39 -UV Count: 3 - UV - UV - UV -Face 40 -UV Count: 3 - UV - UV - UV -Face 41 -UV Count: 3 - UV - UV - UV -Face 42 -UV Count: 3 - UV - UV - UV -Face 43 -UV Count: 3 - UV - UV - UV -Face 44 -UV Count: 3 - UV - UV - UV -Face 45 -UV Count: 3 - UV - UV - UV -Face 46 -UV Count: 3 - UV - UV - UV -Face 47 -UV Count: 3 - UV - UV - UV -Face 48 -UV Count: 3 - UV - UV - UV -Face 49 -UV Count: 3 - UV - UV - UV -Face 50 -UV Count: 3 - UV - UV - UV -Face 51 -UV Count: 3 - UV - UV - UV -Face 52 -UV Count: 3 - UV - UV - UV -Face 53 -UV Count: 3 - UV - UV - UV -Face 54 -UV Count: 3 - UV - UV - UV -Face 55 -UV Count: 3 - UV - UV - UV -Face 56 -UV Count: 3 - UV - UV - UV -Face 57 -UV Count: 3 - UV - UV - UV -Face 58 -UV Count: 3 - UV - UV - UV -Face 59 -UV Count: 3 - UV - UV - UV -Face 60 -UV Count: 3 - UV - UV - UV -Face 61 -UV Count: 3 - UV - UV - UV -Face 62 -UV Count: 3 - UV - UV - UV -Face 63 -UV Count: 3 - UV - UV - UV -Face 64 -UV Count: 3 - UV - UV - UV -Face 65 -UV Count: 3 - UV - UV - UV -Face 66 -UV Count: 3 - UV - UV - UV -Face 67 -UV Count: 3 - UV - UV - UV -Face 68 -UV Count: 3 - UV - UV - UV -Face 69 -UV Count: 3 - UV - UV - UV -Face 70 -UV Count: 3 - UV - UV - UV -Face 71 -UV Count: 3 - UV - UV - UV -Face 72 -UV Count: 3 - UV - UV - UV -Face 73 -UV Count: 3 - UV - UV - UV -Face 74 -UV Count: 3 - UV - UV - UV -Face 75 -UV Count: 3 - UV - UV - UV -Face 76 -UV Count: 3 - UV - UV - UV -Face 77 -UV Count: 3 - UV - UV - UV -Face 78 -UV Count: 3 - UV - UV - UV -Face 79 -UV Count: 3 - UV - UV - UV -Face 80 -UV Count: 3 - UV - UV - UV -Face 81 -UV Count: 3 - UV - UV - UV -Face 82 -UV Count: 3 - UV - UV - UV -Face 83 -UV Count: 3 - UV - UV - UV -Face 84 -UV Count: 3 - UV - UV - UV -Face 85 -UV Count: 3 - UV - UV - UV -Face 86 -UV Count: 3 - UV - UV - UV -Face 87 -UV Count: 3 - UV - UV - UV -Face 88 -UV Count: 3 - UV - UV - UV -Face 89 -UV Count: 3 - UV - UV - UV -Face 90 -UV Count: 3 - UV - UV - UV -Face 91 -UV Count: 3 - UV - UV - UV -Face 92 -UV Count: 3 - UV - UV - UV -Face 93 -UV Count: 3 - UV - UV - UV -Face 94 -UV Count: 3 - UV - UV - UV -Face 95 -UV Count: 3 - UV - UV - UV -Face 96 -UV Count: 3 - UV - UV - UV -Face 97 -UV Count: 3 - UV - UV - UV -Face 98 -UV Count: 3 - UV - UV - UV -Face 99 -UV Count: 3 - UV - UV - UV -Face 100 -UV Count: 3 - UV - UV - UV -Face 101 -UV Count: 3 - UV - UV - UV -Face 102 -UV Count: 3 - UV - UV - UV -Face 103 -UV Count: 3 - UV - UV - UV -Face 104 -UV Count: 3 - UV - UV - UV -Face 105 -UV Count: 3 - UV - UV - UV -Face 106 -UV Count: 3 - UV - UV - UV -Face 107 -UV Count: 3 - UV - UV - UV -Face 108 -UV Count: 3 - UV - UV - UV -Face 109 -UV Count: 3 - UV - UV - UV -Face 110 -UV Count: 3 - UV - UV - UV -Face 111 -UV Count: 3 - UV - UV - UV -Face 112 -UV Count: 3 - UV - UV - UV -Face 113 -UV Count: 3 - UV - UV - UV -Face 114 -UV Count: 3 - UV - UV - UV -Face 115 -UV Count: 3 - UV - UV - UV -Face 116 -UV Count: 3 - UV - UV - UV -Face 117 -UV Count: 3 - UV - UV - UV -Face 118 -UV Count: 3 - UV - UV - UV -Face 119 -UV Count: 3 - UV - UV - UV -Face 120 -UV Count: 3 - UV - UV - UV -Face 121 -UV Count: 3 - UV - UV - UV -Face 122 -UV Count: 3 - UV - UV - UV -Face 123 -UV Count: 3 - UV - UV - UV -Face 124 -UV Count: 3 - UV - UV - UV -Face 125 -UV Count: 3 - UV - UV - UV -Face 126 -UV Count: 3 - UV - UV - UV -Face 127 -UV Count: 3 - UV - UV - UV -Face 128 -UV Count: 3 - UV - UV - UV -Face 129 -UV Count: 3 - UV - UV - UV -Face 130 -UV Count: 3 - UV - UV - UV -Face 131 -UV Count: 3 - UV - UV - UV -Face 132 -UV Count: 3 - UV - UV - UV -Face 133 -UV Count: 3 - UV - UV - UV -Face 134 -UV Count: 3 - UV - UV - UV -Face 135 -UV Count: 3 - UV - UV - UV -Face 136 -UV Count: 3 - UV - UV - UV -Face 137 -UV Count: 3 - UV - UV - UV -Face 138 -UV Count: 3 - UV - UV - UV -Face 139 -UV Count: 3 - UV - UV - UV -Face 140 -UV Count: 3 - UV - UV - UV -Face 141 -UV Count: 3 - UV - UV - UV -Face 142 -UV Count: 3 - UV - UV - UV -Face 143 -UV Count: 3 - UV - UV - UV -Face 144 -UV Count: 3 - UV - UV - UV -Face 145 -UV Count: 3 - UV - UV - UV -Face 146 -UV Count: 3 - UV - UV - UV -Face 147 -UV Count: 3 - UV - UV - UV -Face 148 -UV Count: 3 - UV - UV - UV -Face 149 -UV Count: 3 - UV - UV - UV -Face 150 -UV Count: 3 - UV - UV - UV -Face 151 -UV Count: 3 - UV - UV - UV -Face 152 -UV Count: 3 - UV - UV - UV -Face 153 -UV Count: 3 - UV - UV - UV -Face 154 -UV Count: 3 - UV - UV - UV -Face 155 -UV Count: 3 - UV - UV - UV -Face 156 -UV Count: 3 - UV - UV - UV -Face 157 -UV Count: 3 - UV - UV - UV -Face 158 -UV Count: 3 - UV - UV - UV -Face 159 -UV Count: 3 - UV - UV - UV -Face 160 -UV Count: 3 - UV - UV - UV -Face 161 -UV Count: 3 - UV - UV - UV -Face 162 -UV Count: 3 - UV - UV - UV -Face 163 -UV Count: 3 - UV - UV - UV -Face 164 -UV Count: 3 - UV - UV - UV -Face 165 -UV Count: 3 - UV - UV - UV -Face 166 -UV Count: 3 - UV - UV - UV -Face 167 -UV Count: 3 - UV - UV - UV -Face 168 -UV Count: 3 - UV - UV - UV -Face 169 -UV Count: 3 - UV - UV - UV -Face 170 -UV Count: 3 - UV - UV - UV -Face 171 -UV Count: 3 - UV - UV - UV -Face 172 -UV Count: 3 - UV - UV - UV -Face 173 -UV Count: 3 - UV - UV - UV -Face 174 -UV Count: 3 - UV - UV - UV -Face 175 -UV Count: 3 - UV - UV - UV -Face 176 -UV Count: 3 - UV - UV - UV -Face 177 -UV Count: 3 - UV - UV - UV -Face 178 -UV Count: 3 - UV - UV - UV -Face 179 -UV Count: 3 - UV - UV - UV -Face 180 -UV Count: 3 - UV - UV - UV -Face 181 -UV Count: 3 - UV - UV - UV -Face 182 -UV Count: 3 - UV - UV - UV -Face 183 -UV Count: 3 - UV - UV - UV -Face 184 -UV Count: 3 - UV - UV - UV -Face 185 -UV Count: 3 - UV - UV - UV -Face 186 -UV Count: 3 - UV - UV - UV -Face 187 -UV Count: 3 - UV - UV - UV -Face 188 -UV Count: 3 - UV - UV - UV -Face 189 -UV Count: 3 - UV - UV - UV -Face 190 -UV Count: 3 - UV - UV - UV -Face 191 -UV Count: 3 - UV - UV - UV -Face 192 -UV Count: 3 - UV - UV - UV -Face 193 -UV Count: 3 - UV - UV - UV -Face 194 -UV Count: 3 - UV - UV - UV -Face 195 -UV Count: 3 - UV - UV - UV -Face 196 -UV Count: 3 - UV - UV - UV -Face 197 -UV Count: 3 - UV - UV - UV -Face 198 -UV Count: 3 - UV - UV - UV -Face 199 -UV Count: 3 - UV - UV - UV -Face 200 -UV Count: 3 - UV - UV - UV -Face 201 -UV Count: 3 - UV - UV - UV -Face 202 -UV Count: 3 - UV - UV - UV -Face 203 -UV Count: 3 - UV - UV - UV -Face 204 -UV Count: 3 - UV - UV - UV -Face 205 -UV Count: 3 - UV - UV - UV -Face 206 -UV Count: 3 - UV - UV - UV -Face 207 -UV Count: 3 - UV - UV - UV -Face 208 -UV Count: 3 - UV - UV - UV -Face 209 -UV Count: 3 - UV - UV - UV -Face 210 -UV Count: 3 - UV - UV - UV -Face 211 -UV Count: 3 - UV - UV - UV -Face 212 -UV Count: 3 - UV - UV - UV -Face 213 -UV Count: 3 - UV - UV - UV -Face 214 -UV Count: 3 - UV - UV - UV -Face 215 -UV Count: 3 - UV - UV - UV -Face 216 -UV Count: 3 - UV - UV - UV -Face 217 -UV Count: 3 - UV - UV - UV -Face 218 -UV Count: 3 - UV - UV - UV -Face 219 -UV Count: 3 - UV - UV - UV -Face 220 -UV Count: 3 - UV - UV - UV -Face 221 -UV Count: 3 - UV - UV - UV -Face 222 -UV Count: 3 - UV - UV - UV -Face 223 -UV Count: 3 - UV - UV - UV -Face 224 -UV Count: 3 - UV - UV - UV -Face 225 -UV Count: 3 - UV - UV - UV -Face 226 -UV Count: 3 - UV - UV - UV -Face 227 -UV Count: 3 - UV - UV - UV -Face 228 -UV Count: 3 - UV - UV - UV -Face 229 -UV Count: 3 - UV - UV - UV -Face 230 -UV Count: 3 - UV - UV - UV -Face 231 -UV Count: 3 - UV - UV - UV -Face 232 -UV Count: 3 - UV - UV - UV -Face 233 -UV Count: 3 - UV - UV - UV -Face 234 -UV Count: 3 - UV - UV - UV -Face 235 -UV Count: 3 - UV - UV - UV -Face 236 -UV Count: 3 - UV - UV - UV -Face 237 -UV Count: 3 - UV - UV - UV -Face 238 -UV Count: 3 - UV - UV - UV -Face 239 -UV Count: 3 - UV - UV - UV -Face 240 -UV Count: 3 - UV - UV - UV -Face 241 -UV Count: 3 - UV - UV - UV -Face 242 -UV Count: 3 - UV - UV - UV -Face 243 -UV Count: 3 - UV - UV - UV -Face 244 -UV Count: 3 - UV - UV - UV -Face 245 -UV Count: 3 - UV - UV - UV -Face 246 -UV Count: 3 - UV - UV - UV -Face 247 -UV Count: 3 - UV - UV - UV -Face 248 -UV Count: 3 - UV - UV - UV -Face 249 -UV Count: 3 - UV - UV - UV -Face 250 -UV Count: 3 - UV - UV - UV -Face 251 -UV Count: 3 - UV - UV - UV -Face 252 -UV Count: 3 - UV - UV - UV -Face 253 -UV Count: 3 - UV - UV - UV -Face 254 -UV Count: 3 - UV - UV - UV -Face 255 -UV Count: 3 - UV - UV - UV -Face 256 -UV Count: 3 - UV - UV - UV -Face 257 -UV Count: 3 - UV - UV - UV -Face 258 -UV Count: 3 - UV - UV - UV -Face 259 -UV Count: 3 - UV - UV - UV -Face 260 -UV Count: 3 - UV - UV - UV -Face 261 -UV Count: 3 - UV - UV - UV -Face 262 -UV Count: 3 - UV - UV - UV -Face 263 -UV Count: 3 - UV - UV - UV -Face 264 -UV Count: 3 - UV - UV - UV -Face 265 -UV Count: 3 - UV - UV - UV -Face 266 -UV Count: 3 - UV - UV - UV -Face 267 -UV Count: 3 - UV - UV - UV -Face 268 -UV Count: 3 - UV - UV - UV -Face 269 -UV Count: 3 - UV - UV - UV -Face 270 -UV Count: 3 - UV - UV - UV -Face 271 -UV Count: 3 - UV - UV - UV -Face 272 -UV Count: 3 - UV - UV - UV -Face 273 -UV Count: 3 - UV - UV - UV -Face 274 -UV Count: 3 - UV - UV - UV -Face 275 -UV Count: 3 - UV - UV - UV -Face 276 -UV Count: 3 - UV - UV - UV -Face 277 -UV Count: 3 - UV - UV - UV -Face 278 -UV Count: 3 - UV - UV - UV -Face 279 -UV Count: 3 - UV - UV - UV -Face 280 -UV Count: 3 - UV - UV - UV -Face 281 -UV Count: 3 - UV - UV - UV -Face 282 -UV Count: 3 - UV - UV - UV -Face 283 -UV Count: 3 - UV - UV - UV -Face 284 -UV Count: 3 - UV - UV - UV -Face 285 -UV Count: 3 - UV - UV - UV -Face 286 -UV Count: 3 - UV - UV - UV -Face 287 -UV Count: 3 - UV - UV - UV -Face 288 -UV Count: 3 - UV - UV - UV -Face 289 -UV Count: 3 - UV - UV - UV -Face 290 -UV Count: 3 - UV - UV - UV -Face 291 -UV Count: 3 - UV - UV - UV -Face 292 -UV Count: 3 - UV - UV - UV -Face 293 -UV Count: 3 - UV - UV - UV -Face 294 -UV Count: 3 - UV - UV - UV -Face 295 -UV Count: 3 - UV - UV - UV -Face 296 -UV Count: 3 - UV - UV - UV -Face 297 -UV Count: 3 - UV - UV - UV -Face 298 -UV Count: 3 - UV - UV - UV -Face 299 -UV Count: 3 - UV - UV - UV -Face 300 -UV Count: 3 - UV - UV - UV -Face 301 -UV Count: 3 - UV - UV - UV -Face 302 -UV Count: 3 - UV - UV - UV -Face 303 -UV Count: 3 - UV - UV - UV -Face 304 -UV Count: 3 - UV - UV - UV -Face 305 -UV Count: 3 - UV - UV - UV -Face 306 -UV Count: 3 - UV - UV - UV -Face 307 -UV Count: 3 - UV - UV - UV -Face 308 -UV Count: 3 - UV - UV - UV -Face 309 -UV Count: 3 - UV - UV - UV -Face 310 -UV Count: 3 - UV - UV - UV -Face 311 -UV Count: 3 - UV - UV - UV -Face 312 -UV Count: 3 - UV - UV - UV -Face 313 -UV Count: 3 - UV - UV - UV -Face 314 -UV Count: 3 - UV - UV - UV -Face 315 -UV Count: 3 - UV - UV - UV -Face 316 -UV Count: 3 - UV - UV - UV -Face 317 -UV Count: 3 - UV - UV - UV -Face 318 -UV Count: 3 - UV - UV - UV -Face 319 -UV Count: 3 - UV - UV - UV -Face 320 -UV Count: 3 - UV - UV - UV -Face 321 -UV Count: 3 - UV - UV - UV -Face 322 -UV Count: 3 - UV - UV - UV -Face 323 -UV Count: 3 - UV - UV - UV -Face 324 -UV Count: 3 - UV - UV - UV -Face 325 -UV Count: 3 - UV - UV - UV -Face 326 -UV Count: 3 - UV - UV - UV -Face 327 -UV Count: 3 - UV - UV - UV -Face 328 -UV Count: 3 - UV - UV - UV -Face 329 -UV Count: 3 - UV - UV - UV -Face 330 -UV Count: 3 - UV - UV - UV -Face 331 -UV Count: 3 - UV - UV - UV -Face 332 -UV Count: 3 - UV - UV - UV -Face 333 -UV Count: 3 - UV - UV - UV -Face 334 -UV Count: 3 - UV - UV - UV -Face 335 -UV Count: 3 - UV - UV - UV -Face 336 -UV Count: 3 - UV - UV - UV -Face 337 -UV Count: 3 - UV - UV - UV -Face 338 -UV Count: 3 - UV - UV - UV -Face 339 -UV Count: 3 - UV - UV - UV -Face 340 -UV Count: 3 - UV - UV - UV -Face 341 -UV Count: 3 - UV - UV - UV -Face 342 -UV Count: 3 - UV - UV - UV -Face 343 -UV Count: 3 - UV - UV - UV -Face 344 -UV Count: 3 - UV - UV - UV -Face 345 -UV Count: 3 - UV - UV - UV -Face 346 -UV Count: 3 - UV - UV - UV -Face 347 -UV Count: 3 - UV - UV - UV -Face 348 -UV Count: 3 - UV - UV - UV -Face 349 -UV Count: 3 - UV - UV - UV -Face 350 -UV Count: 3 - UV - UV - UV -Face 351 -UV Count: 3 - UV - UV - UV -Face 352 -UV Count: 3 - UV - UV - UV -Face 353 -UV Count: 3 - UV - UV - UV -Face 354 -UV Count: 3 - UV - UV - UV -Face 355 -UV Count: 3 - UV - UV - UV -Face 356 -UV Count: 3 - UV - UV - UV -Face 357 -UV Count: 3 - UV - UV - UV -Face 358 -UV Count: 3 - UV - UV - UV -Face 359 -UV Count: 3 - UV - UV - UV -Face 360 -UV Count: 3 - UV - UV - UV -Face 361 -UV Count: 3 - UV - UV - UV -Face 362 -UV Count: 3 - UV - UV - UV -Face 363 -UV Count: 3 - UV - UV - UV -Face 364 -UV Count: 3 - UV - UV - UV -Face 365 -UV Count: 3 - UV - UV - UV -Face 366 -UV Count: 3 - UV - UV - UV -Face 367 -UV Count: 3 - UV - UV - UV -Face 368 -UV Count: 3 - UV - UV - UV -Face 369 -UV Count: 3 - UV - UV - UV -Face 370 -UV Count: 3 - UV - UV - UV -Face 371 -UV Count: 3 - UV - UV - UV -Face 372 -UV Count: 3 - UV - UV - UV -Face 373 -UV Count: 3 - UV - UV - UV -Face 374 -UV Count: 3 - UV - UV - UV -Face 375 -UV Count: 3 - UV - UV - UV -Face 376 -UV Count: 3 - UV - UV - UV -Face 377 -UV Count: 3 - UV - UV - UV -Face 378 -UV Count: 3 - UV - UV - UV -Face 379 -UV Count: 3 - UV - UV - UV -Face 380 -UV Count: 3 - UV - UV - UV -Face 381 -UV Count: 3 - UV - UV - UV -Face 382 -UV Count: 3 - UV - UV - UV -Face 383 -UV Count: 3 - UV - UV - UV -Face 384 -UV Count: 3 - UV - UV - UV -Face 385 -UV Count: 3 - UV - UV - UV -Face 386 -UV Count: 3 - UV - UV - UV -Face 387 -UV Count: 3 - UV - UV - UV -Face 388 -UV Count: 3 - UV - UV - UV -Face 389 -UV Count: 3 - UV - UV - UV -Face 390 -UV Count: 3 - UV - UV - UV -Face 391 -UV Count: 3 - UV - UV - UV -Face 392 -UV Count: 3 - UV - UV - UV -Face 393 -UV Count: 3 - UV - UV - UV -Face 394 -UV Count: 3 - UV - UV - UV -Face 395 -UV Count: 3 - UV - UV - UV -Face 396 -UV Count: 3 - UV - UV - UV -Face 397 -UV Count: 3 - UV - UV - UV -Face 398 -UV Count: 3 - UV - UV - UV -Face 399 -UV Count: 3 - UV - UV - UV -Face 400 -UV Count: 3 - UV - UV - UV -Face 401 -UV Count: 3 - UV - UV - UV -Face 402 -UV Count: 3 - UV - UV - UV -Face 403 -UV Count: 3 - UV - UV - UV -Face 404 -UV Count: 3 - UV - UV - UV -Face 405 -UV Count: 3 - UV - UV - UV -Face 406 -UV Count: 3 - UV - UV - UV -Face 407 -UV Count: 3 - UV - UV - UV -Face 408 -UV Count: 3 - UV - UV - UV -Face 409 -UV Count: 3 - UV - UV - UV -Face 410 -UV Count: 3 - UV - UV - UV -Face 411 -UV Count: 3 - UV - UV - UV -Face 412 -UV Count: 3 - UV - UV - UV -Face 413 -UV Count: 3 - UV - UV - UV -Face 414 -UV Count: 3 - UV - UV - UV -Face 415 -UV Count: 3 - UV - UV - UV -Face 416 -UV Count: 3 - UV - UV - UV -Face 417 -UV Count: 3 - UV - UV - UV -Face 418 -UV Count: 3 - UV - UV - UV -Face 419 -UV Count: 3 - UV - UV - UV -Face 420 -UV Count: 3 - UV - UV - UV -Face 421 -UV Count: 3 - UV - UV - UV -Face 422 -UV Count: 3 - UV - UV - UV -Face 423 -UV Count: 3 - UV - UV - UV -Face 424 -UV Count: 3 - UV - UV - UV -Face 425 -UV Count: 3 - UV - UV - UV -Face 426 -UV Count: 3 - UV - UV - UV -Face 427 -UV Count: 3 - UV - UV - UV -Face 428 -UV Count: 3 - UV - UV - UV -Face 429 -UV Count: 3 - UV - UV - UV -Face 430 -UV Count: 3 - UV - UV - UV -Face 431 -UV Count: 3 - UV - UV - UV -Face 432 -UV Count: 3 - UV - UV - UV -Face 433 -UV Count: 3 - UV - UV - UV -Face 434 -UV Count: 3 - UV - UV - UV -Face 435 -UV Count: 3 - UV - UV - UV -Face 436 -UV Count: 3 - UV - UV - UV -Face 437 -UV Count: 3 - UV - UV - UV -Face 438 -UV Count: 3 - UV - UV - UV -Face 439 -UV Count: 3 - UV - UV - UV -Face 440 -UV Count: 3 - UV - UV - UV -Face 441 -UV Count: 3 - UV - UV - UV -Face 442 -UV Count: 3 - UV - UV - UV -Face 443 -UV Count: 3 - UV - UV - UV -Face 444 -UV Count: 3 - UV - UV - UV -Face 445 -UV Count: 3 - UV - UV - UV -Face 446 -UV Count: 3 - UV - UV - UV -Face 447 -UV Count: 3 - UV - UV - UV -Face 448 -UV Count: 3 - UV - UV - UV -Face 449 -UV Count: 3 - UV - UV - UV -Face 450 -UV Count: 3 - UV - UV - UV -Face 451 -UV Count: 3 - UV - UV - UV -Face 452 -UV Count: 3 - UV - UV - UV -Face 453 -UV Count: 3 - UV - UV - UV -Face 454 -UV Count: 3 - UV - UV - UV -Face 455 -UV Count: 3 - UV - UV - UV -Face 456 -UV Count: 3 - UV - UV - UV -Face 457 -UV Count: 3 - UV - UV - UV -Face 458 -UV Count: 3 - UV - UV - UV -Face 459 -UV Count: 3 - UV - UV - UV -Face 460 -UV Count: 3 - UV - UV - UV -Face 461 -UV Count: 3 - UV - UV - UV -Face 462 -UV Count: 3 - UV - UV - UV -Face 463 -UV Count: 3 - UV - UV - UV -Face 464 -UV Count: 3 - UV - UV - UV -Face 465 -UV Count: 3 - UV - UV - UV -Face 466 -UV Count: 3 - UV - UV - UV -Face 467 -UV Count: 3 - UV - UV - UV -Face 468 -UV Count: 3 - UV - UV - UV -Face 469 -UV Count: 3 - UV - UV - UV -Face 470 -UV Count: 3 - UV - UV - UV -Face 471 -UV Count: 3 - UV - UV - UV -Face 472 -UV Count: 3 - UV - UV - UV -Face 473 -UV Count: 3 - UV - UV - UV -Face 474 -UV Count: 3 - UV - UV - UV -Face 475 -UV Count: 3 - UV - UV - UV -Face 476 -UV Count: 3 - UV - UV - UV -Face 477 -UV Count: 3 - UV - UV - UV -Face 478 -UV Count: 3 - UV - UV - UV -Face 479 -UV Count: 3 - UV - UV - UV -Face 480 -UV Count: 3 - UV - UV - UV -Face 481 -UV Count: 3 - UV - UV - UV -Face 482 -UV Count: 3 - UV - UV - UV -Face 483 -UV Count: 3 - UV - UV - UV -Face 484 -UV Count: 3 - UV - UV - UV -Face 485 -UV Count: 3 - UV - UV - UV -Face 486 -UV Count: 3 - UV - UV - UV -Face 487 -UV Count: 3 - UV - UV - UV -Face 488 -UV Count: 3 - UV - UV - UV -Face 489 -UV Count: 3 - UV - UV - UV -Face 490 -UV Count: 3 - UV - UV - UV -Face 491 -UV Count: 3 - UV - UV - UV -Face 492 -UV Count: 3 - UV - UV - UV -Face 493 -UV Count: 3 - UV - UV - UV -Face 494 -UV Count: 3 - UV - UV - UV -Face 495 -UV Count: 3 - UV - UV - UV -Face 496 -UV Count: 3 - UV - UV - UV -Face 497 -UV Count: 3 - UV - UV - UV -Face 498 -UV Count: 3 - UV - UV - UV -Face 499 -UV Count: 3 - UV - UV - UV -Face 500 -UV Count: 3 - UV - UV - UV -Face 501 -UV Count: 3 - UV - UV - UV -Face 502 -UV Count: 3 - UV - UV - UV -Face 503 -UV Count: 3 - UV - UV - UV -Face 504 -UV Count: 3 - UV - UV - UV -Face 505 -UV Count: 3 - UV - UV - UV -Face 506 -UV Count: 3 - UV - UV - UV -Face 507 -UV Count: 3 - UV - UV - UV -Face 508 -UV Count: 3 - UV - UV - UV -Face 509 -UV Count: 3 - UV - UV - UV -Face 510 -UV Count: 3 - UV - UV - UV -Face 511 -UV Count: 3 - UV - UV - UV -Face 512 -UV Count: 3 - UV - UV - UV -Face 513 -UV Count: 3 - UV - UV - UV -Face 514 -UV Count: 3 - UV - UV - UV -Face 515 -UV Count: 3 - UV - UV - UV -Face 516 -UV Count: 3 - UV - UV - UV -Face 517 -UV Count: 3 - UV - UV - UV -Face 518 -UV Count: 3 - UV - UV - UV -Face 519 -UV Count: 3 - UV - UV - UV -Face 520 -UV Count: 3 - UV - UV - UV -Face 521 -UV Count: 3 - UV - UV - UV -Face 522 -UV Count: 3 - UV - UV - UV -Face 523 -UV Count: 3 - UV - UV - UV -Face 524 -UV Count: 3 - UV - UV - UV -Face 525 -UV Count: 3 - UV - UV - UV -Face 526 -UV Count: 3 - UV - UV - UV -Face 527 -UV Count: 3 - UV - UV - UV -Face 528 -UV Count: 3 - UV - UV - UV -Face 529 -UV Count: 3 - UV - UV - UV -Face 530 -UV Count: 3 - UV - UV - UV -Face 531 -UV Count: 3 - UV - UV - UV -Face 532 -UV Count: 3 - UV - UV - UV -Face 533 -UV Count: 3 - UV - UV - UV -Face 534 -UV Count: 3 - UV - UV - UV -Face 535 -UV Count: 3 - UV - UV - UV -Face 536 -UV Count: 3 - UV - UV - UV -Face 537 -UV Count: 3 - UV - UV - UV -Face 538 -UV Count: 3 - UV - UV - UV -Face 539 -UV Count: 3 - UV - UV - UV -Face 540 -UV Count: 3 - UV - UV - UV -Face 541 -UV Count: 3 - UV - UV - UV -Face 542 -UV Count: 3 - UV - UV - UV -Face 543 -UV Count: 3 - UV - UV - UV -Face 544 -UV Count: 3 - UV - UV - UV -Face 545 -UV Count: 3 - UV - UV - UV -Face 546 -UV Count: 3 - UV - UV - UV -Face 547 -UV Count: 3 - UV - UV - UV -Face 548 -UV Count: 3 - UV - UV - UV -Face 549 -UV Count: 3 - UV - UV - UV -Face 550 -UV Count: 3 - UV - UV - UV -Face 551 -UV Count: 3 - UV - UV - UV -Face 552 -UV Count: 3 - UV - UV - UV -Face 553 -UV Count: 3 - UV - UV - UV -Face 554 -UV Count: 3 - UV - UV - UV -Face 555 -UV Count: 3 - UV - UV - UV -Face 556 -UV Count: 3 - UV - UV - UV -Face 557 -UV Count: 3 - UV - UV - UV -Face 558 -UV Count: 3 - UV - UV - UV -Face 559 -UV Count: 3 - UV - UV - UV -Face 560 -UV Count: 3 - UV - UV - UV -Face 561 -UV Count: 3 - UV - UV - UV -Face 562 -UV Count: 3 - UV - UV - UV -Face 563 -UV Count: 3 - UV - UV - UV -Face 564 -UV Count: 3 - UV - UV - UV -Face 565 -UV Count: 3 - UV - UV - UV -Face 566 -UV Count: 3 - UV - UV - UV -Face 567 -UV Count: 3 - UV - UV - UV -Face 568 -UV Count: 3 - UV - UV - UV -Face 569 -UV Count: 3 - UV - UV - UV -Face 570 -UV Count: 3 - UV - UV - UV -Face 571 -UV Count: 3 - UV - UV - UV -Face 572 -UV Count: 3 - UV - UV - UV -Face 573 -UV Count: 3 - UV - UV - UV -Face 574 -UV Count: 3 - UV - UV - UV -Face 575 -UV Count: 3 - UV - UV - UV -Face 576 -UV Count: 3 - UV - UV - UV -Face 577 -UV Count: 3 - UV - UV - UV -Face 578 -UV Count: 3 - UV - UV - UV -Face 579 -UV Count: 3 - UV - UV - UV -Face 580 -UV Count: 3 - UV - UV - UV -Face 581 -UV Count: 3 - UV - UV - UV -Face 582 -UV Count: 3 - UV - UV - UV -Face 583 -UV Count: 3 - UV - UV - UV -Face 584 -UV Count: 3 - UV - UV - UV -Face 585 -UV Count: 3 - UV - UV - UV -Face 586 -UV Count: 3 - UV - UV - UV -Face 587 -UV Count: 3 - UV - UV - UV -Face 588 -UV Count: 3 - UV - UV - UV -Face 589 -UV Count: 3 - UV - UV - UV -Face 590 -UV Count: 3 - UV - UV - UV -Face 591 -UV Count: 3 - UV - UV - UV -Face 592 -UV Count: 3 - UV - UV - UV -Face 593 -UV Count: 3 - UV - UV - UV -Face 594 -UV Count: 3 - UV - UV - UV -Face 595 -UV Count: 3 - UV - UV - UV -Face 596 -UV Count: 3 - UV - UV - UV -Face 597 -UV Count: 3 - UV - UV - UV -Face 598 -UV Count: 3 - UV - UV - UV -Face 599 -UV Count: 3 - UV - UV - UV -Face 600 -UV Count: 3 - UV - UV - UV -Face 601 -UV Count: 3 - UV - UV - UV -Face 602 -UV Count: 3 - UV - UV - UV -Face 603 -UV Count: 3 - UV - UV - UV -Face 604 -UV Count: 3 - UV - UV - UV -Face 605 -UV Count: 3 - UV - UV - UV -Face 606 -UV Count: 3 - UV - UV - UV -Face 607 -UV Count: 3 - UV - UV - UV -Face 608 -UV Count: 3 - UV - UV - UV -Face 609 -UV Count: 3 - UV - UV - UV -Face 610 -UV Count: 3 - UV - UV - UV -Face 611 -UV Count: 3 - UV - UV - UV -Face 612 -UV Count: 3 - UV - UV - UV -Face 613 -UV Count: 3 - UV - UV - UV -Face 614 -UV Count: 3 - UV - UV - UV -Face 615 -UV Count: 3 - UV - UV - UV -Face 616 -UV Count: 3 - UV - UV - UV -Face 617 -UV Count: 3 - UV - UV - UV -Face 618 -UV Count: 3 - UV - UV - UV -Face 619 -UV Count: 3 - UV - UV - UV -Face 620 -UV Count: 3 - UV - UV - UV -Face 621 -UV Count: 3 - UV - UV - UV -Face 622 -UV Count: 3 - UV - UV - UV -Face 623 -UV Count: 3 - UV - UV - UV -Face 624 -UV Count: 3 - UV - UV - UV -Face 625 -UV Count: 3 - UV - UV - UV -Face 626 -UV Count: 3 - UV - UV - UV -Face 627 -UV Count: 3 - UV - UV - UV -Face 628 -UV Count: 3 - UV - UV - UV -Face 629 -UV Count: 3 - UV - UV - UV -Face 630 -UV Count: 3 - UV - UV - UV -Face 631 -UV Count: 3 - UV - UV - UV -Face 632 -UV Count: 3 - UV - UV - UV -Face 633 -UV Count: 3 - UV - UV - UV -Face 634 -UV Count: 3 - UV - UV - UV -Face 635 -UV Count: 3 - UV - UV - UV -Face 636 -UV Count: 3 - UV - UV - UV -Face 637 -UV Count: 3 - UV - UV - UV -Face 638 -UV Count: 3 - UV - UV - UV -Face 639 -UV Count: 3 - UV - UV - UV -Face 640 -UV Count: 3 - UV - UV - UV -Face 641 -UV Count: 3 - UV - UV - UV -Face 642 -UV Count: 3 - UV - UV - UV -Face 643 -UV Count: 3 - UV - UV - UV -Face 644 -UV Count: 3 - UV - UV - UV -Face 645 -UV Count: 3 - UV - UV - UV -Face 646 -UV Count: 3 - UV - UV - UV -Face 647 -UV Count: 3 - UV - UV - UV -Face 648 -UV Count: 3 - UV - UV - UV -Face 649 -UV Count: 3 - UV - UV - UV -Face 650 -UV Count: 3 - UV - UV - UV -Face 651 -UV Count: 3 - UV - UV - UV -Face 652 -UV Count: 3 - UV - UV - UV -Face 653 -UV Count: 3 - UV - UV - UV -Face 654 -UV Count: 3 - UV - UV - UV -Face 655 -UV Count: 3 - UV - UV - UV -Face 656 -UV Count: 3 - UV - UV - UV -Face 657 -UV Count: 3 - UV - UV - UV -Face 658 -UV Count: 3 - UV - UV - UV -Face 659 -UV Count: 3 - UV - UV - UV -Face 660 -UV Count: 3 - UV - UV - UV -Face 661 -UV Count: 3 - UV - UV - UV -Face 662 -UV Count: 3 - UV - UV - UV -Face 663 -UV Count: 3 - UV - UV - UV -Face 664 -UV Count: 3 - UV - UV - UV -Face 665 -UV Count: 3 - UV - UV - UV -Face 666 -UV Count: 3 - UV - UV - UV -Face 667 -UV Count: 3 - UV - UV - UV -Face 668 -UV Count: 3 - UV - UV - UV -Face 669 -UV Count: 3 - UV - UV - UV -Face 670 -UV Count: 3 - UV - UV - UV -Face 671 -UV Count: 3 - UV - UV - UV -Face 672 -UV Count: 3 - UV - UV - UV -Face 673 -UV Count: 3 - UV - UV - UV -Face 674 -UV Count: 3 - UV - UV - UV -Face 675 -UV Count: 3 - UV - UV - UV -Face 676 -UV Count: 3 - UV - UV - UV -Face 677 -UV Count: 3 - UV - UV - UV -Face 678 -UV Count: 3 - UV - UV - UV -Face 679 -UV Count: 3 - UV - UV - UV -Face 680 -UV Count: 3 - UV - UV - UV -Face 681 -UV Count: 3 - UV - UV - UV -Face 682 -UV Count: 3 - UV - UV - UV -Face 683 -UV Count: 3 - UV - UV - UV -Face 684 -UV Count: 3 - UV - UV - UV -Face 685 -UV Count: 3 - UV - UV - UV -Face 686 -UV Count: 3 - UV - UV - UV -Face 687 -UV Count: 3 - UV - UV - UV -Face 688 -UV Count: 3 - UV - UV - UV -Face 689 -UV Count: 3 - UV - UV - UV -Face 690 -UV Count: 3 - UV - UV - UV -Face 691 -UV Count: 3 - UV - UV - UV -Face 692 -UV Count: 3 - UV - UV - UV -Face 693 -UV Count: 3 - UV - UV - UV -Face 694 -UV Count: 3 - UV - UV - UV -Face 695 -UV Count: 3 - UV - UV - UV -Face 696 -UV Count: 3 - UV - UV - UV -Face 697 -UV Count: 3 - UV - UV - UV -Face 698 -UV Count: 3 - UV - UV - UV -Face 699 -UV Count: 3 - UV - UV - UV -Face 700 -UV Count: 3 - UV - UV - UV -Face 701 -UV Count: 3 - UV - UV - UV -Face 702 -UV Count: 3 - UV - UV - UV -Face 703 -UV Count: 3 - UV - UV - UV -Face 704 -UV Count: 3 - UV - UV - UV -Face 705 -UV Count: 3 - UV - UV - UV -Face 706 -UV Count: 3 - UV - UV - UV -Face 707 -UV Count: 3 - UV - UV - UV -Face 708 -UV Count: 3 - UV - UV - UV -Face 709 -UV Count: 3 - UV - UV - UV -Face 710 -UV Count: 3 - UV - UV - UV -Face 711 -UV Count: 3 - UV - UV - UV -Face 712 -UV Count: 3 - UV - UV - UV -Face 713 -UV Count: 3 - UV - UV - UV -Face 714 -UV Count: 3 - UV - UV - UV -Face 715 -UV Count: 3 - UV - UV - UV -Face 716 -UV Count: 3 - UV - UV - UV -Face 717 -UV Count: 3 - UV - UV - UV -Face 718 -UV Count: 3 - UV - UV - UV -Face 719 -UV Count: 3 - UV - UV - UV -Face 720 -UV Count: 3 - UV - UV - UV -Face 721 -UV Count: 3 - UV - UV - UV -Face 722 -UV Count: 3 - UV - UV - UV -Face 723 -UV Count: 3 - UV - UV - UV -Face 724 -UV Count: 3 - UV - UV - UV -Face 725 -UV Count: 3 - UV - UV - UV -Face 726 -UV Count: 3 - UV - UV - UV -Face 727 -UV Count: 3 - UV - UV - UV -Face 728 -UV Count: 3 - UV - UV - UV -Face 729 -UV Count: 3 - UV - UV - UV -Face 730 -UV Count: 3 - UV - UV - UV -Face 731 -UV Count: 3 - UV - UV - UV -Face 732 -UV Count: 3 - UV - UV - UV -Face 733 -UV Count: 3 - UV - UV - UV -Face 734 -UV Count: 3 - UV - UV - UV -Face 735 -UV Count: 3 - UV - UV - UV -Face 736 -UV Count: 3 - UV - UV - UV -Face 737 -UV Count: 3 - UV - UV - UV -Face 738 -UV Count: 3 - UV - UV - UV -Face 739 -UV Count: 3 - UV - UV - UV -Face 740 -UV Count: 3 - UV - UV - UV -Face 741 -UV Count: 3 - UV - UV - UV -Face 742 -UV Count: 3 - UV - UV - UV -Face 743 -UV Count: 3 - UV - UV - UV -Face 744 -UV Count: 3 - UV - UV - UV -Face 745 -UV Count: 3 - UV - UV - UV -Face 746 -UV Count: 3 - UV - UV - UV -Face 747 -UV Count: 3 - UV - UV - UV -Face 748 -UV Count: 3 - UV - UV - UV -Face 749 -UV Count: 3 - UV - UV - UV -Face 750 -UV Count: 3 - UV - UV - UV -Face 751 -UV Count: 3 - UV - UV - UV -Face 752 -UV Count: 3 - UV - UV - UV -Face 753 -UV Count: 3 - UV - UV - UV -Face 754 -UV Count: 3 - UV - UV - UV -Face 755 -UV Count: 3 - UV - UV - UV -Face 756 -UV Count: 3 - UV - UV - UV -Face 757 -UV Count: 3 - UV - UV - UV -Face 758 -UV Count: 3 - UV - UV - UV -Face 759 -UV Count: 3 - UV - UV - UV -Face 760 -UV Count: 3 - UV - UV - UV -Face 761 -UV Count: 3 - UV - UV - UV -Face 762 -UV Count: 3 - UV - UV - UV -Face 763 -UV Count: 3 - UV - UV - UV -Face 764 -UV Count: 3 - UV - UV - UV -Face 765 -UV Count: 3 - UV - UV - UV -Face 766 -UV Count: 3 - UV - UV - UV -Face 767 -UV Count: 3 - UV - UV - UV -Face 768 -UV Count: 3 - UV - UV - UV -Face 769 -UV Count: 3 - UV - UV - UV -Face 770 -UV Count: 3 - UV - UV - UV -Face 771 -UV Count: 3 - UV - UV - UV -Face 772 -UV Count: 3 - UV - UV - UV -Face 773 -UV Count: 3 - UV - UV - UV -Face 774 -UV Count: 3 - UV - UV - UV -Face 775 -UV Count: 3 - UV - UV - UV -Face 776 -UV Count: 3 - UV - UV - UV -Face 777 -UV Count: 3 - UV - UV - UV -Face 778 -UV Count: 3 - UV - UV - UV -Face 779 -UV Count: 3 - UV - UV - UV -Face 780 -UV Count: 3 - UV - UV - UV -Face 781 -UV Count: 3 - UV - UV - UV -Face 782 -UV Count: 3 - UV - UV - UV -Face 783 -UV Count: 3 - UV - UV - UV -Face 784 -UV Count: 3 - UV - UV - UV -Face 785 -UV Count: 3 - UV - UV - UV -Face 786 -UV Count: 3 - UV - UV - UV -Face 787 -UV Count: 3 - UV - UV - UV -Face 788 -UV Count: 3 - UV - UV - UV -Face 789 -UV Count: 3 - UV - UV - UV -Face 790 -UV Count: 3 - UV - UV - UV -Face 791 -UV Count: 3 - UV - UV - UV -Face 792 -UV Count: 3 - UV - UV - UV -Face 793 -UV Count: 3 - UV - UV - UV -Face 794 -UV Count: 3 - UV - UV - UV -Face 795 -UV Count: 3 - UV - UV - UV -Face 796 -UV Count: 3 - UV - UV - UV -Face 797 -UV Count: 3 - UV - UV - UV -Face 798 -UV Count: 3 - UV - UV - UV -Face 799 -UV Count: 3 - UV - UV - UV -Face 800 -UV Count: 3 - UV - UV - UV -Face 801 -UV Count: 3 - UV - UV - UV -Face 802 -UV Count: 3 - UV - UV - UV -Face 803 -UV Count: 3 - UV - UV - UV -Face 804 -UV Count: 3 - UV - UV - UV -Face 805 -UV Count: 3 - UV - UV - UV -Face 806 -UV Count: 3 - UV - UV - UV -Face 807 -UV Count: 3 - UV - UV - UV -Face 808 -UV Count: 3 - UV - UV - UV -Face 809 -UV Count: 3 - UV - UV - UV -Face 810 -UV Count: 3 - UV - UV - UV -Face 811 -UV Count: 3 - UV - UV - UV -Face 812 -UV Count: 3 - UV - UV - UV -Face 813 -UV Count: 3 - UV - UV - UV -Face 814 -UV Count: 3 - UV - UV - UV -Face 815 -UV Count: 3 - UV - UV - UV -Face 816 -UV Count: 3 - UV - UV - UV -Face 817 -UV Count: 3 - UV - UV - UV -Face 818 -UV Count: 3 - UV - UV - UV -Face 819 -UV Count: 3 - UV - UV - UV -Face 820 -UV Count: 3 - UV - UV - UV -Face 821 -UV Count: 3 - UV - UV - UV -Face 822 -UV Count: 3 - UV - UV - UV -Face 823 -UV Count: 3 - UV - UV - UV -Face 824 -UV Count: 3 - UV - UV - UV -Face 825 -UV Count: 3 - UV - UV - UV -Face 826 -UV Count: 3 - UV - UV - UV -Face 827 -UV Count: 3 - UV - UV - UV -Face 828 -UV Count: 3 - UV - UV - UV -Face 829 -UV Count: 3 - UV - UV - UV -Face 830 -UV Count: 3 - UV - UV - UV -Face 831 -UV Count: 3 - UV - UV - UV -Face 832 -UV Count: 3 - UV - UV - UV -Face 833 -UV Count: 3 - UV - UV - UV -Face 834 -UV Count: 3 - UV - UV - UV -Face 835 -UV Count: 3 - UV - UV - UV -Face 836 -UV Count: 3 - UV - UV - UV -Face 837 -UV Count: 3 - UV - UV - UV -Face 838 -UV Count: 3 - UV - UV - UV -Face 839 -UV Count: 3 - UV - UV - UV -Face 840 -UV Count: 3 - UV - UV - UV -Face 841 -UV Count: 3 - UV - UV - UV -Face 842 -UV Count: 3 - UV - UV - UV -Face 843 -UV Count: 3 - UV - UV - UV -Face 844 -UV Count: 3 - UV - UV - UV -Face 845 -UV Count: 3 - UV - UV - UV -Face 846 -UV Count: 3 - UV - UV - UV -Face 847 -UV Count: 3 - UV - UV - UV -Face 848 -UV Count: 3 - UV - UV - UV -Face 849 -UV Count: 3 - UV - UV - UV -Face 850 -UV Count: 3 - UV - UV - UV -Face 851 -UV Count: 3 - UV - UV - UV -Face 852 -UV Count: 3 - UV - UV - UV -Face 853 -UV Count: 3 - UV - UV - UV -Face 854 -UV Count: 3 - UV - UV - UV -Face 855 -UV Count: 3 - UV - UV - UV -Face 856 -UV Count: 3 - UV - UV - UV -Face 857 -UV Count: 3 - UV - UV - UV -Face 858 -UV Count: 3 - UV - UV - UV -Face 859 -UV Count: 3 - UV - UV - UV -Face 860 -UV Count: 3 - UV - UV - UV -Face 861 -UV Count: 3 - UV - UV - UV -Face 862 -UV Count: 3 - UV - UV - UV -Face 863 -UV Count: 3 - UV - UV - UV -Face 864 -UV Count: 3 - UV - UV - UV -Face 865 -UV Count: 3 - UV - UV - UV -Face 866 -UV Count: 3 - UV - UV - UV -Face 867 -UV Count: 3 - UV - UV - UV -Face 868 -UV Count: 3 - UV - UV - UV -Face 869 -UV Count: 3 - UV - UV - UV -Face 870 -UV Count: 3 - UV - UV - UV -Face 871 -UV Count: 3 - UV - UV - UV -Face 872 -UV Count: 3 - UV - UV - UV -Face 873 -UV Count: 3 - UV - UV - UV -Face 874 -UV Count: 3 - UV - UV - UV -Face 875 -UV Count: 3 - UV - UV - UV -Face 876 -UV Count: 3 - UV - UV - UV -Face 877 -UV Count: 3 - UV - UV - UV -Face 878 -UV Count: 3 - UV - UV - UV -Face 879 -UV Count: 3 - UV - UV - UV -Face 880 -UV Count: 3 - UV - UV - UV -Face 881 -UV Count: 3 - UV - UV - UV -Face 882 -UV Count: 3 - UV - UV - UV -Face 883 -UV Count: 3 - UV - UV - UV -Face 884 -UV Count: 3 - UV - UV - UV -Face 885 -UV Count: 3 - UV - UV - UV -Face 886 -UV Count: 3 - UV - UV - UV -Face 887 -UV Count: 3 - UV - UV - UV -Face 888 -UV Count: 3 - UV - UV - UV -Face 889 -UV Count: 3 - UV - UV - UV -Face 890 -UV Count: 3 - UV - UV - UV -Face 891 -UV Count: 3 - UV - UV - UV -Face 892 -UV Count: 3 - UV - UV - UV -Face 893 -UV Count: 3 - UV - UV - UV -Face 894 -UV Count: 3 - UV - UV - UV -Face 895 -UV Count: 3 - UV - UV - UV -Face 896 -UV Count: 3 - UV - UV - UV -Face 897 -UV Count: 3 - UV - UV - UV -Face 898 -UV Count: 3 - UV - UV - UV -Face 899 -UV Count: 3 - UV - UV - UV -Face 900 -UV Count: 3 - UV - UV - UV -Face 901 -UV Count: 3 - UV - UV - UV -Face 902 -UV Count: 3 - UV - UV - UV -Face 903 -UV Count: 3 - UV - UV - UV -Face 904 -UV Count: 3 - UV - UV - UV -Face 905 -UV Count: 3 - UV - UV - UV -Face 906 -UV Count: 3 - UV - UV - UV -Face 907 -UV Count: 3 - UV - UV - UV -Face 908 -UV Count: 3 - UV - UV - UV -Face 909 -UV Count: 3 - UV - UV - UV -Face 910 -UV Count: 3 - UV - UV - UV -Face 911 -UV Count: 3 - UV - UV - UV -Face 912 -UV Count: 3 - UV - UV - UV -Face 913 -UV Count: 3 - UV - UV - UV -Face 914 -UV Count: 3 - UV - UV - UV -Face 915 -UV Count: 3 - UV - UV - UV -Face 916 -UV Count: 3 - UV - UV - UV -Face 917 -UV Count: 3 - UV - UV - UV -Face 918 -UV Count: 3 - UV - UV - UV -Face 919 -UV Count: 3 - UV - UV - UV -Face 920 -UV Count: 3 - UV - UV - UV -Face 921 -UV Count: 3 - UV - UV - UV -Face 922 -UV Count: 3 - UV - UV - UV -Face 923 -UV Count: 3 - UV - UV - UV -Face 924 -UV Count: 3 - UV - UV - UV -Face 925 -UV Count: 3 - UV - UV - UV -Face 926 -UV Count: 3 - UV - UV - UV -Face 927 -UV Count: 3 - UV - UV - UV -Face 928 -UV Count: 3 - UV - UV - UV -Face 929 -UV Count: 3 - UV - UV - UV -Face 930 -UV Count: 3 - UV - UV - UV -Face 931 -UV Count: 3 - UV - UV - UV -Face 932 -UV Count: 3 - UV - UV - UV -Face 933 -UV Count: 3 - UV - UV - UV -Face 934 -UV Count: 3 - UV - UV - UV -Face 935 -UV Count: 3 - UV - UV - UV -Face 936 -UV Count: 3 - UV - UV - UV -Face 937 -UV Count: 3 - UV - UV - UV -Face 938 -UV Count: 3 - UV - UV - UV -Face 939 -UV Count: 3 - UV - UV - UV -Face 940 -UV Count: 3 - UV - UV - UV -Face 941 -UV Count: 3 - UV - UV - UV -Face 942 -UV Count: 3 - UV - UV - UV -Face 943 -UV Count: 3 - UV - UV - UV -Face 944 -UV Count: 3 - UV - UV - UV -Face 945 -UV Count: 3 - UV - UV - UV -Face 946 -UV Count: 3 - UV - UV - UV -Face 947 -UV Count: 3 - UV - UV - UV -Face 948 -UV Count: 3 - UV - UV - UV -Face 949 -UV Count: 3 - UV - UV - UV -Face 950 -UV Count: 3 - UV - UV - UV -Face 951 -UV Count: 3 - UV - UV - UV -Face 952 -UV Count: 3 - UV - UV - UV -Face 953 -UV Count: 3 - UV - UV - UV -Face 954 -UV Count: 3 - UV - UV - UV -Face 955 -UV Count: 3 - UV - UV - UV -Face 956 -UV Count: 3 - UV - UV - UV -Face 957 -UV Count: 3 - UV - UV - UV -Face 958 -UV Count: 3 - UV - UV - UV -Face 959 -UV Count: 3 - UV - UV - UV -Face 960 -UV Count: 3 - UV - UV - UV -Face 961 -UV Count: 3 - UV - UV - UV -Face 962 -UV Count: 3 - UV - UV - UV -Face 963 -UV Count: 3 - UV - UV - UV -Face 964 -UV Count: 3 - UV - UV - UV -Face 965 -UV Count: 3 - UV - UV - UV -Face 966 -UV Count: 3 - UV - UV - UV -Face 967 -UV Count: 3 - UV - UV - UV -Face 968 -UV Count: 3 - UV - UV - UV -Face 969 -UV Count: 3 - UV - UV - UV -Face 970 -UV Count: 3 - UV - UV - UV -Face 971 -UV Count: 3 - UV - UV - UV -Face 972 -UV Count: 3 - UV - UV - UV -Face 973 -UV Count: 3 - UV - UV - UV -Face 974 -UV Count: 3 - UV - UV - UV -Face 975 -UV Count: 3 - UV - UV - UV -Face 976 -UV Count: 3 - UV - UV - UV -Face 977 -UV Count: 3 - UV - UV - UV -Face 978 -UV Count: 3 - UV - UV - UV -Face 979 -UV Count: 3 - UV - UV - UV -Face 980 -UV Count: 3 - UV - UV - UV -Face 981 -UV Count: 3 - UV - UV - UV -Face 982 -UV Count: 3 - UV - UV - UV -Face 983 -UV Count: 3 - UV - UV - UV -Face 984 -UV Count: 3 - UV - UV - UV -Face 985 -UV Count: 3 - UV - UV - UV -Face 986 -UV Count: 3 - UV - UV - UV -Face 987 -UV Count: 3 - UV - UV - UV -Face 988 -UV Count: 3 - UV - UV - UV -Face 989 -UV Count: 3 - UV - UV - UV -Face 990 -UV Count: 3 - UV - UV - UV -Face 991 -UV Count: 3 - UV - UV - UV -Face 992 -UV Count: 3 - UV - UV - UV -Face 993 -UV Count: 3 - UV - UV - UV -Face 994 -UV Count: 3 - UV - UV - UV -Face 995 -UV Count: 3 - UV - UV - UV -Face 996 -UV Count: 3 - UV - UV - UV -Face 997 -UV Count: 3 - UV - UV - UV -Face 998 -UV Count: 3 - UV - UV - UV -Face 999 -UV Count: 3 - UV - UV - UV -Face 1000 -UV Count: 3 - UV - UV - UV -Face 1001 -UV Count: 3 - UV - UV - UV -Face 1002 -UV Count: 3 - UV - UV - UV -Face 1003 -UV Count: 3 - UV - UV - UV -Face 1004 -UV Count: 3 - UV - UV - UV -Face 1005 -UV Count: 3 - UV - UV - UV -Face 1006 -UV Count: 3 - UV - UV - UV -Face 1007 -UV Count: 3 - UV - UV - UV -Face 1008 -UV Count: 3 - UV - UV - UV -Face 1009 -UV Count: 3 - UV - UV - UV -Face 1010 -UV Count: 3 - UV - UV - UV -Face 1011 -UV Count: 3 - UV - UV - UV -Face 1012 -UV Count: 3 - UV - UV - UV -Face 1013 -UV Count: 3 - UV - UV - UV -Face 1014 -UV Count: 3 - UV - UV - UV -Face 1015 -UV Count: 3 - UV - UV - UV -Face 1016 -UV Count: 3 - UV - UV - UV -Face 1017 -UV Count: 3 - UV - UV - UV -Face 1018 -UV Count: 3 - UV - UV - UV -Face 1019 -UV Count: 3 - UV - UV - UV -Face 1020 -UV Count: 3 - UV - UV - UV -Face 1021 -UV Count: 3 - UV - UV - UV -Face 1022 -UV Count: 3 - UV - UV - UV -Face 1023 -UV Count: 3 - UV - UV - UV -Face 1024 -UV Count: 3 - UV - UV - UV -Face 1025 -UV Count: 3 - UV - UV - UV -Face 1026 -UV Count: 3 - UV - UV - UV -Face 1027 -UV Count: 3 - UV - UV - UV -Face 1028 -UV Count: 3 - UV - UV - UV -Face 1029 -UV Count: 3 - UV - UV - UV -Face 1030 -UV Count: 3 - UV - UV - UV -Face 1031 -UV Count: 3 - UV - UV - UV -Face 1032 -UV Count: 3 - UV - UV - UV -Face 1033 -UV Count: 3 - UV - UV - UV -Face 1034 -UV Count: 3 - UV - UV - UV -Face 1035 -UV Count: 3 - UV - UV - UV -Face 1036 -UV Count: 3 - UV - UV - UV -Face 1037 -UV Count: 3 - UV - UV - UV -Face 1038 -UV Count: 3 - UV - UV - UV -Face 1039 -UV Count: 3 - UV - UV - UV -Face 1040 -UV Count: 3 - UV - UV - UV -Face 1041 -UV Count: 3 - UV - UV - UV -Face 1042 -UV Count: 3 - UV - UV - UV -Face 1043 -UV Count: 3 - UV - UV - UV -Face 1044 -UV Count: 3 - UV - UV - UV -Face 1045 -UV Count: 3 - UV - UV - UV -Face 1046 -UV Count: 3 - UV - UV - UV -Face 1047 -UV Count: 3 - UV - UV - UV -Face 1048 -UV Count: 3 - UV - UV - UV -Face 1049 -UV Count: 3 - UV - UV - UV -Face 1050 -UV Count: 3 - UV - UV - UV -Face 1051 -UV Count: 3 - UV - UV - UV -Face 1052 -UV Count: 3 - UV - UV - UV -Face 1053 -UV Count: 3 - UV - UV - UV -Face 1054 -UV Count: 3 - UV - UV - UV -Face 1055 -UV Count: 3 - UV - UV - UV -Face 1056 -UV Count: 3 - UV - UV - UV -Face 1057 -UV Count: 3 - UV - UV - UV -Face 1058 -UV Count: 3 - UV - UV - UV -Face 1059 -UV Count: 3 - UV - UV - UV -Face 1060 -UV Count: 3 - UV - UV - UV -Face 1061 -UV Count: 3 - UV - UV - UV -Face 1062 -UV Count: 3 - UV - UV - UV -Face 1063 -UV Count: 3 - UV - UV - UV -Face 1064 -UV Count: 3 - UV - UV - UV -Face 1065 -UV Count: 3 - UV - UV - UV -Face 1066 -UV Count: 3 - UV - UV - UV -Face 1067 -UV Count: 3 - UV - UV - UV -Face 1068 -UV Count: 3 - UV - UV - UV -Face 1069 -UV Count: 3 - UV - UV - UV -Face 1070 -UV Count: 3 - UV - UV - UV -Face 1071 -UV Count: 3 - UV - UV - UV -Face 1072 -UV Count: 3 - UV - UV - UV -Face 1073 -UV Count: 3 - UV - UV - UV -Face 1074 -UV Count: 3 - UV - UV - UV -Face 1075 -UV Count: 3 - UV - UV - UV -Face 1076 -UV Count: 3 - UV - UV - UV -Face 1077 -UV Count: 3 - UV - UV - UV -Face 1078 -UV Count: 3 - UV - UV - UV -Face 1079 -UV Count: 3 - UV - UV - UV -Face 1080 -UV Count: 3 - UV - UV - UV -Face 1081 -UV Count: 3 - UV - UV - UV -Face 1082 -UV Count: 3 - UV - UV - UV -Face 1083 -UV Count: 3 - UV - UV - UV -Face 1084 -UV Count: 3 - UV - UV - UV -Face 1085 -UV Count: 3 - UV - UV - UV -Face 1086 -UV Count: 3 - UV - UV - UV -Face 1087 -UV Count: 3 - UV - UV - UV -Face 1088 -UV Count: 3 - UV - UV - UV -Face 1089 -UV Count: 3 - UV - UV - UV -Face 1090 -UV Count: 3 - UV - UV - UV -Face 1091 -UV Count: 3 - UV - UV - UV -Face 1092 -UV Count: 3 - UV - UV - UV -Face 1093 -UV Count: 3 - UV - UV - UV -Face 1094 -UV Count: 3 - UV - UV - UV -Face 1095 -UV Count: 3 - UV - UV - UV -Face 1096 -UV Count: 3 - UV - UV - UV -Face 1097 -UV Count: 3 - UV - UV - UV -Face 1098 -UV Count: 3 - UV - UV - UV -Face 1099 -UV Count: 3 - UV - UV - UV -Face 1100 -UV Count: 3 - UV - UV - UV -Face 1101 -UV Count: 3 - UV - UV - UV -Face 1102 -UV Count: 3 - UV - UV - UV -Face 1103 -UV Count: 3 - UV - UV - UV -Face 1104 -UV Count: 3 - UV - UV - UV -Face 1105 -UV Count: 3 - UV - UV - UV -Face 1106 -UV Count: 3 - UV - UV - UV -Face 1107 -UV Count: 3 - UV - UV - UV -Face 1108 -UV Count: 3 - UV - UV - UV -Face 1109 -UV Count: 3 - UV - UV - UV -Face 1110 -UV Count: 3 - UV - UV - UV -Face 1111 -UV Count: 3 - UV - UV - UV -Face 1112 -UV Count: 3 - UV - UV - UV -Face 1113 -UV Count: 3 - UV - UV - UV -Face 1114 -UV Count: 3 - UV - UV - UV -Face 1115 -UV Count: 3 - UV - UV - UV -Face 1116 -UV Count: 3 - UV - UV - UV -Face 1117 -UV Count: 3 - UV - UV - UV -Face 1118 -UV Count: 3 - UV - UV - UV -Face 1119 -UV Count: 3 - UV - UV - UV -Face 1120 -UV Count: 3 - UV - UV - UV -Face 1121 -UV Count: 3 - UV - UV - UV -Face 1122 -UV Count: 3 - UV - UV - UV -Face 1123 -UV Count: 3 - UV - UV - UV -Face 1124 -UV Count: 3 - UV - UV - UV -Face 1125 -UV Count: 3 - UV - UV - UV -Face 1126 -UV Count: 3 - UV - UV - UV -Face 1127 -UV Count: 3 - UV - UV - UV -Face 1128 -UV Count: 3 - UV - UV - UV -Face 1129 -UV Count: 3 - UV - UV - UV -Face 1130 -UV Count: 3 - UV - UV - UV -Face 1131 -UV Count: 3 - UV - UV - UV -Face 1132 -UV Count: 3 - UV - UV - UV -Face 1133 -UV Count: 3 - UV - UV - UV -Face 1134 -UV Count: 3 - UV - UV - UV -Face 1135 -UV Count: 3 - UV - UV - UV -Face 1136 -UV Count: 3 - UV - UV - UV -Face 1137 -UV Count: 3 - UV - UV - UV -Face 1138 -UV Count: 3 - UV - UV - UV -Face 1139 -UV Count: 3 - UV - UV - UV -Face 1140 -UV Count: 3 - UV - UV - UV -Face 1141 -UV Count: 3 - UV - UV - UV -Face 1142 -UV Count: 3 - UV - UV - UV -Face 1143 -UV Count: 3 - UV - UV - UV -Face 1144 -UV Count: 3 - UV - UV - UV -Face 1145 -UV Count: 3 - UV - UV - UV -Face 1146 -UV Count: 3 - UV - UV - UV -Face 1147 -UV Count: 3 - UV - UV - UV -Face 1148 -UV Count: 3 - UV - UV - UV -Face 1149 -UV Count: 3 - UV - UV - UV -Face 1150 -UV Count: 3 - UV - UV - UV -Face 1151 -UV Count: 3 - UV - UV - UV -Face 1152 -UV Count: 3 - UV - UV - UV -Face 1153 -UV Count: 3 - UV - UV - UV -Face 1154 -UV Count: 3 - UV - UV - UV -Face 1155 -UV Count: 3 - UV - UV - UV -Face 1156 -UV Count: 3 - UV - UV - UV -Face 1157 -UV Count: 3 - UV - UV - UV -Face 1158 -UV Count: 3 - UV - UV - UV -Face 1159 -UV Count: 3 - UV - UV - UV -Face 1160 -UV Count: 3 - UV - UV - UV -Face 1161 -UV Count: 3 - UV - UV - UV -Face 1162 -UV Count: 3 - UV - UV - UV -Face 1163 -UV Count: 3 - UV - UV - UV -Face 1164 -UV Count: 3 - UV - UV - UV -Face 1165 -UV Count: 3 - UV - UV - UV -Face 1166 -UV Count: 3 - UV - UV - UV -Face 1167 -UV Count: 3 - UV - UV - UV -Face 1168 -UV Count: 3 - UV - UV - UV -Face 1169 -UV Count: 3 - UV - UV - UV -Face 1170 -UV Count: 3 - UV - UV - UV -Face 1171 -UV Count: 3 - UV - UV - UV -Face 1172 -UV Count: 3 - UV - UV - UV -Face 1173 -UV Count: 3 - UV - UV - UV -Face 1174 -UV Count: 3 - UV - UV - UV -Face 1175 -UV Count: 3 - UV - UV - UV -Face 1176 -UV Count: 3 - UV - UV - UV -Face 1177 -UV Count: 3 - UV - UV - UV -Face 1178 -UV Count: 3 - UV - UV - UV -Face 1179 -UV Count: 3 - UV - UV - UV -Face 1180 -UV Count: 3 - UV - UV - UV -Face 1181 -UV Count: 3 - UV - UV - UV -Face 1182 -UV Count: 3 - UV - UV - UV -Face 1183 -UV Count: 3 - UV - UV - UV -Face 1184 -UV Count: 3 - UV - UV - UV -Face 1185 -UV Count: 3 - UV - UV - UV -Face 1186 -UV Count: 3 - UV - UV - UV -Face 1187 -UV Count: 3 - UV - UV - UV -Face 1188 -UV Count: 3 - UV - UV - UV -Face 1189 -UV Count: 3 - UV - UV - UV -Face 1190 -UV Count: 3 - UV - UV - UV -Face 1191 -UV Count: 3 - UV - UV - UV -Face 1192 -UV Count: 3 - UV - UV - UV -Face 1193 -UV Count: 3 - UV - UV - UV -Face 1194 -UV Count: 3 - UV - UV - UV -Face 1195 -UV Count: 3 - UV - UV - UV -Face 1196 -UV Count: 3 - UV - UV - UV -Face 1197 -UV Count: 3 - UV - UV - UV -Face 1198 -UV Count: 3 - UV - UV - UV -Face 1199 -UV Count: 3 - UV - UV - UV -Face 1200 -UV Count: 3 - UV - UV - UV -Face 1201 -UV Count: 3 - UV - UV - UV -Face 1202 -UV Count: 3 - UV - UV - UV -Face 1203 -UV Count: 3 - UV - UV - UV -Face 1204 -UV Count: 3 - UV - UV - UV -Face 1205 -UV Count: 3 - UV - UV - UV -Face 1206 -UV Count: 3 - UV - UV - UV -Face 1207 -UV Count: 3 - UV - UV - UV -Face 1208 -UV Count: 3 - UV - UV - UV -Face 1209 -UV Count: 3 - UV - UV - UV -Face 1210 -UV Count: 3 - UV - UV - UV -Face 1211 -UV Count: 3 - UV - UV - UV -Face 1212 -UV Count: 3 - UV - UV - UV -Face 1213 -UV Count: 3 - UV - UV - UV -Face 1214 -UV Count: 3 - UV - UV - UV -Face 1215 -UV Count: 3 - UV - UV - UV -Face 1216 -UV Count: 3 - UV - UV - UV -Face 1217 -UV Count: 3 - UV - UV - UV -Face 1218 -UV Count: 3 - UV - UV - UV -Face 1219 -UV Count: 3 - UV - UV - UV -Face 1220 -UV Count: 3 - UV - UV - UV -Face 1221 -UV Count: 3 - UV - UV - UV -Face 1222 -UV Count: 3 - UV - UV - UV -Face 1223 -UV Count: 3 - UV - UV - UV -Face 1224 -UV Count: 3 - UV - UV - UV -Face 1225 -UV Count: 3 - UV - UV - UV -Face 1226 -UV Count: 3 - UV - UV - UV -Face 1227 -UV Count: 3 - UV - UV - UV -Face 1228 -UV Count: 3 - UV - UV - UV -Face 1229 -UV Count: 3 - UV - UV - UV -Face 1230 -UV Count: 3 - UV - UV - UV -Face 1231 -UV Count: 3 - UV - UV - UV -Face 1232 -UV Count: 3 - UV - UV - UV -Face 1233 -UV Count: 3 - UV - UV - UV -Face 1234 -UV Count: 3 - UV - UV - UV -Face 1235 -UV Count: 3 - UV - UV - UV -Face 1236 -UV Count: 3 - UV - UV - UV -Face 1237 -UV Count: 3 - UV - UV - UV -Face 1238 -UV Count: 3 - UV - UV - UV -Face 1239 -UV Count: 3 - UV - UV - UV -Face 1240 -UV Count: 3 - UV - UV - UV -Face 1241 -UV Count: 3 - UV - UV - UV -Face 1242 -UV Count: 3 - UV - UV - UV -Face 1243 -UV Count: 3 - UV - UV - UV -Face 1244 -UV Count: 3 - UV - UV - UV -Face 1245 -UV Count: 3 - UV - UV - UV -Face 1246 -UV Count: 3 - UV - UV - UV -Face 1247 -UV Count: 3 - UV - UV - UV -Face 1248 -UV Count: 3 - UV - UV - UV -Face 1249 -UV Count: 3 - UV - UV - UV -Face 1250 -UV Count: 3 - UV - UV - UV -Face 1251 -UV Count: 3 - UV - UV - UV -Face 1252 -UV Count: 3 - UV - UV - UV -Face 1253 -UV Count: 3 - UV - UV - UV -Face 1254 -UV Count: 3 - UV - UV - UV -Face 1255 -UV Count: 3 - UV - UV - UV -Face 1256 -UV Count: 3 - UV - UV - UV -Face 1257 -UV Count: 3 - UV - UV - UV -Face 1258 -UV Count: 3 - UV - UV - UV -Face 1259 -UV Count: 3 - UV - UV - UV -Face 1260 -UV Count: 3 - UV - UV - UV -Face 1261 -UV Count: 3 - UV - UV - UV -Face 1262 -UV Count: 3 - UV - UV - UV -Face 1263 -UV Count: 3 - UV - UV - UV -Face 1264 -UV Count: 3 - UV - UV - UV -Face 1265 -UV Count: 3 - UV - UV - UV -Face 1266 -UV Count: 3 - UV - UV - UV -Face 1267 -UV Count: 3 - UV - UV - UV -Face 1268 -UV Count: 3 - UV - UV - UV -Face 1269 -UV Count: 3 - UV - UV - UV -Face 1270 -UV Count: 3 - UV - UV - UV -Face 1271 -UV Count: 3 - UV - UV - UV -Face 1272 -UV Count: 3 - UV - UV - UV -Face 1273 -UV Count: 3 - UV - UV - UV -Face 1274 -UV Count: 3 - UV - UV - UV -Face 1275 -UV Count: 3 - UV - UV - UV -Face 1276 -UV Count: 3 - UV - UV - UV -Face 1277 -UV Count: 3 - UV - UV - UV -Face 1278 -UV Count: 3 - UV - UV - UV -Face 1279 -UV Count: 3 - UV - UV - UV -Face 1280 -UV Count: 3 - UV - UV - UV -Face 1281 -UV Count: 3 - UV - UV - UV -Face 1282 -UV Count: 3 - UV - UV - UV -Face 1283 -UV Count: 3 - UV - UV - UV -Face 1284 -UV Count: 3 - UV - UV - UV -Face 1285 -UV Count: 3 - UV - UV - UV -Face 1286 -UV Count: 3 - UV - UV - UV -Face 1287 -UV Count: 3 - UV - UV - UV -Face 1288 -UV Count: 3 - UV - UV - UV -Face 1289 -UV Count: 3 - UV - UV - UV -Face 1290 -UV Count: 3 - UV - UV - UV -Face 1291 -UV Count: 3 - UV - UV - UV -Face 1292 -UV Count: 3 - UV - UV - UV -Face 1293 -UV Count: 3 - UV - UV - UV -Face 1294 -UV Count: 3 - UV - UV - UV -Face 1295 -UV Count: 3 - UV - UV - UV -Face 1296 -UV Count: 3 - UV - UV - UV -Face 1297 -UV Count: 3 - UV - UV - UV -Face 1298 -UV Count: 3 - UV - UV - UV -Face 1299 -UV Count: 3 - UV - UV - UV -Face 1300 -UV Count: 3 - UV - UV - UV -Face 1301 -UV Count: 3 - UV - UV - UV -Face 1302 -UV Count: 3 - UV - UV - UV -Face 1303 -UV Count: 3 - UV - UV - UV -Face 1304 -UV Count: 3 - UV - UV - UV -Face 1305 -UV Count: 3 - UV - UV - UV -Face 1306 -UV Count: 3 - UV - UV - UV -Face 1307 -UV Count: 3 - UV - UV - UV -Face 1308 -UV Count: 3 - UV - UV - UV -Face 1309 -UV Count: 3 - UV - UV - UV -Face 1310 -UV Count: 3 - UV - UV - UV -Face 1311 -UV Count: 3 - UV - UV - UV -Face 1312 -UV Count: 3 - UV - UV - UV -Face 1313 -UV Count: 3 - UV - UV - UV -Face 1314 -UV Count: 3 - UV - UV - UV -Face 1315 -UV Count: 3 - UV - UV - UV -Face 1316 -UV Count: 3 - UV - UV - UV -Face 1317 -UV Count: 3 - UV - UV - UV -Face 1318 -UV Count: 3 - UV - UV - UV -Face 1319 -UV Count: 3 - UV - UV - UV -Face 1320 -UV Count: 3 - UV - UV - UV -Face 1321 -UV Count: 3 - UV - UV - UV -Face 1322 -UV Count: 3 - UV - UV - UV -Face 1323 -UV Count: 3 - UV - UV - UV -Face 1324 -UV Count: 3 - UV - UV - UV -Face 1325 -UV Count: 3 - UV - UV - UV -Face 1326 -UV Count: 3 - UV - UV - UV -Face 1327 -UV Count: 3 - UV - UV - UV -Face 1328 -UV Count: 3 - UV - UV - UV -Face 1329 -UV Count: 3 - UV - UV - UV -Face 1330 -UV Count: 3 - UV - UV - UV -Face 1331 -UV Count: 3 - UV - UV - UV -Face 1332 -UV Count: 3 - UV - UV - UV -Face 1333 -UV Count: 3 - UV - UV - UV -Face 1334 -UV Count: 3 - UV - UV - UV -Face 1335 -UV Count: 3 - UV - UV - UV -Face 1336 -UV Count: 3 - UV - UV - UV -Face 1337 -UV Count: 3 - UV - UV - UV -Face 1338 -UV Count: 3 - UV - UV - UV -Face 1339 -UV Count: 3 - UV - UV - UV -Face 1340 -UV Count: 3 - UV - UV - UV -Face 1341 -UV Count: 3 - UV - UV - UV -Face 1342 -UV Count: 3 - UV - UV - UV -Face 1343 -UV Count: 3 - UV - UV - UV -Face 1344 -UV Count: 3 - UV - UV - UV -Face 1345 -UV Count: 3 - UV - UV - UV -Face 1346 -UV Count: 3 - UV - UV - UV -Face 1347 -UV Count: 3 - UV - UV - UV -Face 1348 -UV Count: 3 - UV - UV - UV -Face 1349 -UV Count: 3 - UV - UV - UV -Face 1350 -UV Count: 3 - UV - UV - UV -Face 1351 -UV Count: 3 - UV - UV - UV -Face 1352 -UV Count: 3 - UV - UV - UV -Face 1353 -UV Count: 3 - UV - UV - UV -Face 1354 -UV Count: 3 - UV - UV - UV -Face 1355 -UV Count: 3 - UV - UV - UV -Face 1356 -UV Count: 3 - UV - UV - UV -Face 1357 -UV Count: 3 - UV - UV - UV -Face 1358 -UV Count: 3 - UV - UV - UV -Face 1359 -UV Count: 3 - UV - UV - UV -Face 1360 -UV Count: 3 - UV - UV - UV -Face 1361 -UV Count: 3 - UV - UV - UV -Face 1362 -UV Count: 3 - UV - UV - UV -Face 1363 -UV Count: 3 - UV - UV - UV -Face 1364 -UV Count: 3 - UV - UV - UV -Face 1365 -UV Count: 3 - UV - UV - UV -Face 1366 -UV Count: 3 - UV - UV - UV -Face 1367 -UV Count: 3 - UV - UV - UV -Face 1368 -UV Count: 3 - UV - UV - UV -Face 1369 -UV Count: 3 - UV - UV - UV -Face 1370 -UV Count: 3 - UV - UV - UV -Face 1371 -UV Count: 3 - UV - UV - UV -Face 1372 -UV Count: 3 - UV - UV - UV -Face 1373 -UV Count: 3 - UV - UV - UV -Face 1374 -UV Count: 3 - UV - UV - UV -Face 1375 -UV Count: 3 - UV - UV - UV -Face 1376 -UV Count: 3 - UV - UV - UV -Face 1377 -UV Count: 3 - UV - UV - UV -Face 1378 -UV Count: 3 - UV - UV - UV -Face 1379 -UV Count: 3 - UV - UV - UV -Face 1380 -UV Count: 3 - UV - UV - UV -Face 1381 -UV Count: 3 - UV - UV - UV -Face 1382 -UV Count: 3 - UV - UV - UV -Face 1383 -UV Count: 3 - UV - UV - UV -Face 1384 -UV Count: 3 - UV - UV - UV -Face 1385 -UV Count: 3 - UV - UV - UV -Face 1386 -UV Count: 3 - UV - UV - UV -Face 1387 -UV Count: 3 - UV - UV - UV -Face 1388 -UV Count: 3 - UV - UV - UV -Face 1389 -UV Count: 3 - UV - UV - UV -Face 1390 -UV Count: 3 - UV - UV - UV -Face 1391 -UV Count: 3 - UV - UV - UV -Face 1392 -UV Count: 3 - UV - UV - UV -Face 1393 -UV Count: 3 - UV - UV - UV -Face 1394 -UV Count: 3 - UV - UV - UV -Face 1395 -UV Count: 3 - UV - UV - UV -Face 1396 -UV Count: 3 - UV - UV - UV -Face 1397 -UV Count: 3 - UV - UV - UV -Face 1398 -UV Count: 3 - UV - UV - UV -Face 1399 -UV Count: 3 - UV - UV - UV -Face 1400 -UV Count: 3 - UV - UV - UV -Face 1401 -UV Count: 3 - UV - UV - UV -Face 1402 -UV Count: 3 - UV - UV - UV -Face 1403 -UV Count: 3 - UV - UV - UV -Face 1404 -UV Count: 3 - UV - UV - UV -Face 1405 -UV Count: 3 - UV - UV - UV -Face 1406 -UV Count: 3 - UV - UV - UV -Face 1407 -UV Count: 3 - UV - UV - UV -Face 1408 -UV Count: 3 - UV - UV - UV -Face 1409 -UV Count: 3 - UV - UV - UV -Face 1410 -UV Count: 3 - UV - UV - UV -Face 1411 -UV Count: 3 - UV - UV - UV -Face 1412 -UV Count: 3 - UV - UV - UV -Face 1413 -UV Count: 3 - UV - UV - UV -Face 1414 -UV Count: 3 - UV - UV - UV -Face 1415 -UV Count: 3 - UV - UV - UV -Face 1416 -UV Count: 3 - UV - UV - UV -Face 1417 -UV Count: 3 - UV - UV - UV -Face 1418 -UV Count: 3 - UV - UV - UV -Face 1419 -UV Count: 3 - UV - UV - UV -Face 1420 -UV Count: 3 - UV - UV - UV -Face 1421 -UV Count: 3 - UV - UV - UV -Face 1422 -UV Count: 3 - UV - UV - UV -Face 1423 -UV Count: 3 - UV - UV - UV -Face 1424 -UV Count: 3 - UV - UV - UV -Face 1425 -UV Count: 3 - UV - UV - UV -Face 1426 -UV Count: 3 - UV - UV - UV -Face 1427 -UV Count: 3 - UV - UV - UV -Face 1428 -UV Count: 3 - UV - UV - UV -Face 1429 -UV Count: 3 - UV - UV - UV -Face 1430 -UV Count: 3 - UV - UV - UV -Face 1431 -UV Count: 3 - UV - UV - UV -Face 1432 -UV Count: 3 - UV - UV - UV -Face 1433 -UV Count: 3 - UV - UV - UV -Face 1434 -UV Count: 3 - UV - UV - UV -Face 1435 -UV Count: 3 - UV - UV - UV -Face 1436 -UV Count: 3 - UV - UV - UV -Face 1437 -UV Count: 3 - UV - UV - UV -Face 1438 -UV Count: 3 - UV - UV - UV -Face 1439 -UV Count: 3 - UV - UV - UV -Face 1440 -UV Count: 3 - UV - UV - UV -Face 1441 -UV Count: 3 - UV - UV - UV -Face 1442 -UV Count: 3 - UV - UV - UV -Face 1443 -UV Count: 3 - UV - UV - UV -Face 1444 -UV Count: 3 - UV - UV - UV -Face 1445 -UV Count: 3 - UV - UV - UV -Face 1446 -UV Count: 3 - UV - UV - UV -Face 1447 -UV Count: 3 - UV - UV - UV -Face 1448 -UV Count: 3 - UV - UV - UV -Face 1449 -UV Count: 3 - UV - UV - UV -Face 1450 -UV Count: 3 - UV - UV - UV -Face 1451 -UV Count: 3 - UV - UV - UV -Face 1452 -UV Count: 3 - UV - UV - UV -Face 1453 -UV Count: 3 - UV - UV - UV -Face 1454 -UV Count: 3 - UV - UV - UV -Face 1455 -UV Count: 3 - UV - UV - UV -Face 1456 -UV Count: 3 - UV - UV - UV -Face 1457 -UV Count: 3 - UV - UV - UV -Face 1458 -UV Count: 3 - UV - UV - UV -Face 1459 -UV Count: 3 - UV - UV - UV -Face 1460 -UV Count: 3 - UV - UV - UV -Face 1461 -UV Count: 3 - UV - UV - UV -Face 1462 -UV Count: 3 - UV - UV - UV -Face 1463 -UV Count: 3 - UV - UV - UV -Face 1464 -UV Count: 3 - UV - UV - UV -Face 1465 -UV Count: 3 - UV - UV - UV -Face 1466 -UV Count: 3 - UV - UV - UV -Face 1467 -UV Count: 3 - UV - UV - UV -Face 1468 -UV Count: 3 - UV - UV - UV -Face 1469 -UV Count: 3 - UV - UV - UV -Face 1470 -UV Count: 3 - UV - UV - UV -Face 1471 -UV Count: 3 - UV - UV - UV -Face 1472 -UV Count: 3 - UV - UV - UV -Face 1473 -UV Count: 3 - UV - UV - UV -Face 1474 -UV Count: 3 - UV - UV - UV -Face 1475 -UV Count: 3 - UV - UV - UV -Face 1476 -UV Count: 3 - UV - UV - UV -Face 1477 -UV Count: 3 - UV - UV - UV -Face 1478 -UV Count: 3 - UV - UV - UV -Face 1479 -UV Count: 3 - UV - UV - UV -Face 1480 -UV Count: 3 - UV - UV - UV -Face 1481 -UV Count: 3 - UV - UV - UV -Face 1482 -UV Count: 3 - UV - UV - UV -Face 1483 -UV Count: 3 - UV - UV - UV -Face 1484 -UV Count: 3 - UV - UV - UV -Face 1485 -UV Count: 3 - UV - UV - UV -Face 1486 -UV Count: 3 - UV - UV - UV -Face 1487 -UV Count: 3 - UV - UV - UV -Face 1488 -UV Count: 3 - UV - UV - UV -Face 1489 -UV Count: 3 - UV - UV - UV -Face 1490 -UV Count: 3 - UV - UV - UV -Face 1491 -UV Count: 3 - UV - UV - UV -Face 1492 -UV Count: 3 - UV - UV - UV -Face 1493 -UV Count: 3 - UV - UV - UV -Face 1494 -UV Count: 3 - UV - UV - UV -Face 1495 -UV Count: 3 - UV - UV - UV -Face 1496 -UV Count: 3 - UV - UV - UV -Face 1497 -UV Count: 3 - UV - UV - UV -Face 1498 -UV Count: 3 - UV - UV - UV -Face 1499 -UV Count: 3 - UV - UV - UV -Face 1500 -UV Count: 3 - UV - UV - UV -Face 1501 -UV Count: 3 - UV - UV - UV -Face 1502 -UV Count: 3 - UV - UV - UV -Face 1503 -UV Count: 3 - UV - UV - UV -Face 1504 -UV Count: 3 - UV - UV - UV -Face 1505 -UV Count: 3 - UV - UV - UV -Face 1506 -UV Count: 3 - UV - UV - UV -Face 1507 -UV Count: 3 - UV - UV - UV -Face 1508 -UV Count: 3 - UV - UV - UV -Face 1509 -UV Count: 3 - UV - UV - UV -Face 1510 -UV Count: 3 - UV - UV - UV -Face 1511 -UV Count: 3 - UV - UV - UV -Face 1512 -UV Count: 3 - UV - UV - UV -Face 1513 -UV Count: 3 - UV - UV - UV -Face 1514 -UV Count: 3 - UV - UV - UV -Face 1515 -UV Count: 3 - UV - UV - UV -Face 1516 -UV Count: 3 - UV - UV - UV -Face 1517 -UV Count: 3 - UV - UV - UV -Face 1518 -UV Count: 3 - UV - UV - UV -Face 1519 -UV Count: 3 - UV - UV - UV -Face 1520 -UV Count: 3 - UV - UV - UV -Face 1521 -UV Count: 3 - UV - UV - UV -Face 1522 -UV Count: 3 - UV - UV - UV -Face 1523 -UV Count: 3 - UV - UV - UV -Face 1524 -UV Count: 3 - UV - UV - UV -Face 1525 -UV Count: 3 - UV - UV - UV -Face 1526 -UV Count: 3 - UV - UV - UV -Face 1527 -UV Count: 3 - UV - UV - UV -Face 1528 -UV Count: 3 - UV - UV - UV -Face 1529 -UV Count: 3 - UV - UV - UV -Face 1530 -UV Count: 3 - UV - UV - UV -Face 1531 -UV Count: 3 - UV - UV - UV -Face 1532 -UV Count: 3 - UV - UV - UV -Face 1533 -UV Count: 3 - UV - UV - UV -Face 1534 -UV Count: 3 - UV - UV - UV -Face 1535 -UV Count: 3 - UV - UV - UV -Face 1536 -UV Count: 3 - UV - UV - UV -Face 1537 -UV Count: 3 - UV - UV - UV -Face 1538 -UV Count: 3 - UV - UV - UV -Face 1539 -UV Count: 3 - UV - UV - UV -Face 1540 -UV Count: 3 - UV - UV - UV -Face 1541 -UV Count: 3 - UV - UV - UV -Face 1542 -UV Count: 3 - UV - UV - UV -Face 1543 -UV Count: 3 - UV - UV - UV -Face 1544 -UV Count: 3 - UV - UV - UV -Face 1545 -UV Count: 3 - UV - UV - UV -Face 1546 -UV Count: 3 - UV - UV - UV -Face 1547 -UV Count: 3 - UV - UV - UV -Face 1548 -UV Count: 3 - UV - UV - UV -Face 1549 -UV Count: 3 - UV - UV - UV -Face 1550 -UV Count: 3 - UV - UV - UV -Face 1551 -UV Count: 3 - UV - UV - UV -Face 1552 -UV Count: 3 - UV - UV - UV -Face 1553 -UV Count: 3 - UV - UV - UV -Face 1554 -UV Count: 3 - UV - UV - UV -Face 1555 -UV Count: 3 - UV - UV - UV -Face 1556 -UV Count: 3 - UV - UV - UV -Face 1557 -UV Count: 3 - UV - UV - UV -Face 1558 -UV Count: 3 - UV - UV - UV -Face 1559 -UV Count: 3 - UV - UV - UV -Face 1560 -UV Count: 3 - UV - UV - UV -Face 1561 -UV Count: 3 - UV - UV - UV -Face 1562 -UV Count: 3 - UV - UV - UV -Face 1563 -UV Count: 3 - UV - UV - UV -Face 1564 -UV Count: 3 - UV - UV - UV -Face 1565 -UV Count: 3 - UV - UV - UV -Face 1566 -UV Count: 3 - UV - UV - UV -Face 1567 -UV Count: 3 - UV - UV - UV -Face 1568 -UV Count: 3 - UV - UV - UV -Face 1569 -UV Count: 3 - UV - UV - UV -Face 1570 -UV Count: 3 - UV - UV - UV -Face 1571 -UV Count: 3 - UV - UV - UV -Face 1572 -UV Count: 3 - UV - UV - UV -Face 1573 -UV Count: 3 - UV - UV - UV -Face 1574 -UV Count: 3 - UV - UV - UV -Face 1575 -UV Count: 3 - UV - UV - UV -Face 1576 -UV Count: 3 - UV - UV - UV -Face 1577 -UV Count: 3 - UV - UV - UV -Face 1578 -UV Count: 3 - UV - UV - UV -Face 1579 -UV Count: 3 - UV - UV - UV -Face 1580 -UV Count: 3 - UV - UV - UV -Face 1581 -UV Count: 3 - UV - UV - UV -Face 1582 -UV Count: 3 - UV - UV - UV -Face 1583 -UV Count: 3 - UV - UV - UV -Face 1584 -UV Count: 3 - UV - UV - UV -Face 1585 -UV Count: 3 - UV - UV - UV -Face 1586 -UV Count: 3 - UV - UV - UV -Face 1587 -UV Count: 3 - UV - UV - UV -Face 1588 -UV Count: 3 - UV - UV - UV -Face 1589 -UV Count: 3 - UV - UV - UV -Face 1590 -UV Count: 3 - UV - UV - UV -Face 1591 -UV Count: 3 - UV - UV - UV -Face 1592 -UV Count: 3 - UV - UV - UV -Face 1593 -UV Count: 3 - UV - UV - UV -Face 1594 -UV Count: 3 - UV - UV - UV -Face 1595 -UV Count: 3 - UV - UV - UV -Face 1596 -UV Count: 3 - UV - UV - UV -Face 1597 -UV Count: 3 - UV - UV - UV -Face 1598 -UV Count: 3 - UV - UV - UV -Face 1599 -UV Count: 3 - UV - UV - UV -Face 1600 -UV Count: 3 - UV - UV - UV -Face 1601 -UV Count: 3 - UV - UV - UV -Face 1602 -UV Count: 3 - UV - UV - UV -Face 1603 -UV Count: 3 - UV - UV - UV -Face 1604 -UV Count: 3 - UV - UV - UV -Face 1605 -UV Count: 3 - UV - UV - UV -Face 1606 -UV Count: 3 - UV - UV - UV -Face 1607 -UV Count: 3 - UV - UV - UV -Face 1608 -UV Count: 3 - UV - UV - UV -Face 1609 -UV Count: 3 - UV - UV - UV -Face 1610 -UV Count: 3 - UV - UV - UV -Face 1611 -UV Count: 3 - UV - UV - UV -Face 1612 -UV Count: 3 - UV - UV - UV -Face 1613 -UV Count: 3 - UV - UV - UV -Face 1614 -UV Count: 3 - UV - UV - UV -Face 1615 -UV Count: 3 - UV - UV - UV -Face 1616 -UV Count: 3 - UV - UV - UV -Face 1617 -UV Count: 3 - UV - UV - UV -Face 1618 -UV Count: 3 - UV - UV - UV -Face 1619 -UV Count: 3 - UV - UV - UV -Face 1620 -UV Count: 3 - UV - UV - UV -Face 1621 -UV Count: 3 - UV - UV - UV -Face 1622 -UV Count: 3 - UV - UV - UV -Face 1623 -UV Count: 3 - UV - UV - UV -Face 1624 -UV Count: 3 - UV - UV - UV -Face 1625 -UV Count: 3 - UV - UV - UV -Face 1626 -UV Count: 3 - UV - UV - UV -Face 1627 -UV Count: 3 - UV - UV - UV -Face 1628 -UV Count: 3 - UV - UV - UV -Face 1629 -UV Count: 3 - UV - UV - UV -Face 1630 -UV Count: 3 - UV - UV - UV -Face 1631 -UV Count: 3 - UV - UV - UV -Face 1632 -UV Count: 3 - UV - UV - UV -Face 1633 -UV Count: 3 - UV - UV - UV -Face 1634 -UV Count: 3 - UV - UV - UV -Face 1635 -UV Count: 3 - UV - UV - UV -Face 1636 -UV Count: 3 - UV - UV - UV -Face 1637 -UV Count: 3 - UV - UV - UV -Face 1638 -UV Count: 3 - UV - UV - UV -Face 1639 -UV Count: 3 - UV - UV - UV -Face 1640 -UV Count: 3 - UV - UV - UV -Face 1641 -UV Count: 3 - UV - UV - UV -Face 1642 -UV Count: 3 - UV - UV - UV -Face 1643 -UV Count: 3 - UV - UV - UV -Face 1644 -UV Count: 3 - UV - UV - UV -Face 1645 -UV Count: 3 - UV - UV - UV -Face 1646 -UV Count: 3 - UV - UV - UV -Face 1647 -UV Count: 3 - UV - UV - UV -Face 1648 -UV Count: 3 - UV - UV - UV -Face 1649 -UV Count: 3 - UV - UV - UV -Face 1650 -UV Count: 3 - UV - UV - UV -Face 1651 -UV Count: 3 - UV - UV - UV -Face 1652 -UV Count: 3 - UV - UV - UV -Face 1653 -UV Count: 3 - UV - UV - UV -Face 1654 -UV Count: 3 - UV - UV - UV -Face 1655 -UV Count: 3 - UV - UV - UV -Face 1656 -UV Count: 3 - UV - UV - UV -Face 1657 -UV Count: 3 - UV - UV - UV -Face 1658 -UV Count: 3 - UV - UV - UV -Face 1659 -UV Count: 3 - UV - UV - UV -Face 1660 -UV Count: 3 - UV - UV - UV -Face 1661 -UV Count: 3 - UV - UV - UV -Face 1662 -UV Count: 3 - UV - UV - UV -Face 1663 -UV Count: 3 - UV - UV - UV -Face 1664 -UV Count: 3 - UV - UV - UV -Face 1665 -UV Count: 3 - UV - UV - UV -Face 1666 -UV Count: 3 - UV - UV - UV -Face 1667 -UV Count: 3 - UV - UV - UV -Face 1668 -UV Count: 3 - UV - UV - UV -Face 1669 -UV Count: 3 - UV - UV - UV -Face 1670 -UV Count: 3 - UV - UV - UV -Face 1671 -UV Count: 3 - UV - UV - UV -Face 1672 -UV Count: 3 - UV - UV - UV -Face 1673 -UV Count: 3 - UV - UV - UV -Face 1674 -UV Count: 3 - UV - UV - UV -Face 1675 -UV Count: 3 - UV - UV - UV -Face 1676 -UV Count: 3 - UV - UV - UV -Face 1677 -UV Count: 3 - UV - UV - UV -Face 1678 -UV Count: 3 - UV - UV - UV -Face 1679 -UV Count: 3 - UV - UV - UV -Face 1680 -UV Count: 3 - UV - UV - UV -Face 1681 -UV Count: 3 - UV - UV - UV -Face 1682 -UV Count: 3 - UV - UV - UV -Face 1683 -UV Count: 3 - UV - UV - UV -Face 1684 -UV Count: 3 - UV - UV - UV -Face 1685 -UV Count: 3 - UV - UV - UV -Face 1686 -UV Count: 3 - UV - UV - UV -Face 1687 -UV Count: 3 - UV - UV - UV -Face 1688 -UV Count: 3 - UV - UV - UV -Face 1689 -UV Count: 3 - UV - UV - UV -Face 1690 -UV Count: 3 - UV - UV - UV -Face 1691 -UV Count: 3 - UV - UV - UV -Face 1692 -UV Count: 3 - UV - UV - UV -Face 1693 -UV Count: 3 - UV - UV - UV -Face 1694 -UV Count: 3 - UV - UV - UV -Face 1695 -UV Count: 3 - UV - UV - UV -Face 1696 -UV Count: 3 - UV - UV - UV -Face 1697 -UV Count: 3 - UV - UV - UV -Face 1698 -UV Count: 3 - UV - UV - UV -Face 1699 -UV Count: 3 - UV - UV - UV -Face 1700 -UV Count: 3 - UV - UV - UV -Face 1701 -UV Count: 3 - UV - UV - UV -Face 1702 -UV Count: 3 - UV - UV - UV -Face 1703 -UV Count: 3 - UV - UV - UV -Face 1704 -UV Count: 3 - UV - UV - UV -Face 1705 -UV Count: 3 - UV - UV - UV -Face 1706 -UV Count: 3 - UV - UV - UV -Face 1707 -UV Count: 3 - UV - UV - UV -Face 1708 -UV Count: 3 - UV - UV - UV -Face 1709 -UV Count: 3 - UV - UV - UV -Face 1710 -UV Count: 3 - UV - UV - UV -Face 1711 -UV Count: 3 - UV - UV - UV -Face 1712 -UV Count: 3 - UV - UV - UV -Face 1713 -UV Count: 3 - UV - UV - UV -Face 1714 -UV Count: 3 - UV - UV - UV -Face 1715 -UV Count: 3 - UV - UV - UV -Face 1716 -UV Count: 3 - UV - UV - UV -Face 1717 -UV Count: 3 - UV - UV - UV -Face 1718 -UV Count: 3 - UV - UV - UV -Face 1719 -UV Count: 3 - UV - UV - UV -Face 1720 -UV Count: 3 - UV - UV - UV -Face 1721 -UV Count: 3 - UV - UV - UV -Face 1722 -UV Count: 3 - UV - UV - UV -Face 1723 -UV Count: 3 - UV - UV - UV -Face 1724 -UV Count: 3 - UV - UV - UV -Face 1725 -UV Count: 3 - UV - UV - UV -Face 1726 -UV Count: 3 - UV - UV - UV -Face 1727 -UV Count: 3 - UV - UV - UV -Face 1728 -UV Count: 3 - UV - UV - UV -Face 1729 -UV Count: 3 - UV - UV - UV -Face 1730 -UV Count: 3 - UV - UV - UV -Face 1731 -UV Count: 3 - UV - UV - UV -Face 1732 -UV Count: 3 - UV - UV - UV -Face 1733 -UV Count: 3 - UV - UV - UV -Face 1734 -UV Count: 3 - UV - UV - UV -Face 1735 -UV Count: 3 - UV - UV - UV -Face 1736 -UV Count: 3 - UV - UV - UV -Face 1737 -UV Count: 3 - UV - UV - UV -Face 1738 -UV Count: 3 - UV - UV - UV -Face 1739 -UV Count: 3 - UV - UV - UV -Face 1740 -UV Count: 3 - UV - UV - UV -Face 1741 -UV Count: 3 - UV - UV - UV -Face 1742 -UV Count: 3 - UV - UV - UV -Face 1743 -UV Count: 3 - UV - UV - UV -Face 1744 -UV Count: 3 - UV - UV - UV -Face 1745 -UV Count: 3 - UV - UV - UV -Face 1746 -UV Count: 3 - UV - UV - UV -Face 1747 -UV Count: 3 - UV - UV - UV -Face 1748 -UV Count: 3 - UV - UV - UV -Face 1749 -UV Count: 3 - UV - UV - UV -Face 1750 -UV Count: 3 - UV - UV - UV -Face 1751 -UV Count: 3 - UV - UV - UV -Face 1752 -UV Count: 3 - UV - UV - UV -Face 1753 -UV Count: 3 - UV - UV - UV -Face 1754 -UV Count: 3 - UV - UV - UV -Face 1755 -UV Count: 3 - UV - UV - UV -Face 1756 -UV Count: 3 - UV - UV - UV -Face 1757 -UV Count: 3 - UV - UV - UV -Face 1758 -UV Count: 3 - UV - UV - UV -Face 1759 -UV Count: 3 - UV - UV - UV -Face 1760 -UV Count: 3 - UV - UV - UV -Face 1761 -UV Count: 3 - UV - UV - UV -Face 1762 -UV Count: 3 - UV - UV - UV -Face 1763 -UV Count: 3 - UV - UV - UV -Face 1764 -UV Count: 3 - UV - UV - UV -Face 1765 -UV Count: 3 - UV - UV - UV -Face 1766 -UV Count: 3 - UV - UV - UV -Face 1767 -UV Count: 3 - UV - UV - UV -Face 1768 -UV Count: 3 - UV - UV - UV -Face 1769 -UV Count: 3 - UV - UV - UV -Face 1770 -UV Count: 3 - UV - UV - UV -Face 1771 -UV Count: 3 - UV - UV - UV -Face 1772 -UV Count: 3 - UV - UV - UV -Face 1773 -UV Count: 3 - UV - UV - UV -Face 1774 -UV Count: 3 - UV - UV - UV -Face 1775 -UV Count: 3 - UV - UV - UV -Face 1776 -UV Count: 3 - UV - UV - UV -Face 1777 -UV Count: 3 - UV - UV - UV -Face 1778 -UV Count: 3 - UV - UV - UV -Face 1779 -UV Count: 3 - UV - UV - UV -Face 1780 -UV Count: 3 - UV - UV - UV -Face 1781 -UV Count: 3 - UV - UV - UV -Face 1782 -UV Count: 3 - UV - UV - UV -Face 1783 -UV Count: 3 - UV - UV - UV -Face 1784 -UV Count: 3 - UV - UV - UV -Face 1785 -UV Count: 3 - UV - UV - UV -Face 1786 -UV Count: 3 - UV - UV - UV -Face 1787 -UV Count: 3 - UV - UV - UV -Face 1788 -UV Count: 3 - UV - UV - UV -Face 1789 -UV Count: 3 - UV - UV - UV -Face 1790 -UV Count: 3 - UV - UV - UV -Face 1791 -UV Count: 3 - UV - UV - UV -Face 1792 -UV Count: 3 - UV - UV - UV -Face 1793 -UV Count: 3 - UV - UV - UV -Face 1794 -UV Count: 3 - UV - UV - UV -Face 1795 -UV Count: 3 - UV - UV - UV -Face 1796 -UV Count: 3 - UV - UV - UV -Face 1797 -UV Count: 3 - UV - UV - UV -Face 1798 -UV Count: 3 - UV - UV - UV -Face 1799 -UV Count: 3 - UV - UV - UV -Face 1800 -UV Count: 3 - UV - UV - UV -Face 1801 -UV Count: 3 - UV - UV - UV -Face 1802 -UV Count: 3 - UV - UV - UV -Face 1803 -UV Count: 3 - UV - UV - UV -Face 1804 -UV Count: 3 - UV - UV - UV -Face 1805 -UV Count: 3 - UV - UV - UV -Face 1806 -UV Count: 3 - UV - UV - UV -Face 1807 -UV Count: 3 - UV - UV - UV -Face 1808 -UV Count: 3 - UV - UV - UV -Face 1809 -UV Count: 3 - UV - UV - UV -Face 1810 -UV Count: 3 - UV - UV - UV -Face 1811 -UV Count: 3 - UV - UV - UV -Face 1812 -UV Count: 3 - UV - UV - UV -Face 1813 -UV Count: 3 - UV - UV - UV -Face 1814 -UV Count: 3 - UV - UV - UV -Face 1815 -UV Count: 3 - UV - UV - UV -Face 1816 -UV Count: 3 - UV - UV - UV -Face 1817 -UV Count: 3 - UV - UV - UV -Face 1818 -UV Count: 3 - UV - UV - UV -Face 1819 -UV Count: 3 - UV - UV - UV -Face 1820 -UV Count: 3 - UV - UV - UV -Face 1821 -UV Count: 3 - UV - UV - UV -Face 1822 -UV Count: 3 - UV - UV - UV -Face 1823 -UV Count: 3 - UV - UV - UV -Face 1824 -UV Count: 3 - UV - UV - UV -Face 1825 -UV Count: 3 - UV - UV - UV -Face 1826 -UV Count: 3 - UV - UV - UV -Face 1827 -UV Count: 3 - UV - UV - UV -Face 1828 -UV Count: 3 - UV - UV - UV -Face 1829 -UV Count: 3 - UV - UV - UV -Face 1830 -UV Count: 3 - UV - UV - UV -Face 1831 -UV Count: 3 - UV - UV - UV -Face 1832 -UV Count: 3 - UV - UV - UV -Face 1833 -UV Count: 3 - UV - UV - UV -Face 1834 -UV Count: 3 - UV - UV - UV -Face 1835 -UV Count: 3 - UV - UV - UV -Face 1836 -UV Count: 3 - UV - UV - UV -Face 1837 -UV Count: 3 - UV - UV - UV -Face 1838 -UV Count: 3 - UV - UV - UV -Face 1839 -UV Count: 3 - UV - UV - UV -Face 1840 -UV Count: 3 - UV - UV - UV -Face 1841 -UV Count: 3 - UV - UV - UV -Face 1842 -UV Count: 3 - UV - UV - UV -Face 1843 -UV Count: 3 - UV - UV - UV -Face 1844 -UV Count: 3 - UV - UV - UV -Face 1845 -UV Count: 3 - UV - UV - UV -Face 1846 -UV Count: 3 - UV - UV - UV -Face 1847 -UV Count: 3 - UV - UV - UV -Face 1848 -UV Count: 3 - UV - UV - UV -Face 1849 -UV Count: 3 - UV - UV - UV -Face 1850 -UV Count: 3 - UV - UV - UV -Face 1851 -UV Count: 3 - UV - UV - UV -Face 1852 -UV Count: 3 - UV - UV - UV -Face 1853 -UV Count: 3 - UV - UV - UV -Face 1854 -UV Count: 3 - UV - UV - UV -Face 1855 -UV Count: 3 - UV - UV - UV -Face 1856 -UV Count: 3 - UV - UV - UV -Face 1857 -UV Count: 3 - UV - UV - UV -Face 1858 -UV Count: 3 - UV - UV - UV -Face 1859 -UV Count: 3 - UV - UV - UV -Face 1860 -UV Count: 3 - UV - UV - UV -Face 1861 -UV Count: 3 - UV - UV - UV -Face 1862 -UV Count: 3 - UV - UV - UV -Face 1863 -UV Count: 3 - UV - UV - UV -Face 1864 -UV Count: 3 - UV - UV - UV -Face 1865 -UV Count: 3 - UV - UV - UV -Face 1866 -UV Count: 3 - UV - UV - UV -Face 1867 -UV Count: 3 - UV - UV - UV -Face 1868 -UV Count: 3 - UV - UV - UV -Face 1869 -UV Count: 3 - UV - UV - UV -Face 1870 -UV Count: 3 - UV - UV - UV -Face 1871 -UV Count: 3 - UV - UV - UV -Face 1872 -UV Count: 3 - UV - UV - UV -Face 1873 -UV Count: 3 - UV - UV - UV -Face 1874 -UV Count: 3 - UV - UV - UV -Face 1875 -UV Count: 3 - UV - UV - UV -Face 1876 -UV Count: 3 - UV - UV - UV -Face 1877 -UV Count: 3 - UV - UV - UV -Face 1878 -UV Count: 3 - UV - UV - UV -Face 1879 -UV Count: 3 - UV - UV - UV -Face 1880 -UV Count: 3 - UV - UV - UV -Face 1881 -UV Count: 3 - UV - UV - UV -Face 1882 -UV Count: 3 - UV - UV - UV -Face 1883 -UV Count: 3 - UV - UV - UV -Face 1884 -UV Count: 3 - UV - UV - UV -Face 1885 -UV Count: 3 - UV - UV - UV -Face 1886 -UV Count: 3 - UV - UV - UV -Face 1887 -UV Count: 3 - UV - UV - UV -Face 1888 -UV Count: 3 - UV - UV - UV -Face 1889 -UV Count: 3 - UV - UV - UV -Face 1890 -UV Count: 3 - UV - UV - UV -Face 1891 -UV Count: 3 - UV - UV - UV -Face 1892 -UV Count: 3 - UV - UV - UV -Face 1893 -UV Count: 3 - UV - UV - UV -Face 1894 -UV Count: 3 - UV - UV - UV -Face 1895 -UV Count: 3 - UV - UV - UV -Face 1896 -UV Count: 3 - UV - UV - UV -Face 1897 -UV Count: 3 - UV - UV - UV -Face 1898 -UV Count: 3 - UV - UV - UV -Face 1899 -UV Count: 3 - UV - UV - UV -Face 1900 -UV Count: 3 - UV - UV - UV -Face 1901 -UV Count: 3 - UV - UV - UV -Face 1902 -UV Count: 3 - UV - UV - UV -Face 1903 -UV Count: 3 - UV - UV - UV -Face 1904 -UV Count: 3 - UV - UV - UV -Face 1905 -UV Count: 3 - UV - UV - UV -Face 1906 -UV Count: 3 - UV - UV - UV -Face 1907 -UV Count: 3 - UV - UV - UV -Face 1908 -UV Count: 3 - UV - UV - UV -Face 1909 -UV Count: 3 - UV - UV - UV -Face 1910 -UV Count: 3 - UV - UV - UV -Face 1911 -UV Count: 3 - UV - UV - UV -Face 1912 -UV Count: 3 - UV - UV - UV -Face 1913 -UV Count: 3 - UV - UV - UV -Face 1914 -UV Count: 3 - UV - UV - UV -Face 1915 -UV Count: 3 - UV - UV - UV -Face 1916 -UV Count: 3 - UV - UV - UV -Face 1917 -UV Count: 3 - UV - UV - UV -Face 1918 -UV Count: 3 - UV - UV - UV -Face 1919 -UV Count: 3 - UV - UV - UV -Face 1920 -UV Count: 3 - UV - UV - UV -Face 1921 -UV Count: 3 - UV - UV - UV -Face 1922 -UV Count: 3 - UV - UV - UV -Face 1923 -UV Count: 3 - UV - UV - UV -Face 1924 -UV Count: 3 - UV - UV - UV -Face 1925 -UV Count: 3 - UV - UV - UV -Face 1926 -UV Count: 3 - UV - UV - UV -Face 1927 -UV Count: 3 - UV - UV - UV -Face 1928 -UV Count: 3 - UV - UV - UV -Face 1929 -UV Count: 3 - UV - UV - UV -Face 1930 -UV Count: 3 - UV - UV - UV -Face 1931 -UV Count: 3 - UV - UV - UV -Face 1932 -UV Count: 3 - UV - UV - UV -Face 1933 -UV Count: 3 - UV - UV - UV -Face 1934 -UV Count: 3 - UV - UV - UV -Face 1935 -UV Count: 3 - UV - UV - UV -Face 1936 -UV Count: 3 - UV - UV - UV -Face 1937 -UV Count: 3 - UV - UV - UV -Face 1938 -UV Count: 3 - UV - UV - UV -Face 1939 -UV Count: 3 - UV - UV - UV -Face 1940 -UV Count: 3 - UV - UV - UV -Face 1941 -UV Count: 3 - UV - UV - UV -Face 1942 -UV Count: 3 - UV - UV - UV -Face 1943 -UV Count: 3 - UV - UV - UV -Face 1944 -UV Count: 3 - UV - UV - UV -Face 1945 -UV Count: 3 - UV - UV - UV -Face 1946 -UV Count: 3 - UV - UV - UV -Face 1947 -UV Count: 3 - UV - UV - UV -Face 1948 -UV Count: 3 - UV - UV - UV -Face 1949 -UV Count: 3 - UV - UV - UV -Face 1950 -UV Count: 3 - UV - UV - UV -Face 1951 -UV Count: 3 - UV - UV - UV -Face 1952 -UV Count: 3 - UV - UV - UV -Face 1953 -UV Count: 3 - UV - UV - UV -Face 1954 -UV Count: 3 - UV - UV - UV -Face 1955 -UV Count: 3 - UV - UV - UV -Face 1956 -UV Count: 3 - UV - UV - UV -Face 1957 -UV Count: 3 - UV - UV - UV -Face 1958 -UV Count: 3 - UV - UV - UV -Face 1959 -UV Count: 3 - UV - UV - UV -Face 1960 -UV Count: 3 - UV - UV - UV -Face 1961 -UV Count: 3 - UV - UV - UV -Face 1962 -UV Count: 3 - UV - UV - UV -Face 1963 -UV Count: 3 - UV - UV - UV -Face 1964 -UV Count: 3 - UV - UV - UV -Face 1965 -UV Count: 3 - UV - UV - UV -Face 1966 -UV Count: 3 - UV - UV - UV -Face 1967 -UV Count: 3 - UV - UV - UV -Face 1968 -UV Count: 3 - UV - UV - UV -Face 1969 -UV Count: 3 - UV - UV - UV -Face 1970 -UV Count: 3 - UV - UV - UV -Face 1971 -UV Count: 3 - UV - UV - UV -Face 1972 -UV Count: 3 - UV - UV - UV -Face 1973 -UV Count: 3 - UV - UV - UV -Face 1974 -UV Count: 3 - UV - UV - UV -Face 1975 -UV Count: 3 - UV - UV - UV -Face 1976 -UV Count: 3 - UV - UV - UV -Face 1977 -UV Count: 3 - UV - UV - UV -Face 1978 -UV Count: 3 - UV - UV - UV -Face 1979 -UV Count: 3 - UV - UV - UV -Face 1980 -UV Count: 3 - UV - UV - UV -Face 1981 -UV Count: 3 - UV - UV - UV -Face 1982 -UV Count: 3 - UV - UV - UV -Face 1983 -UV Count: 3 - UV - UV - UV -Face 1984 -UV Count: 3 - UV - UV - UV -Face 1985 -UV Count: 3 - UV - UV - UV -Face 1986 -UV Count: 3 - UV - UV - UV -Face 1987 -UV Count: 3 - UV - UV - UV -Face 1988 -UV Count: 3 - UV - UV - UV -Face 1989 -UV Count: 3 - UV - UV - UV -Face 1990 -UV Count: 3 - UV - UV - UV -Face 1991 -UV Count: 3 - UV - UV - UV -Face 1992 -UV Count: 3 - UV - UV - UV -Face 1993 -UV Count: 3 - UV - UV - UV -Face 1994 -UV Count: 3 - UV - UV - UV -Face 1995 -UV Count: 3 - UV - UV - UV -Face 1996 -UV Count: 3 - UV - UV - UV -Face 1997 -UV Count: 3 - UV - UV - UV -Face 1998 -UV Count: 3 - UV - UV - UV -Face 1999 -UV Count: 3 - UV - UV - UV -Face 2000 -UV Count: 3 - UV - UV - UV -Face 2001 -UV Count: 3 - UV - UV - UV -Face 2002 -UV Count: 3 - UV - UV - UV -Face 2003 -UV Count: 3 - UV - UV - UV -Face 2004 -UV Count: 3 - UV - UV - UV -Face 2005 -UV Count: 3 - UV - UV - UV -Face 2006 -UV Count: 3 - UV - UV - UV -Face 2007 -UV Count: 3 - UV - UV - UV -Face 2008 -UV Count: 3 - UV - UV - UV -Face 2009 -UV Count: 3 - UV - UV - UV -Face 2010 -UV Count: 3 - UV - UV - UV -Face 2011 -UV Count: 3 - UV - UV - UV -Face 2012 -UV Count: 3 - UV - UV - UV -Face 2013 -UV Count: 3 - UV - UV - UV -Face 2014 -UV Count: 3 - UV - UV - UV -Face 2015 -UV Count: 3 - UV - UV - UV -Face 2016 -UV Count: 3 - UV - UV - UV -Face 2017 -UV Count: 3 - UV - UV - UV -Face 2018 -UV Count: 3 - UV - UV - UV -Face 2019 -UV Count: 3 - UV - UV - UV -Face 2020 -UV Count: 3 - UV - UV - UV -Face 2021 -UV Count: 3 - UV - UV - UV -Face 2022 -UV Count: 3 - UV - UV - UV -Face 2023 -UV Count: 3 - UV - UV - UV -Face 2024 -UV Count: 3 - UV - UV - UV -Face 2025 -UV Count: 3 - UV - UV - UV -Face 2026 -UV Count: 3 - UV - UV - UV -Face 2027 -UV Count: 3 - UV - UV - UV -Face 2028 -UV Count: 3 - UV - UV - UV -Face 2029 -UV Count: 3 - UV - UV - UV -Face 2030 -UV Count: 3 - UV - UV - UV -Face 2031 -UV Count: 3 - UV - UV - UV -Face 2032 -UV Count: 3 - UV - UV - UV -Face 2033 -UV Count: 3 - UV - UV - UV -Face 2034 -UV Count: 3 - UV - UV - UV -Face 2035 -UV Count: 3 - UV - UV - UV -Face 2036 -UV Count: 3 - UV - UV - UV -Face 2037 -UV Count: 3 - UV - UV - UV -Face 2038 -UV Count: 3 - UV - UV - UV -Face 2039 -UV Count: 3 - UV - UV - UV -Face 2040 -UV Count: 3 - UV - UV - UV -Face 2041 -UV Count: 3 - UV - UV - UV -Face 2042 -UV Count: 3 - UV - UV - UV -Face 2043 -UV Count: 3 - UV - UV - UV -Face 2044 -UV Count: 3 - UV - UV - UV -Face 2045 -UV Count: 3 - UV - UV - UV -Face 2046 -UV Count: 3 - UV - UV - UV -Face 2047 -UV Count: 3 - UV - UV - UV -Face 2048 -UV Count: 3 - UV - UV - UV -Face 2049 -UV Count: 3 - UV - UV - UV -Face 2050 -UV Count: 3 - UV - UV - UV -Face 2051 -UV Count: 3 - UV - UV - UV -Face 2052 -UV Count: 3 - UV - UV - UV -Face 2053 -UV Count: 3 - UV - UV - UV -Face 2054 -UV Count: 3 - UV - UV - UV -Face 2055 -UV Count: 3 - UV - UV - UV -Face 2056 -UV Count: 3 - UV - UV - UV -Face 2057 -UV Count: 3 - UV - UV - UV -Face 2058 -UV Count: 3 - UV - UV - UV -Face 2059 -UV Count: 3 - UV - UV - UV -Face 2060 -UV Count: 3 - UV - UV - UV -Face 2061 -UV Count: 3 - UV - UV - UV -Face 2062 -UV Count: 3 - UV - UV - UV -Face 2063 -UV Count: 3 - UV - UV - UV -Face 2064 -UV Count: 3 - UV - UV - UV -Face 2065 -UV Count: 3 - UV - UV - UV -Face 2066 -UV Count: 3 - UV - UV - UV -Face 2067 -UV Count: 3 - UV - UV - UV -Face 2068 -UV Count: 3 - UV - UV - UV -Face 2069 -UV Count: 3 - UV - UV - UV -Face 2070 -UV Count: 3 - UV - UV - UV -Face 2071 -UV Count: 3 - UV - UV - UV -Face 2072 -UV Count: 3 - UV - UV - UV -Face 2073 -UV Count: 3 - UV - UV - UV -Face 2074 -UV Count: 3 - UV - UV - UV -Face 2075 -UV Count: 3 - UV - UV - UV -Face 2076 -UV Count: 3 - UV - UV - UV -Face 2077 -UV Count: 3 - UV - UV - UV -Face 2078 -UV Count: 3 - UV - UV - UV -Face 2079 -UV Count: 3 - UV - UV - UV -Face 2080 -UV Count: 3 - UV - UV - UV -Face 2081 -UV Count: 3 - UV - UV - UV -Face 2082 -UV Count: 3 - UV - UV - UV -Face 2083 -UV Count: 3 - UV - UV - UV -Face 2084 -UV Count: 3 - UV - UV - UV -Face 2085 -UV Count: 3 - UV - UV - UV -Face 2086 -UV Count: 3 - UV - UV - UV -Face 2087 -UV Count: 3 - UV - UV - UV -Face 2088 -UV Count: 3 - UV - UV - UV -Face 2089 -UV Count: 3 - UV - UV - UV -Face 2090 -UV Count: 3 - UV - UV - UV -Face 2091 -UV Count: 3 - UV - UV - UV -Face 2092 -UV Count: 3 - UV - UV - UV -Face 2093 -UV Count: 3 - UV - UV - UV -Face 2094 -UV Count: 3 - UV - UV - UV -Face 2095 -UV Count: 3 - UV - UV - UV -Face 2096 -UV Count: 3 - UV - UV - UV -Face 2097 -UV Count: 3 - UV - UV - UV -Face 2098 -UV Count: 3 - UV - UV - UV -Face 2099 -UV Count: 3 - UV - UV - UV -Face 2100 -UV Count: 3 - UV - UV - UV -Face 2101 -UV Count: 3 - UV - UV - UV -Face 2102 -UV Count: 3 - UV - UV - UV -Face 2103 -UV Count: 3 - UV - UV - UV -Face 2104 -UV Count: 3 - UV - UV - UV -Face 2105 -UV Count: 3 - UV - UV - UV -Face 2106 -UV Count: 3 - UV - UV - UV -Face 2107 -UV Count: 3 - UV - UV - UV -Face 2108 -UV Count: 3 - UV - UV - UV -Face 2109 -UV Count: 3 - UV - UV - UV -Face 2110 -UV Count: 3 - UV - UV - UV -Face 2111 -UV Count: 3 - UV - UV - UV -Face 2112 -UV Count: 3 - UV - UV - UV -Face 2113 -UV Count: 3 - UV - UV - UV -Face 2114 -UV Count: 3 - UV - UV - UV -Face 2115 -UV Count: 3 - UV - UV - UV -Face 2116 -UV Count: 3 - UV - UV - UV -Face 2117 -UV Count: 3 - UV - UV - UV -Face 2118 -UV Count: 3 - UV - UV - UV -Face 2119 -UV Count: 3 - UV - UV - UV -Face 2120 -UV Count: 3 - UV - UV - UV -Face 2121 -UV Count: 3 - UV - UV - UV -Face 2122 -UV Count: 3 - UV - UV - UV -Face 2123 -UV Count: 3 - UV - UV - UV -Face 2124 -UV Count: 3 - UV - UV - UV -Face 2125 -UV Count: 3 - UV - UV - UV -Face 2126 -UV Count: 3 - UV - UV - UV -Face 2127 -UV Count: 3 - UV - UV - UV -Face 2128 -UV Count: 3 - UV - UV - UV -Face 2129 -UV Count: 3 - UV - UV - UV -Face 2130 -UV Count: 3 - UV - UV - UV -Face 2131 -UV Count: 3 - UV - UV - UV -Face 2132 -UV Count: 3 - UV - UV - UV -Face 2133 -UV Count: 3 - UV - UV - UV -Face 2134 -UV Count: 3 - UV - UV - UV -Face 2135 -UV Count: 3 - UV - UV - UV -Face 2136 -UV Count: 3 - UV - UV - UV -Face 2137 -UV Count: 3 - UV - UV - UV -Face 2138 -UV Count: 3 - UV - UV - UV -Face 2139 -UV Count: 3 - UV - UV - UV -Face 2140 -UV Count: 3 - UV - UV - UV -Face 2141 -UV Count: 3 - UV - UV - UV -Face 2142 -UV Count: 3 - UV - UV - UV -Face 2143 -UV Count: 3 - UV - UV - UV -Face 2144 -UV Count: 3 - UV - UV - UV -Face 2145 -UV Count: 3 - UV - UV - UV -Face 2146 -UV Count: 3 - UV - UV - UV -Face 2147 -UV Count: 3 - UV - UV - UV -Face 2148 -UV Count: 3 - UV - UV - UV -Face 2149 -UV Count: 3 - UV - UV - UV -Face 2150 -UV Count: 3 - UV - UV - UV -Face 2151 -UV Count: 3 - UV - UV - UV -Face 2152 -UV Count: 3 - UV - UV - UV -Face 2153 -UV Count: 3 - UV - UV - UV -Face 2154 -UV Count: 3 - UV - UV - UV -Face 2155 -UV Count: 3 - UV - UV - UV -Face 2156 -UV Count: 3 - UV - UV - UV -Face 2157 -UV Count: 3 - UV - UV - UV -Face 2158 -UV Count: 3 - UV - UV - UV -Face 2159 -UV Count: 3 - UV - UV - UV -Face 2160 -UV Count: 3 - UV - UV - UV -Face 2161 -UV Count: 3 - UV - UV - UV -Face 2162 -UV Count: 3 - UV - UV - UV -Face 2163 -UV Count: 3 - UV - UV - UV -Face 2164 -UV Count: 3 - UV - UV - UV -Face 2165 -UV Count: 3 - UV - UV - UV -Face 2166 -UV Count: 3 - UV - UV - UV -Face 2167 -UV Count: 3 - UV - UV - UV -Face 2168 -UV Count: 3 - UV - UV - UV -Face 2169 -UV Count: 3 - UV - UV - UV -Face 2170 -UV Count: 3 - UV - UV - UV -Face 2171 -UV Count: 3 - UV - UV - UV -Face 2172 -UV Count: 3 - UV - UV - UV -Face 2173 -UV Count: 3 - UV - UV - UV -Face 2174 -UV Count: 3 - UV - UV - UV -Face 2175 -UV Count: 3 - UV - UV - UV -Face 2176 -UV Count: 3 - UV - UV - UV -Face 2177 -UV Count: 3 - UV - UV - UV -Face 2178 -UV Count: 3 - UV - UV - UV -Face 2179 -UV Count: 3 - UV - UV - UV -Face 2180 -UV Count: 3 - UV - UV - UV -Face 2181 -UV Count: 3 - UV - UV - UV -Face 2182 -UV Count: 3 - UV - UV - UV -Face 2183 -UV Count: 3 - UV - UV - UV -Face 2184 -UV Count: 3 - UV - UV - UV -Face 2185 -UV Count: 3 - UV - UV - UV -Face 2186 -UV Count: 3 - UV - UV - UV -Face 2187 -UV Count: 3 - UV - UV - UV -Face 2188 -UV Count: 3 - UV - UV - UV -Face 2189 -UV Count: 3 - UV - UV - UV -Face 2190 -UV Count: 3 - UV - UV - UV -Face 2191 -UV Count: 3 - UV - UV - UV -Face 2192 -UV Count: 3 - UV - UV - UV -Face 2193 -UV Count: 3 - UV - UV - UV -Face 2194 -UV Count: 3 - UV - UV - UV -Face 2195 -UV Count: 3 - UV - UV - UV -Face 2196 -UV Count: 3 - UV - UV - UV -Face 2197 -UV Count: 3 - UV - UV - UV -Face 2198 -UV Count: 3 - UV - UV - UV -Face 2199 -UV Count: 3 - UV - UV - UV -Face 2200 -UV Count: 3 - UV - UV - UV -Face 2201 -UV Count: 3 - UV - UV - UV -Face 2202 -UV Count: 3 - UV - UV - UV -Face 2203 -UV Count: 3 - UV - UV - UV -Face 2204 -UV Count: 3 - UV - UV - UV -Face 2205 -UV Count: 3 - UV - UV - UV -Face 2206 -UV Count: 3 - UV - UV - UV -Face 2207 -UV Count: 3 - UV - UV - UV -Face 2208 -UV Count: 3 - UV - UV - UV -Face 2209 -UV Count: 3 - UV - UV - UV -Face 2210 -UV Count: 3 - UV - UV - UV -Face 2211 -UV Count: 3 - UV - UV - UV -Face 2212 -UV Count: 3 - UV - UV - UV -Face 2213 -UV Count: 3 - UV - UV - UV -Face 2214 -UV Count: 3 - UV - UV - UV -Face 2215 -UV Count: 3 - UV - UV - UV -Face 2216 -UV Count: 3 - UV - UV - UV -Face 2217 -UV Count: 3 - UV - UV - UV -Face 2218 -UV Count: 3 - UV - UV - UV -Face 2219 -UV Count: 3 - UV - UV - UV -Face 2220 -UV Count: 3 - UV - UV - UV -Face 2221 -UV Count: 3 - UV - UV - UV -Face 2222 -UV Count: 3 - UV - UV - UV -Face 2223 -UV Count: 3 - UV - UV - UV -Face 2224 -UV Count: 3 - UV - UV - UV -Face 2225 -UV Count: 3 - UV - UV - UV -Face 2226 -UV Count: 3 - UV - UV - UV -Face 2227 -UV Count: 3 - UV - UV - UV -Face 2228 -UV Count: 3 - UV - UV - UV -Face 2229 -UV Count: 3 - UV - UV - UV -Face 2230 -UV Count: 3 - UV - UV - UV -Face 2231 -UV Count: 3 - UV - UV - UV -Face 2232 -UV Count: 3 - UV - UV - UV -Face 2233 -UV Count: 3 - UV - UV - UV -Face 2234 -UV Count: 3 - UV - UV - UV -Face 2235 -UV Count: 3 - UV - UV - UV -Face 2236 -UV Count: 3 - UV - UV - UV -Face 2237 -UV Count: 3 - UV - UV - UV -Face 2238 -UV Count: 3 - UV - UV - UV -Face 2239 -UV Count: 3 - UV - UV - UV -Face 2240 -UV Count: 3 - UV - UV - UV -Face 2241 -UV Count: 3 - UV - UV - UV -Face 2242 -UV Count: 3 - UV - UV - UV -Face 2243 -UV Count: 3 - UV - UV - UV -Face 2244 -UV Count: 3 - UV - UV - UV -Face 2245 -UV Count: 3 - UV - UV - UV -Face 2246 -UV Count: 3 - UV - UV - UV -Face 2247 -UV Count: 3 - UV - UV - UV -Face 2248 -UV Count: 3 - UV - UV - UV -Face 2249 -UV Count: 3 - UV - UV - UV -Face 2250 -UV Count: 3 - UV - UV - UV -Face 2251 -UV Count: 3 - UV - UV - UV -Face 2252 -UV Count: 3 - UV - UV - UV -Face 2253 -UV Count: 3 - UV - UV - UV -Face 2254 -UV Count: 3 - UV - UV - UV -Face 2255 -UV Count: 3 - UV - UV - UV -Face 2256 -UV Count: 3 - UV - UV - UV -Face 2257 -UV Count: 3 - UV - UV - UV -Face 2258 -UV Count: 3 - UV - UV - UV -Face 2259 -UV Count: 3 - UV - UV - UV -Face 2260 -UV Count: 3 - UV - UV - UV -Face 2261 -UV Count: 3 - UV - UV - UV -Face 2262 -UV Count: 3 - UV - UV - UV -Face 2263 -UV Count: 3 - UV - UV - UV -Face 2264 -UV Count: 3 - UV - UV - UV -Face 2265 -UV Count: 3 - UV - UV - UV -Face 2266 -UV Count: 3 - UV - UV - UV -Face 2267 -UV Count: 3 - UV - UV - UV -Face 2268 -UV Count: 3 - UV - UV - UV -Face 2269 -UV Count: 3 - UV - UV - UV -Face 2270 -UV Count: 3 - UV - UV - UV -Face 2271 -UV Count: 3 - UV - UV - UV -Face 2272 -UV Count: 3 - UV - UV - UV -Face 2273 -UV Count: 3 - UV - UV - UV -Face 2274 -UV Count: 3 - UV - UV - UV -Face 2275 -UV Count: 3 - UV - UV - UV -Face 2276 -UV Count: 3 - UV - UV - UV -Face 2277 -UV Count: 3 - UV - UV - UV -Face 2278 -UV Count: 3 - UV - UV - UV -Face 2279 -UV Count: 3 - UV - UV - UV -Face 2280 -UV Count: 3 - UV - UV - UV -Face 2281 -UV Count: 3 - UV - UV - UV -Face 2282 -UV Count: 3 - UV - UV - UV -Face 2283 -UV Count: 3 - UV - UV - UV -Face 2284 -UV Count: 3 - UV - UV - UV -Face 2285 -UV Count: 3 - UV - UV - UV -Face 2286 -UV Count: 3 - UV - UV - UV -Face 2287 -UV Count: 3 - UV - UV - UV -Face 2288 -UV Count: 3 - UV - UV - UV -Face 2289 -UV Count: 3 - UV - UV - UV -Face 2290 -UV Count: 3 - UV - UV - UV -Face 2291 -UV Count: 3 - UV - UV - UV -Face 2292 -UV Count: 3 - UV - UV - UV -Face 2293 -UV Count: 3 - UV - UV - UV -Face 2294 -UV Count: 3 - UV - UV - UV -Face 2295 -UV Count: 3 - UV - UV - UV -Face 2296 -UV Count: 3 - UV - UV - UV -Face 2297 -UV Count: 3 - UV - UV - UV -Face 2298 -UV Count: 3 - UV - UV - UV -Face 2299 -UV Count: 3 - UV - UV - UV -Face 2300 -UV Count: 3 - UV - UV - UV -Face 2301 -UV Count: 3 - UV - UV - UV -Face 2302 -UV Count: 3 - UV - UV - UV -Face 2303 -UV Count: 3 - UV - UV - UV -Face 2304 -UV Count: 3 - UV - UV - UV -Face 2305 -UV Count: 3 - UV - UV - UV -Face 2306 -UV Count: 3 - UV - UV - UV -Face 2307 -UV Count: 3 - UV - UV - UV -Face 2308 -UV Count: 3 - UV - UV - UV -Face 2309 -UV Count: 3 - UV - UV - UV -Face 2310 -UV Count: 3 - UV - UV - UV -Face 2311 -UV Count: 3 - UV - UV - UV -Face 2312 -UV Count: 3 - UV - UV - UV -Face 2313 -UV Count: 3 - UV - UV - UV -Face 2314 -UV Count: 3 - UV - UV - UV -Face 2315 -UV Count: 3 - UV - UV - UV -Face 2316 -UV Count: 3 - UV - UV - UV -Face 2317 -UV Count: 3 - UV - UV - UV -Face 2318 -UV Count: 3 - UV - UV - UV -Face 2319 -UV Count: 3 - UV - UV - UV -Face 2320 -UV Count: 3 - UV - UV - UV -Face 2321 -UV Count: 3 - UV - UV - UV -Face 2322 -UV Count: 3 - UV - UV - UV -Face 2323 -UV Count: 3 - UV - UV - UV -Face 2324 -UV Count: 3 - UV - UV - UV -Face 2325 -UV Count: 3 - UV - UV - UV -Face 2326 -UV Count: 3 - UV - UV - UV -Face 2327 -UV Count: 3 - UV - UV - UV -Face 2328 -UV Count: 3 - UV - UV - UV -Face 2329 -UV Count: 3 - UV - UV - UV -Face 2330 -UV Count: 3 - UV - UV - UV -Face 2331 -UV Count: 3 - UV - UV - UV -Face 2332 -UV Count: 3 - UV - UV - UV -Face 2333 -UV Count: 3 - UV - UV - UV -Face 2334 -UV Count: 3 - UV - UV - UV -Face 2335 -UV Count: 3 - UV - UV - UV -Face 2336 -UV Count: 3 - UV - UV - UV -Face 2337 -UV Count: 3 - UV - UV - UV -Face 2338 -UV Count: 3 - UV - UV - UV -Face 2339 -UV Count: 3 - UV - UV - UV -Face 2340 -UV Count: 3 - UV - UV - UV -Face 2341 -UV Count: 3 - UV - UV - UV -Face 2342 -UV Count: 3 - UV - UV - UV -Face 2343 -UV Count: 3 - UV - UV - UV -Face 2344 -UV Count: 3 - UV - UV - UV -Face 2345 -UV Count: 3 - UV - UV - UV -Face 2346 -UV Count: 3 - UV - UV - UV -Face 2347 -UV Count: 3 - UV - UV - UV -Face 2348 -UV Count: 3 - UV - UV - UV -Face 2349 -UV Count: 3 - UV - UV - UV -Face 2350 -UV Count: 3 - UV - UV - UV -Face 2351 -UV Count: 3 - UV - UV - UV -Face 2352 -UV Count: 3 - UV - UV - UV -Face 2353 -UV Count: 3 - UV - UV - UV -Face 2354 -UV Count: 3 - UV - UV - UV -Face 2355 -UV Count: 3 - UV - UV - UV -Face 2356 -UV Count: 3 - UV - UV - UV -Face 2357 -UV Count: 3 - UV - UV - UV -Face 2358 -UV Count: 3 - UV - UV - UV -Face 2359 -UV Count: 3 - UV - UV - UV -Face 2360 -UV Count: 3 - UV - UV - UV -Face 2361 -UV Count: 3 - UV - UV - UV -Face 2362 -UV Count: 3 - UV - UV - UV -Face 2363 -UV Count: 3 - UV - UV - UV -Face 2364 -UV Count: 3 - UV - UV - UV -Face 2365 -UV Count: 3 - UV - UV - UV -Face 2366 -UV Count: 3 - UV - UV - UV -Face 2367 -UV Count: 3 - UV - UV - UV -Face 2368 -UV Count: 3 - UV - UV - UV -Face 2369 -UV Count: 3 - UV - UV - UV -Face 2370 -UV Count: 3 - UV - UV - UV -Face 2371 -UV Count: 3 - UV - UV - UV -Face 2372 -UV Count: 3 - UV - UV - UV -Face 2373 -UV Count: 3 - UV - UV - UV -Face 2374 -UV Count: 3 - UV - UV - UV -Face 2375 -UV Count: 3 - UV - UV - UV -Face 2376 -UV Count: 3 - UV - UV - UV -Face 2377 -UV Count: 3 - UV - UV - UV -Face 2378 -UV Count: 3 - UV - UV - UV -Face 2379 -UV Count: 3 - UV - UV - UV -Face 2380 -UV Count: 3 - UV - UV - UV -Face 2381 -UV Count: 3 - UV - UV - UV -Face 2382 -UV Count: 3 - UV - UV - UV -Face 2383 -UV Count: 3 - UV - UV - UV -Face 2384 -UV Count: 3 - UV - UV - UV -Face 2385 -UV Count: 3 - UV - UV - UV -Face 2386 -UV Count: 3 - UV - UV - UV -Face 2387 -UV Count: 3 - UV - UV - UV -Face 2388 -UV Count: 3 - UV - UV - UV -Face 2389 -UV Count: 3 - UV - UV - UV -Face 2390 -UV Count: 3 - UV - UV - UV -Face 2391 -UV Count: 3 - UV - UV - UV -Face 2392 -UV Count: 3 - UV - UV - UV -Face 2393 -UV Count: 3 - UV - UV - UV -Face 2394 -UV Count: 3 - UV - UV - UV -Face 2395 -UV Count: 3 - UV - UV - UV -Face 2396 -UV Count: 3 - UV - UV - UV -Face 2397 -UV Count: 3 - UV - UV - UV -Face 2398 -UV Count: 3 - UV - UV - UV -Face 2399 -UV Count: 3 - UV - UV - UV -Face 2400 -UV Count: 3 - UV - UV - UV -Face 2401 -UV Count: 3 - UV - UV - UV -Face 2402 -UV Count: 3 - UV - UV - UV -Face 2403 -UV Count: 3 - UV - UV - UV -Face 2404 -UV Count: 3 - UV - UV - UV -Face 2405 -UV Count: 3 - UV - UV - UV -Face 2406 -UV Count: 3 - UV - UV - UV -Face 2407 -UV Count: 3 - UV - UV - UV -Face 2408 -UV Count: 3 - UV - UV - UV -Face 2409 -UV Count: 3 - UV - UV - UV -Face 2410 -UV Count: 3 - UV - UV - UV -Face 2411 -UV Count: 3 - UV - UV - UV -Face 2412 -UV Count: 3 - UV - UV - UV -Face 2413 -UV Count: 3 - UV - UV - UV -Face 2414 -UV Count: 3 - UV - UV - UV -Face 2415 -UV Count: 3 - UV - UV - UV -Face 2416 -UV Count: 3 - UV - UV - UV -Face 2417 -UV Count: 3 - UV - UV - UV -Face 2418 -UV Count: 3 - UV - UV - UV -Face 2419 -UV Count: 3 - UV - UV - UV -Face 2420 -UV Count: 3 - UV - UV - UV -Face 2421 -UV Count: 3 - UV - UV - UV -Face 2422 -UV Count: 3 - UV - UV - UV -Face 2423 -UV Count: 3 - UV - UV - UV -Face 2424 -UV Count: 3 - UV - UV - UV -Face 2425 -UV Count: 3 - UV - UV - UV -Face 2426 -UV Count: 3 - UV - UV - UV -Face 2427 -UV Count: 3 - UV - UV - UV -Face 2428 -UV Count: 3 - UV - UV - UV -Face 2429 -UV Count: 3 - UV - UV - UV -Face 2430 -UV Count: 3 - UV - UV - UV -Face 2431 -UV Count: 3 - UV - UV - UV -Face 2432 -UV Count: 3 - UV - UV - UV -Face 2433 -UV Count: 3 - UV - UV - UV -Face 2434 -UV Count: 3 - UV - UV - UV -Face 2435 -UV Count: 3 - UV - UV - UV -Face 2436 -UV Count: 3 - UV - UV - UV -Face 2437 -UV Count: 3 - UV - UV - UV -Face 2438 -UV Count: 3 - UV - UV - UV -Face 2439 -UV Count: 3 - UV - UV - UV -Face 2440 -UV Count: 3 - UV - UV - UV -Face 2441 -UV Count: 3 - UV - UV - UV -Face 2442 -UV Count: 3 - UV - UV - UV -Face 2443 -UV Count: 3 - UV - UV - UV -Face 2444 -UV Count: 3 - UV - UV - UV -Face 2445 -UV Count: 3 - UV - UV - UV -Face 2446 -UV Count: 3 - UV - UV - UV -Face 2447 -UV Count: 3 - UV - UV - UV -Face 2448 -UV Count: 3 - UV - UV - UV -Face 2449 -UV Count: 3 - UV - UV - UV -Face 2450 -UV Count: 3 - UV - UV - UV -Face 2451 -UV Count: 3 - UV - UV - UV -Face 2452 -UV Count: 3 - UV - UV - UV -Face 2453 -UV Count: 3 - UV - UV - UV -Face 2454 -UV Count: 3 - UV - UV - UV -Face 2455 -UV Count: 3 - UV - UV - UV -Face 2456 -UV Count: 3 - UV - UV - UV -Face 2457 -UV Count: 3 - UV - UV - UV -Face 2458 -UV Count: 3 - UV - UV - UV -Face 2459 -UV Count: 3 - UV - UV - UV -Face 2460 -UV Count: 3 - UV - UV - UV -Face 2461 -UV Count: 3 - UV - UV - UV -Face 2462 -UV Count: 3 - UV - UV - UV -Face 2463 -UV Count: 3 - UV - UV - UV -Face 2464 -UV Count: 3 - UV - UV - UV -Face 2465 -UV Count: 3 - UV - UV - UV -Face 2466 -UV Count: 3 - UV - UV - UV -Face 2467 -UV Count: 3 - UV - UV - UV -Face 2468 -UV Count: 3 - UV - UV - UV -Face 2469 -UV Count: 3 - UV - UV - UV -Face 2470 -UV Count: 3 - UV - UV - UV -Face 2471 -UV Count: 3 - UV - UV - UV -Face 2472 -UV Count: 3 - UV - UV - UV -Face 2473 -UV Count: 3 - UV - UV - UV -Face 2474 -UV Count: 3 - UV - UV - UV -Face 2475 -UV Count: 3 - UV - UV - UV -Face 2476 -UV Count: 3 - UV - UV - UV -Face 2477 -UV Count: 3 - UV - UV - UV -Face 2478 -UV Count: 3 - UV - UV - UV -Face 2479 -UV Count: 3 - UV - UV - UV -Face 2480 -UV Count: 3 - UV - UV - UV -Face 2481 -UV Count: 3 - UV - UV - UV -Face 2482 -UV Count: 3 - UV - UV - UV -Face 2483 -UV Count: 3 - UV - UV - UV -Face 2484 -UV Count: 3 - UV - UV - UV -Face 2485 -UV Count: 3 - UV - UV - UV -Face 2486 -UV Count: 3 - UV - UV - UV -Face 2487 -UV Count: 3 - UV - UV - UV -Face 2488 -UV Count: 3 - UV - UV - UV -Face 2489 -UV Count: 3 - UV - UV - UV -Face 2490 -UV Count: 3 - UV - UV - UV -Face 2491 -UV Count: 3 - UV - UV - UV -Face 2492 -UV Count: 3 - UV - UV - UV -Face 2493 -UV Count: 3 - UV - UV - UV -Face 2494 -UV Count: 3 - UV - UV - UV -Face 2495 -UV Count: 3 - UV - UV - UV -Face 2496 -UV Count: 3 - UV - UV - UV -Face 2497 -UV Count: 3 - UV - UV - UV -Face 2498 -UV Count: 3 - UV - UV - UV -Face 2499 -UV Count: 3 - UV - UV - UV -Face 2500 -UV Count: 3 - UV - UV - UV -Face 2501 -UV Count: 3 - UV - UV - UV -Face 2502 -UV Count: 3 - UV - UV - UV -Face 2503 -UV Count: 3 - UV - UV - UV -Face 2504 -UV Count: 3 - UV - UV - UV -Face 2505 -UV Count: 3 - UV - UV - UV -Face 2506 -UV Count: 3 - UV - UV - UV -Face 2507 -UV Count: 3 - UV - UV - UV -Face 2508 -UV Count: 3 - UV - UV - UV -Face 2509 -UV Count: 3 - UV - UV - UV -Face 2510 -UV Count: 3 - UV - UV - UV -Face 2511 -UV Count: 3 - UV - UV - UV -Face 2512 -UV Count: 3 - UV - UV - UV -Face 2513 -UV Count: 3 - UV - UV - UV -Face 2514 -UV Count: 3 - UV - UV - UV -Face 2515 -UV Count: 3 - UV - UV - UV -Face 2516 -UV Count: 3 - UV - UV - UV -Face 2517 -UV Count: 3 - UV - UV - UV -Face 2518 -UV Count: 3 - UV - UV - UV -Face 2519 -UV Count: 3 - UV - UV - UV -Face 2520 -UV Count: 3 - UV - UV - UV -Face 2521 -UV Count: 3 - UV - UV - UV -Face 2522 -UV Count: 3 - UV - UV - UV -Face 2523 -UV Count: 3 - UV - UV - UV -Face 2524 -UV Count: 3 - UV - UV - UV -Face 2525 -UV Count: 3 - UV - UV - UV -Face 2526 -UV Count: 3 - UV - UV - UV -Face 2527 -UV Count: 3 - UV - UV - UV -Face 2528 -UV Count: 3 - UV - UV - UV -Face 2529 -UV Count: 3 - UV - UV - UV -Face 2530 -UV Count: 3 - UV - UV - UV -Face 2531 -UV Count: 3 - UV - UV - UV -Face 2532 -UV Count: 3 - UV - UV - UV -Face 2533 -UV Count: 3 - UV - UV - UV -Face 2534 -UV Count: 3 - UV - UV - UV -Face 2535 -UV Count: 3 - UV - UV - UV -Face 2536 -UV Count: 3 - UV - UV - UV -Face 2537 -UV Count: 3 - UV - UV - UV -Face 2538 -UV Count: 3 - UV - UV - UV -Face 2539 -UV Count: 3 - UV - UV - UV -Face 2540 -UV Count: 3 - UV - UV - UV -Face 2541 -UV Count: 3 - UV - UV - UV -Face 2542 -UV Count: 3 - UV - UV - UV -Face 2543 -UV Count: 3 - UV - UV - UV -Face 2544 -UV Count: 3 - UV - UV - UV -Face 2545 -UV Count: 3 - UV - UV - UV -Face 2546 -UV Count: 3 - UV - UV - UV -Face 2547 -UV Count: 3 - UV - UV - UV -Face 2548 -UV Count: 3 - UV - UV - UV -Face 2549 -UV Count: 3 - UV - UV - UV -Face 2550 -UV Count: 3 - UV - UV - UV -Face 2551 -UV Count: 3 - UV - UV - UV -Face 2552 -UV Count: 3 - UV - UV - UV -Face 2553 -UV Count: 3 - UV - UV - UV -Face 2554 -UV Count: 3 - UV - UV - UV -Face 2555 -UV Count: 3 - UV - UV - UV -Face 2556 -UV Count: 3 - UV - UV - UV -Face 2557 -UV Count: 3 - UV - UV - UV -Face 2558 -UV Count: 3 - UV - UV - UV -Face 2559 -UV Count: 3 - UV - UV - UV -Face 2560 -UV Count: 3 - UV - UV - UV -Face 2561 -UV Count: 3 - UV - UV - UV -Face 2562 -UV Count: 3 - UV - UV - UV -Face 2563 -UV Count: 3 - UV - UV - UV -Face 2564 -UV Count: 3 - UV - UV - UV -Face 2565 -UV Count: 3 - UV - UV - UV -Face 2566 -UV Count: 3 - UV - UV - UV -Face 2567 -UV Count: 3 - UV - UV - UV -Face 2568 -UV Count: 3 - UV - UV - UV -Face 2569 -UV Count: 3 - UV - UV - UV -Face 2570 -UV Count: 3 - UV - UV - UV -Face 2571 -UV Count: 3 - UV - UV - UV -Face 2572 -UV Count: 3 - UV - UV - UV -Face 2573 -UV Count: 3 - UV - UV - UV -Face 2574 -UV Count: 3 - UV - UV - UV -Face 2575 -UV Count: 3 - UV - UV - UV -Face 2576 -UV Count: 3 - UV - UV - UV -Face 2577 -UV Count: 3 - UV - UV - UV -Face 2578 -UV Count: 3 - UV - UV - UV -Face 2579 -UV Count: 3 - UV - UV - UV -Face 2580 -UV Count: 3 - UV - UV - UV -Face 2581 -UV Count: 3 - UV - UV - UV -Face 2582 -UV Count: 3 - UV - UV - UV -Face 2583 -UV Count: 3 - UV - UV - UV -Face 2584 -UV Count: 3 - UV - UV - UV -Face 2585 -UV Count: 3 - UV - UV - UV -Face 2586 -UV Count: 3 - UV - UV - UV -Face 2587 -UV Count: 3 - UV - UV - UV -Face 2588 -UV Count: 3 - UV - UV - UV -Face 2589 -UV Count: 3 - UV - UV - UV -Face 2590 -UV Count: 3 - UV - UV - UV -Face 2591 -UV Count: 3 - UV - UV - UV -Face 2592 -UV Count: 3 - UV - UV - UV -Face 2593 -UV Count: 3 - UV - UV - UV -Face 2594 -UV Count: 3 - UV - UV - UV -Face 2595 -UV Count: 3 - UV - UV - UV -Face 2596 -UV Count: 3 - UV - UV - UV -Face 2597 -UV Count: 3 - UV - UV - UV -Face 2598 -UV Count: 3 - UV - UV - UV -Face 2599 -UV Count: 3 - UV - UV - UV -Face 2600 -UV Count: 3 - UV - UV - UV -Face 2601 -UV Count: 3 - UV - UV - UV -Face 2602 -UV Count: 3 - UV - UV - UV -Face 2603 -UV Count: 3 - UV - UV - UV -Face 2604 -UV Count: 3 - UV - UV - UV -Face 2605 -UV Count: 3 - UV - UV - UV -Face 2606 -UV Count: 3 - UV - UV - UV -Face 2607 -UV Count: 3 - UV - UV - UV -Face 2608 -UV Count: 3 - UV - UV - UV -Face 2609 -UV Count: 3 - UV - UV - UV -Face 2610 -UV Count: 3 - UV - UV - UV -Face 2611 -UV Count: 3 - UV - UV - UV -Face 2612 -UV Count: 3 - UV - UV - UV -Face 2613 -UV Count: 3 - UV - UV - UV -Face 2614 -UV Count: 3 - UV - UV - UV -Face 2615 -UV Count: 3 - UV - UV - UV -Face 2616 -UV Count: 3 - UV - UV - UV -Face 2617 -UV Count: 3 - UV - UV - UV -Face 2618 -UV Count: 3 - UV - UV - UV -Face 2619 -UV Count: 3 - UV - UV - UV -Face 2620 -UV Count: 3 - UV - UV - UV -Face 2621 -UV Count: 3 - UV - UV - UV -Face 2622 -UV Count: 3 - UV - UV - UV -Face 2623 -UV Count: 3 - UV - UV - UV -Face 2624 -UV Count: 3 - UV - UV - UV -Face 2625 -UV Count: 3 - UV - UV - UV -Face 2626 -UV Count: 3 - UV - UV - UV -Face 2627 -UV Count: 3 - UV - UV - UV -Face 2628 -UV Count: 3 - UV - UV - UV -Face 2629 -UV Count: 3 - UV - UV - UV -Face 2630 -UV Count: 3 - UV - UV - UV -Face 2631 -UV Count: 3 - UV - UV - UV -Face 2632 -UV Count: 3 - UV - UV - UV -Face 2633 -UV Count: 3 - UV - UV - UV -Face 2634 -UV Count: 3 - UV - UV - UV -Face 2635 -UV Count: 3 - UV - UV - UV -Face 2636 -UV Count: 3 - UV - UV - UV -Face 2637 -UV Count: 3 - UV - UV - UV -Face 2638 -UV Count: 3 - UV - UV - UV -Face 2639 -UV Count: 3 - UV - UV - UV -Face 2640 -UV Count: 3 - UV - UV - UV -Face 2641 -UV Count: 3 - UV - UV - UV -Face 2642 -UV Count: 3 - UV - UV - UV -Face 2643 -UV Count: 3 - UV - UV - UV -Face 2644 -UV Count: 3 - UV - UV - UV -Face 2645 -UV Count: 3 - UV - UV - UV -Face 2646 -UV Count: 3 - UV - UV - UV -Face 2647 -UV Count: 3 - UV - UV - UV -Face 2648 -UV Count: 3 - UV - UV - UV -Face 2649 -UV Count: 3 - UV - UV - UV -Face 2650 -UV Count: 3 - UV - UV - UV -Face 2651 -UV Count: 3 - UV - UV - UV -Face 2652 -UV Count: 3 - UV - UV - UV -Face 2653 -UV Count: 3 - UV - UV - UV -Face 2654 -UV Count: 3 - UV - UV - UV -Face 2655 -UV Count: 3 - UV - UV - UV -Face 2656 -UV Count: 3 - UV - UV - UV -Face 2657 -UV Count: 3 - UV - UV - UV -Face 2658 -UV Count: 3 - UV - UV - UV -Face 2659 -UV Count: 3 - UV - UV - UV -Face 2660 -UV Count: 3 - UV - UV - UV -Face 2661 -UV Count: 3 - UV - UV - UV -Face 2662 -UV Count: 3 - UV - UV - UV -Face 2663 -UV Count: 3 - UV - UV - UV -Face 2664 -UV Count: 3 - UV - UV - UV -Face 2665 -UV Count: 3 - UV - UV - UV -Face 2666 -UV Count: 3 - UV - UV - UV -Face 2667 -UV Count: 3 - UV - UV - UV -Face 2668 -UV Count: 3 - UV - UV - UV -Face 2669 -UV Count: 3 - UV - UV - UV -Face 2670 -UV Count: 3 - UV - UV - UV -Face 2671 -UV Count: 3 - UV - UV - UV -Face 2672 -UV Count: 3 - UV - UV - UV -Face 2673 -UV Count: 3 - UV - UV - UV -Face 2674 -UV Count: 3 - UV - UV - UV -Face 2675 -UV Count: 3 - UV - UV - UV -Face 2676 -UV Count: 3 - UV - UV - UV -Face 2677 -UV Count: 3 - UV - UV - UV -Face 2678 -UV Count: 3 - UV - UV - UV -Face 2679 -UV Count: 3 - UV - UV - UV -Face 2680 -UV Count: 3 - UV - UV - UV -Face 2681 -UV Count: 3 - UV - UV - UV -Face 2682 -UV Count: 3 - UV - UV - UV -Face 2683 -UV Count: 3 - UV - UV - UV -Face 2684 -UV Count: 3 - UV - UV - UV -Face 2685 -UV Count: 3 - UV - UV - UV -Face 2686 -UV Count: 3 - UV - UV - UV -Face 2687 -UV Count: 3 - UV - UV - UV -Face 2688 -UV Count: 3 - UV - UV - UV -Face 2689 -UV Count: 3 - UV - UV - UV -Face 2690 -UV Count: 3 - UV - UV - UV -Face 2691 -UV Count: 3 - UV - UV - UV -Face 2692 -UV Count: 3 - UV - UV - UV -Face 2693 -UV Count: 3 - UV - UV - UV -Face 2694 -UV Count: 3 - UV - UV - UV -Face 2695 -UV Count: 3 - UV - UV - UV -Face 2696 -UV Count: 3 - UV - UV - UV -Face 2697 -UV Count: 3 - UV - UV - UV -Face 2698 -UV Count: 3 - UV - UV - UV -Face 2699 -UV Count: 3 - UV - UV - UV -Face 2700 -UV Count: 3 - UV - UV - UV -Face 2701 -UV Count: 3 - UV - UV - UV -Face 2702 -UV Count: 3 - UV - UV - UV -Face 2703 -UV Count: 3 - UV - UV - UV -Face 2704 -UV Count: 3 - UV - UV - UV -Face 2705 -UV Count: 3 - UV - UV - UV -Face 2706 -UV Count: 3 - UV - UV - UV -Face 2707 -UV Count: 3 - UV - UV - UV -Face 2708 -UV Count: 3 - UV - UV - UV -Face 2709 -UV Count: 3 - UV - UV - UV -Face 2710 -UV Count: 3 - UV - UV - UV -Face 2711 -UV Count: 3 - UV - UV - UV -Face 2712 -UV Count: 3 - UV - UV - UV -Face 2713 -UV Count: 3 - UV - UV - UV -Face 2714 -UV Count: 3 - UV - UV - UV -Face 2715 -UV Count: 3 - UV - UV - UV -Face 2716 -UV Count: 3 - UV - UV - UV -Face 2717 -UV Count: 3 - UV - UV - UV -Face 2718 -UV Count: 3 - UV - UV - UV -Face 2719 -UV Count: 3 - UV - UV - UV -Face 2720 -UV Count: 3 - UV - UV - UV -Face 2721 -UV Count: 3 - UV - UV - UV -Face 2722 -UV Count: 3 - UV - UV - UV -Face 2723 -UV Count: 3 - UV - UV - UV -Face 2724 -UV Count: 3 - UV - UV - UV -Face 2725 -UV Count: 3 - UV - UV - UV -Face 2726 -UV Count: 3 - UV - UV - UV -Face 2727 -UV Count: 3 - UV - UV - UV -Face 2728 -UV Count: 3 - UV - UV - UV -Face 2729 -UV Count: 3 - UV - UV - UV -Face 2730 -UV Count: 3 - UV - UV - UV -Face 2731 -UV Count: 3 - UV - UV - UV -Face 2732 -UV Count: 3 - UV - UV - UV -Face 2733 -UV Count: 3 - UV - UV - UV -Face 2734 -UV Count: 3 - UV - UV - UV -Face 2735 -UV Count: 3 - UV - UV - UV -Face 2736 -UV Count: 3 - UV - UV - UV -Face 2737 -UV Count: 3 - UV - UV - UV -Face 2738 -UV Count: 3 - UV - UV - UV -Face 2739 -UV Count: 3 - UV - UV - UV -Face 2740 -UV Count: 3 - UV - UV - UV -Face 2741 -UV Count: 3 - UV - UV - UV -Face 2742 -UV Count: 3 - UV - UV - UV -Face 2743 -UV Count: 3 - UV - UV - UV -Face 2744 -UV Count: 3 - UV - UV - UV -Face 2745 -UV Count: 3 - UV - UV - UV -Face 2746 -UV Count: 3 - UV - UV - UV -Face 2747 -UV Count: 3 - UV - UV - UV -Face 2748 -UV Count: 3 - UV - UV - UV -Face 2749 -UV Count: 3 - UV - UV - UV -Face 2750 -UV Count: 3 - UV - UV - UV -Face 2751 -UV Count: 3 - UV - UV - UV -Face 2752 -UV Count: 3 - UV - UV - UV -Face 2753 -UV Count: 3 - UV - UV - UV -Face 2754 -UV Count: 3 - UV - UV - UV -Face 2755 -UV Count: 3 - UV - UV - UV -Face 2756 -UV Count: 3 - UV - UV - UV -Face 2757 -UV Count: 3 - UV - UV - UV -Face 2758 -UV Count: 3 - UV - UV - UV -Face 2759 -UV Count: 3 - UV - UV - UV -Face 2760 -UV Count: 3 - UV - UV - UV -Face 2761 -UV Count: 3 - UV - UV - UV -Face 2762 -UV Count: 3 - UV - UV - UV -Face 2763 -UV Count: 3 - UV - UV - UV -Face 2764 -UV Count: 3 - UV - UV - UV -Face 2765 -UV Count: 3 - UV - UV - UV -Face 2766 -UV Count: 3 - UV - UV - UV -Face 2767 -UV Count: 3 - UV - UV - UV -Face 2768 -UV Count: 3 - UV - UV - UV -Face 2769 -UV Count: 3 - UV - UV - UV -Face 2770 -UV Count: 3 - UV - UV - UV -Face 2771 -UV Count: 3 - UV - UV - UV -Face 2772 -UV Count: 3 - UV - UV - UV -Face 2773 -UV Count: 3 - UV - UV - UV -Face 2774 -UV Count: 3 - UV - UV - UV -Face 2775 -UV Count: 3 - UV - UV - UV -Face 2776 -UV Count: 3 - UV - UV - UV -Face 2777 -UV Count: 3 - UV - UV - UV -Face 2778 -UV Count: 3 - UV - UV - UV -Face 2779 -UV Count: 3 - UV - UV - UV -Face 2780 -UV Count: 3 - UV - UV - UV -Face 2781 -UV Count: 3 - UV - UV - UV -Face 2782 -UV Count: 3 - UV - UV - UV -Face 2783 -UV Count: 3 - UV - UV - UV -Face 2784 -UV Count: 3 - UV - UV - UV -Face 2785 -UV Count: 3 - UV - UV - UV -Face 2786 -UV Count: 3 - UV - UV - UV -Face 2787 -UV Count: 3 - UV - UV - UV -Face 2788 -UV Count: 3 - UV - UV - UV -Face 2789 -UV Count: 3 - UV - UV - UV -Face 2790 -UV Count: 3 - UV - UV - UV -Face 2791 -UV Count: 3 - UV - UV - UV -Face 2792 -UV Count: 3 - UV - UV - UV -Face 2793 -UV Count: 3 - UV - UV - UV -Face 2794 -UV Count: 3 - UV - UV - UV -Face 2795 -UV Count: 3 - UV - UV - UV -Face 2796 -UV Count: 3 - UV - UV - UV -Face 2797 -UV Count: 3 - UV - UV - UV -Face 2798 -UV Count: 3 - UV - UV - UV -Face 2799 -UV Count: 3 - UV - UV - UV -Face 2800 -UV Count: 3 - UV - UV - UV -Face 2801 -UV Count: 3 - UV - UV - UV -Face 2802 -UV Count: 3 - UV - UV - UV -Face 2803 -UV Count: 3 - UV - UV - UV -Face 2804 -UV Count: 3 - UV - UV - UV -Face 2805 -UV Count: 3 - UV - UV - UV -Face 2806 -UV Count: 3 - UV - UV - UV -Face 2807 -UV Count: 3 - UV - UV - UV -Face 2808 -UV Count: 3 - UV - UV - UV -Face 2809 -UV Count: 3 - UV - UV - UV -Face 2810 -UV Count: 3 - UV - UV - UV -Face 2811 -UV Count: 3 - UV - UV - UV -Face 2812 -UV Count: 3 - UV - UV - UV -Face 2813 -UV Count: 3 - UV - UV - UV -Face 2814 -UV Count: 3 - UV - UV - UV -Face 2815 -UV Count: 3 - UV - UV - UV -Face 2816 -UV Count: 3 - UV - UV - UV -Face 2817 -UV Count: 3 - UV - UV - UV -Face 2818 -UV Count: 3 - UV - UV - UV -Face 2819 -UV Count: 3 - UV - UV - UV -Face 2820 -UV Count: 3 - UV - UV - UV -Face 2821 -UV Count: 3 - UV - UV - UV -Face 2822 -UV Count: 3 - UV - UV - UV -Face 2823 -UV Count: 3 - UV - UV - UV -Face 2824 -UV Count: 3 - UV - UV - UV -Face 2825 -UV Count: 3 - UV - UV - UV -Face 2826 -UV Count: 3 - UV - UV - UV -Face 2827 -UV Count: 3 - UV - UV - UV -Face 2828 -UV Count: 3 - UV - UV - UV -Face 2829 -UV Count: 3 - UV - UV - UV -Face 2830 -UV Count: 3 - UV - UV - UV -Face 2831 -UV Count: 3 - UV - UV - UV -Face 2832 -UV Count: 3 - UV - UV - UV -Face 2833 -UV Count: 3 - UV - UV - UV -Face 2834 -UV Count: 3 - UV - UV - UV -Face 2835 -UV Count: 3 - UV - UV - UV -Face 2836 -UV Count: 3 - UV - UV - UV -Face 2837 -UV Count: 3 - UV - UV - UV -Face 2838 -UV Count: 3 - UV - UV - UV -Face 2839 -UV Count: 3 - UV - UV - UV -Face 2840 -UV Count: 3 - UV - UV - UV -Face 2841 -UV Count: 3 - UV - UV - UV -Face 2842 -UV Count: 3 - UV - UV - UV -Face 2843 -UV Count: 3 - UV - UV - UV -Face 2844 -UV Count: 3 - UV - UV - UV -Face 2845 -UV Count: 3 - UV - UV - UV -Face 2846 -UV Count: 3 - UV - UV - UV -Face 2847 -UV Count: 3 - UV - UV - UV -Face 2848 -UV Count: 3 - UV - UV - UV -Face 2849 -UV Count: 3 - UV - UV - UV -Face 2850 -UV Count: 3 - UV - UV - UV -Face 2851 -UV Count: 3 - UV - UV - UV -Face 2852 -UV Count: 3 - UV - UV - UV -Face 2853 -UV Count: 3 - UV - UV - UV -Face 2854 -UV Count: 3 - UV - UV - UV -Face 2855 -UV Count: 3 - UV - UV - UV -Face 2856 -UV Count: 3 - UV - UV - UV -Face 2857 -UV Count: 3 - UV - UV - UV -Face 2858 -UV Count: 3 - UV - UV - UV -Face 2859 -UV Count: 3 - UV - UV - UV -Face 2860 -UV Count: 3 - UV - UV - UV -Face 2861 -UV Count: 3 - UV - UV - UV -Face 2862 -UV Count: 3 - UV - UV - UV -Face 2863 -UV Count: 3 - UV - UV - UV -Face 2864 -UV Count: 3 - UV - UV - UV -Face 2865 -UV Count: 3 - UV - UV - UV -Face 2866 -UV Count: 3 - UV - UV - UV -Face 2867 -UV Count: 3 - UV - UV - UV -Face 2868 -UV Count: 3 - UV - UV - UV -Face 2869 -UV Count: 3 - UV - UV - UV -Face 2870 -UV Count: 3 - UV - UV - UV -Face 2871 -UV Count: 3 - UV - UV - UV -Face 2872 -UV Count: 3 - UV - UV - UV -Face 2873 -UV Count: 3 - UV - UV - UV -Face 2874 -UV Count: 3 - UV - UV - UV -Face 2875 -UV Count: 3 - UV - UV - UV -Face 2876 -UV Count: 3 - UV - UV - UV -Face 2877 -UV Count: 3 - UV - UV - UV -Face 2878 -UV Count: 3 - UV - UV - UV -Face 2879 -UV Count: 3 - UV - UV - UV -Face 2880 -UV Count: 3 - UV - UV - UV -Face 2881 -UV Count: 3 - UV - UV - UV -Face 2882 -UV Count: 3 - UV - UV - UV -Face 2883 -UV Count: 3 - UV - UV - UV -Face 2884 -UV Count: 3 - UV - UV - UV -Face 2885 -UV Count: 3 - UV - UV - UV -Face 2886 -UV Count: 3 - UV - UV - UV -Face 2887 -UV Count: 3 - UV - UV - UV -Face 2888 -UV Count: 3 - UV - UV - UV -Face 2889 -UV Count: 3 - UV - UV - UV -Face 2890 -UV Count: 3 - UV - UV - UV -Face 2891 -UV Count: 3 - UV - UV - UV -Face 2892 -UV Count: 3 - UV - UV - UV -Face 2893 -UV Count: 3 - UV - UV - UV -Face 2894 -UV Count: 3 - UV - UV - UV -Face 2895 -UV Count: 3 - UV - UV - UV -Face 2896 -UV Count: 3 - UV - UV - UV -Face 2897 -UV Count: 3 - UV - UV - UV -Face 2898 -UV Count: 3 - UV - UV - UV -Face 2899 -UV Count: 3 - UV - UV - UV -Face 2900 -UV Count: 3 - UV - UV - UV -Face 2901 -UV Count: 3 - UV - UV - UV -Face 2902 -UV Count: 3 - UV - UV - UV -Face 2903 -UV Count: 3 - UV - UV - UV -Face 2904 -UV Count: 3 - UV - UV - UV -Face 2905 -UV Count: 3 - UV - UV - UV -Face 2906 -UV Count: 3 - UV - UV - UV -Face 2907 -UV Count: 3 - UV - UV - UV -Face 2908 -UV Count: 3 - UV - UV - UV -Face 2909 -UV Count: 3 - UV - UV - UV -Face 2910 -UV Count: 3 - UV - UV - UV -Face 2911 -UV Count: 3 - UV - UV - UV -Face 2912 -UV Count: 3 - UV - UV - UV -Face 2913 -UV Count: 3 - UV - UV - UV -Face 2914 -UV Count: 3 - UV - UV - UV -Face 2915 -UV Count: 3 - UV - UV - UV -Face 2916 -UV Count: 3 - UV - UV - UV -Face 2917 -UV Count: 3 - UV - UV - UV -Face 2918 -UV Count: 3 - UV - UV - UV -Face 2919 -UV Count: 3 - UV - UV - UV -Face 2920 -UV Count: 3 - UV - UV - UV -Face 2921 -UV Count: 3 - UV - UV - UV -Face 2922 -UV Count: 3 - UV - UV - UV -Face 2923 -UV Count: 3 - UV - UV - UV -Face 2924 -UV Count: 3 - UV - UV - UV -Face 2925 -UV Count: 3 - UV - UV - UV -Face 2926 -UV Count: 3 - UV - UV - UV -Face 2927 -UV Count: 3 - UV - UV - UV -Face 2928 -UV Count: 3 - UV - UV - UV -Face 2929 -UV Count: 3 - UV - UV - UV -Face 2930 -UV Count: 3 - UV - UV - UV -Face 2931 -UV Count: 3 - UV - UV - UV -Face 2932 -UV Count: 3 - UV - UV - UV -Face 2933 -UV Count: 3 - UV - UV - UV -Face 2934 -UV Count: 3 - UV - UV - UV -Face 2935 -UV Count: 3 - UV - UV - UV -Face 2936 -UV Count: 3 - UV - UV - UV -Face 2937 -UV Count: 3 - UV - UV - UV -Face 2938 -UV Count: 3 - UV - UV - UV -Face 2939 -UV Count: 3 - UV - UV - UV -Face 2940 -UV Count: 3 - UV - UV - UV -Face 2941 -UV Count: 3 - UV - UV - UV -Face 2942 -UV Count: 3 - UV - UV - UV -Face 2943 -UV Count: 3 - UV - UV - UV -Face 2944 -UV Count: 3 - UV - UV - UV -Face 2945 -UV Count: 3 - UV - UV - UV -Face 2946 -UV Count: 3 - UV - UV - UV -Face 2947 -UV Count: 3 - UV - UV - UV -Face 2948 -UV Count: 3 - UV - UV - UV -Face 2949 -UV Count: 3 - UV - UV - UV -Face 2950 -UV Count: 3 - UV - UV - UV -Face 2951 -UV Count: 3 - UV - UV - UV -Face 2952 -UV Count: 3 - UV - UV - UV -Face 2953 -UV Count: 3 - UV - UV - UV -Face 2954 -UV Count: 3 - UV - UV - UV -Face 2955 -UV Count: 3 - UV - UV - UV -Face 2956 -UV Count: 3 - UV - UV - UV -Face 2957 -UV Count: 3 - UV - UV - UV -Face 2958 -UV Count: 3 - UV - UV - UV -Face 2959 -UV Count: 3 - UV - UV - UV -Face 2960 -UV Count: 3 - UV - UV - UV -Face 2961 -UV Count: 3 - UV - UV - UV -Face 2962 -UV Count: 3 - UV - UV - UV -Face 2963 -UV Count: 3 - UV - UV - UV -Face 2964 -UV Count: 3 - UV - UV - UV -Face 2965 -UV Count: 3 - UV - UV - UV -Face 2966 -UV Count: 3 - UV - UV - UV -Face 2967 -UV Count: 3 - UV - UV - UV -Face 2968 -UV Count: 3 - UV - UV - UV -Face 2969 -UV Count: 3 - UV - UV - UV -Face 2970 -UV Count: 3 - UV - UV - UV -Face 2971 -UV Count: 3 - UV - UV - UV -Face 2972 -UV Count: 3 - UV - UV - UV -Face 2973 -UV Count: 3 - UV - UV - UV -Face 2974 -UV Count: 3 - UV - UV - UV -Face 2975 -UV Count: 3 - UV - UV - UV -Face 2976 -UV Count: 3 - UV - UV - UV -Face 2977 -UV Count: 3 - UV - UV - UV -Face 2978 -UV Count: 3 - UV - UV - UV -Face 2979 -UV Count: 3 - UV - UV - UV -Face 2980 -UV Count: 3 - UV - UV - UV -Face 2981 -UV Count: 3 - UV - UV - UV -Face 2982 -UV Count: 3 - UV - UV - UV -Face 2983 -UV Count: 3 - UV - UV - UV -Face 2984 -UV Count: 3 - UV - UV - UV -Face 2985 -UV Count: 3 - UV - UV - UV -Face 2986 -UV Count: 3 - UV - UV - UV -Face 2987 -UV Count: 3 - UV - UV - UV -Face 2988 -UV Count: 3 - UV - UV - UV -Face 2989 -UV Count: 3 - UV - UV - UV -Face 2990 -UV Count: 3 - UV - UV - UV -Face 2991 -UV Count: 3 - UV - UV - UV -Face 2992 -UV Count: 3 - UV - UV - UV -Face 2993 -UV Count: 3 - UV - UV - UV -Face 2994 -UV Count: 3 - UV - UV - UV -Face 2995 -UV Count: 3 - UV - UV - UV -Face 2996 -UV Count: 3 - UV - UV - UV -Face 2997 -UV Count: 3 - UV - UV - UV -Face 2998 -UV Count: 3 - UV - UV - UV -Face 2999 -UV Count: 3 - UV - UV - UV -Face 3000 -UV Count: 3 - UV - UV - UV -Face 3001 -UV Count: 3 - UV - UV - UV -Face 3002 -UV Count: 3 - UV - UV - UV -Face 3003 -UV Count: 3 - UV - UV - UV -Face 3004 -UV Count: 3 - UV - UV - UV -Face 3005 -UV Count: 3 - UV - UV - UV -Face 3006 -UV Count: 3 - UV - UV - UV -Face 3007 -UV Count: 3 - UV - UV - UV -Face 3008 -UV Count: 3 - UV - UV - UV -Face 3009 -UV Count: 3 - UV - UV - UV -Face 3010 -UV Count: 3 - UV - UV - UV -Face 3011 -UV Count: 3 - UV - UV - UV -Face 3012 -UV Count: 3 - UV - UV - UV -Face 3013 -UV Count: 3 - UV - UV - UV -Face 3014 -UV Count: 3 - UV - UV - UV -Face 3015 -UV Count: 3 - UV - UV - UV -Face 3016 -UV Count: 3 - UV - UV - UV -Face 3017 -UV Count: 3 - UV - UV - UV -Face 3018 -UV Count: 3 - UV - UV - UV -Face 3019 -UV Count: 3 - UV - UV - UV -Face 3020 -UV Count: 3 - UV - UV - UV -Face 3021 -UV Count: 3 - UV - UV - UV -Face 3022 -UV Count: 3 - UV - UV - UV -Face 3023 -UV Count: 3 - UV - UV - UV -Face 3024 -UV Count: 3 - UV - UV - UV -Face 3025 -UV Count: 3 - UV - UV - UV -Face 3026 -UV Count: 3 - UV - UV - UV -Face 3027 -UV Count: 3 - UV - UV - UV -Face 3028 -UV Count: 3 - UV - UV - UV -Face 3029 -UV Count: 3 - UV - UV - UV -Face 3030 -UV Count: 3 - UV - UV - UV -Face 3031 -UV Count: 3 - UV - UV - UV -Face 3032 -UV Count: 3 - UV - UV - UV -Face 3033 -UV Count: 3 - UV - UV - UV -Face 3034 -UV Count: 3 - UV - UV - UV -Face 3035 -UV Count: 3 - UV - UV - UV -Face 3036 -UV Count: 3 - UV - UV - UV -Face 3037 -UV Count: 3 - UV - UV - UV -Face 3038 -UV Count: 3 - UV - UV - UV -Face 3039 -UV Count: 3 - UV - UV - UV -Face 3040 -UV Count: 3 - UV - UV - UV -Face 3041 -UV Count: 3 - UV - UV - UV -Face 3042 -UV Count: 3 - UV - UV - UV -Face 3043 -UV Count: 3 - UV - UV - UV -Face 3044 -UV Count: 3 - UV - UV - UV -Face 3045 -UV Count: 3 - UV - UV - UV -Face 3046 -UV Count: 3 - UV - UV - UV -Face 3047 -UV Count: 3 - UV - UV - UV -Face 3048 -UV Count: 3 - UV - UV - UV -Face 3049 -UV Count: 3 - UV - UV - UV -Face 3050 -UV Count: 3 - UV - UV - UV -Face 3051 -UV Count: 3 - UV - UV - UV -Face 3052 -UV Count: 3 - UV - UV - UV -Face 3053 -UV Count: 3 - UV - UV - UV -Face 3054 -UV Count: 3 - UV - UV - UV -Face 3055 -UV Count: 3 - UV - UV - UV -Face 3056 -UV Count: 3 - UV - UV - UV -Face 3057 -UV Count: 3 - UV - UV - UV -Face 3058 -UV Count: 3 - UV - UV - UV -Face 3059 -UV Count: 3 - UV - UV - UV -Face 3060 -UV Count: 3 - UV - UV - UV -Face 3061 -UV Count: 3 - UV - UV - UV -Face 3062 -UV Count: 3 - UV - UV - UV -Face 3063 -UV Count: 3 - UV - UV - UV -Face 3064 -UV Count: 3 - UV - UV - UV -Face 3065 -UV Count: 3 - UV - UV - UV -Face 3066 -UV Count: 3 - UV - UV - UV -Face 3067 -UV Count: 3 - UV - UV - UV -Face 3068 -UV Count: 3 - UV - UV - UV -Face 3069 -UV Count: 3 - UV - UV - UV -Face 3070 -UV Count: 3 - UV - UV - UV -Face 3071 -UV Count: 3 - UV - UV - UV -Face 3072 -UV Count: 3 - UV - UV - UV -Face 3073 -UV Count: 3 - UV - UV - UV -Face 3074 -UV Count: 3 - UV - UV - UV -Face 3075 -UV Count: 3 - UV - UV - UV -Face 3076 -UV Count: 3 - UV - UV - UV -Face 3077 -UV Count: 3 - UV - UV - UV -Face 3078 -UV Count: 3 - UV - UV - UV -Face 3079 -UV Count: 3 - UV - UV - UV -Face 3080 -UV Count: 3 - UV - UV - UV -Face 3081 -UV Count: 3 - UV - UV - UV -Face 3082 -UV Count: 3 - UV - UV - UV -Face 3083 -UV Count: 3 - UV - UV - UV -Face 3084 -UV Count: 3 - UV - UV - UV -Face 3085 -UV Count: 3 - UV - UV - UV -Face 3086 -UV Count: 3 - UV - UV - UV -Face 3087 -UV Count: 3 - UV - UV - UV -Face 3088 -UV Count: 3 - UV - UV - UV -Face 3089 -UV Count: 3 - UV - UV - UV -Face 3090 -UV Count: 3 - UV - UV - UV -Face 3091 -UV Count: 3 - UV - UV - UV -Face 3092 -UV Count: 3 - UV - UV - UV -Face 3093 -UV Count: 3 - UV - UV - UV -Face 3094 -UV Count: 3 - UV - UV - UV -Face 3095 -UV Count: 3 - UV - UV - UV -Face 3096 -UV Count: 3 - UV - UV - UV -Face 3097 -UV Count: 3 - UV - UV - UV -Face 3098 -UV Count: 3 - UV - UV - UV -Face 3099 -UV Count: 3 - UV - UV - UV -Face 3100 -UV Count: 3 - UV - UV - UV -Face 3101 -UV Count: 3 - UV - UV - UV -Face 3102 -UV Count: 3 - UV - UV - UV -Face 3103 -UV Count: 3 - UV - UV - UV -Face 3104 -UV Count: 3 - UV - UV - UV -Face 3105 -UV Count: 3 - UV - UV - UV -Face 3106 -UV Count: 3 - UV - UV - UV -Face 3107 -UV Count: 3 - UV - UV - UV -Face 3108 -UV Count: 3 - UV - UV - UV -Face 3109 -UV Count: 3 - UV - UV - UV -Face 3110 -UV Count: 3 - UV - UV - UV -Face 3111 -UV Count: 3 - UV - UV - UV -Face 3112 -UV Count: 3 - UV - UV - UV -Face 3113 -UV Count: 3 - UV - UV - UV -Face 3114 -UV Count: 3 - UV - UV - UV -Face 3115 -UV Count: 3 - UV - UV - UV -Face 3116 -UV Count: 3 - UV - UV - UV -Face 3117 -UV Count: 3 - UV - UV - UV -Face 3118 -UV Count: 3 - UV - UV - UV -Face 3119 -UV Count: 3 - UV - UV - UV -Face 3120 -UV Count: 3 - UV - UV - UV -Face 3121 -UV Count: 3 - UV - UV - UV -Face 3122 -UV Count: 3 - UV - UV - UV -Face 3123 -UV Count: 3 - UV - UV - UV -Face 3124 -UV Count: 3 - UV - UV - UV -Face 3125 -UV Count: 3 - UV - UV - UV -Face 3126 -UV Count: 3 - UV - UV - UV -Face 3127 -UV Count: 3 - UV - UV - UV -Face 3128 -UV Count: 3 - UV - UV - UV -Face 3129 -UV Count: 3 - UV - UV - UV -Face 3130 -UV Count: 3 - UV - UV - UV -Face 3131 -UV Count: 3 - UV - UV - UV -Face 3132 -UV Count: 3 - UV - UV - UV -Face 3133 -UV Count: 3 - UV - UV - UV -Face 3134 -UV Count: 3 - UV - UV - UV -Face 3135 -UV Count: 3 - UV - UV - UV -Face 3136 -UV Count: 3 - UV - UV - UV -Face 3137 -UV Count: 3 - UV - UV - UV -Face 3138 -UV Count: 3 - UV - UV - UV -Face 3139 -UV Count: 3 - UV - UV - UV -Face 3140 -UV Count: 3 - UV - UV - UV -Face 3141 -UV Count: 3 - UV - UV - UV -Face 3142 -UV Count: 3 - UV - UV - UV -Face 3143 -UV Count: 3 - UV - UV - UV -Face 3144 -UV Count: 3 - UV - UV - UV -Face 3145 -UV Count: 3 - UV - UV - UV -Face 3146 -UV Count: 3 - UV - UV - UV -Face 3147 -UV Count: 3 - UV - UV - UV -Face 3148 -UV Count: 3 - UV - UV - UV -Face 3149 -UV Count: 3 - UV - UV - UV -Face 3150 -UV Count: 3 - UV - UV - UV -Face 3151 -UV Count: 3 - UV - UV - UV -Face 3152 -UV Count: 3 - UV - UV - UV -Face 3153 -UV Count: 3 - UV - UV - UV -Face 3154 -UV Count: 3 - UV - UV - UV -Face 3155 -UV Count: 3 - UV - UV - UV -Face 3156 -UV Count: 3 - UV - UV - UV -Face 3157 -UV Count: 3 - UV - UV - UV -Face 3158 -UV Count: 3 - UV - UV - UV -Face 3159 -UV Count: 3 - UV - UV - UV -Face 3160 -UV Count: 3 - UV - UV - UV -Face 3161 -UV Count: 3 - UV - UV - UV -Face 3162 -UV Count: 3 - UV - UV - UV -Face 3163 -UV Count: 3 - UV - UV - UV -Face 3164 -UV Count: 3 - UV - UV - UV -Face 3165 -UV Count: 3 - UV - UV - UV -Face 3166 -UV Count: 3 - UV - UV - UV -Face 3167 -UV Count: 3 - UV - UV - UV -Face 3168 -UV Count: 3 - UV - UV - UV -Face 3169 -UV Count: 3 - UV - UV - UV -Face 3170 -UV Count: 3 - UV - UV - UV -Face 3171 -UV Count: 3 - UV - UV - UV -Face 3172 -UV Count: 3 - UV - UV - UV -Face 3173 -UV Count: 3 - UV - UV - UV -Face 3174 -UV Count: 3 - UV - UV - UV -Face 3175 -UV Count: 3 - UV - UV - UV -Face 3176 -UV Count: 3 - UV - UV - UV -Face 3177 -UV Count: 3 - UV - UV - UV -Face 3178 -UV Count: 3 - UV - UV - UV -Face 3179 -UV Count: 3 - UV - UV - UV -Face 3180 -UV Count: 3 - UV - UV - UV -Face 3181 -UV Count: 3 - UV - UV - UV -Face 3182 -UV Count: 3 - UV - UV - UV -Face 3183 -UV Count: 3 - UV - UV - UV -Face 3184 -UV Count: 3 - UV - UV - UV -Face 3185 -UV Count: 3 - UV - UV - UV -Face 3186 -UV Count: 3 - UV - UV - UV -Face 3187 -UV Count: 3 - UV - UV - UV -Face 3188 -UV Count: 3 - UV - UV - UV -Face 3189 -UV Count: 3 - UV - UV - UV -Face 3190 -UV Count: 3 - UV - UV - UV -Face 3191 -UV Count: 3 - UV - UV - UV -Face 3192 -UV Count: 3 - UV - UV - UV -Face 3193 -UV Count: 3 - UV - UV - UV -Face 3194 -UV Count: 3 - UV - UV - UV -Face 3195 -UV Count: 3 - UV - UV - UV -Face 3196 -UV Count: 3 - UV - UV - UV -Face 3197 -UV Count: 3 - UV - UV - UV -Face 3198 -UV Count: 3 - UV - UV - UV -Face 3199 -UV Count: 3 - UV - UV - UV -Face 3200 -UV Count: 3 - UV - UV - UV -Face 3201 -UV Count: 3 - UV - UV - UV -Face 3202 -UV Count: 3 - UV - UV - UV -Face 3203 -UV Count: 3 - UV - UV - UV -Face 3204 -UV Count: 3 - UV - UV - UV -Face 3205 -UV Count: 3 - UV - UV - UV -Face 3206 -UV Count: 3 - UV - UV - UV -Face 3207 -UV Count: 3 - UV - UV - UV -Face 3208 -UV Count: 3 - UV - UV - UV -Face 3209 -UV Count: 3 - UV - UV - UV -Face 3210 -UV Count: 3 - UV - UV - UV -Face 3211 -UV Count: 3 - UV - UV - UV -Face 3212 -UV Count: 3 - UV - UV - UV -Face 3213 -UV Count: 3 - UV - UV - UV -Face 3214 -UV Count: 3 - UV - UV - UV -Face 3215 -UV Count: 3 - UV - UV - UV -Face 3216 -UV Count: 3 - UV - UV - UV -Face 3217 -UV Count: 3 - UV - UV - UV -Face 3218 -UV Count: 3 - UV - UV - UV -Face 3219 -UV Count: 3 - UV - UV - UV -Face 3220 -UV Count: 3 - UV - UV - UV -Face 3221 -UV Count: 3 - UV - UV - UV -Face 3222 -UV Count: 3 - UV - UV - UV -Face 3223 -UV Count: 3 - UV - UV - UV -Face 3224 -UV Count: 3 - UV - UV - UV -Face 3225 -UV Count: 3 - UV - UV - UV -Face 3226 -UV Count: 3 - UV - UV - UV -Face 3227 -UV Count: 3 - UV - UV - UV -Face 3228 -UV Count: 3 - UV - UV - UV -Face 3229 -UV Count: 3 - UV - UV - UV -Face 3230 -UV Count: 3 - UV - UV - UV -Face 3231 -UV Count: 3 - UV - UV - UV -Face 3232 -UV Count: 3 - UV - UV - UV -Face 3233 -UV Count: 3 - UV - UV - UV -Face 3234 -UV Count: 3 - UV - UV - UV -Face 3235 -UV Count: 3 - UV - UV - UV -Face 3236 -UV Count: 3 - UV - UV - UV -Face 3237 -UV Count: 3 - UV - UV - UV -Face 3238 -UV Count: 3 - UV - UV - UV -Face 3239 -UV Count: 3 - UV - UV - UV -Face 3240 -UV Count: 3 - UV - UV - UV -Face 3241 -UV Count: 3 - UV - UV - UV -Face 3242 -UV Count: 3 - UV - UV - UV -Face 3243 -UV Count: 3 - UV - UV - UV -Face 3244 -UV Count: 3 - UV - UV - UV -Face 3245 -UV Count: 3 - UV - UV - UV -Face 3246 -UV Count: 3 - UV - UV - UV -Face 3247 -UV Count: 3 - UV - UV - UV -Face 3248 -UV Count: 3 - UV - UV - UV -Face 3249 -UV Count: 3 - UV - UV - UV -Face 3250 -UV Count: 3 - UV - UV - UV -Face 3251 -UV Count: 3 - UV - UV - UV -Face 3252 -UV Count: 3 - UV - UV - UV -Face 3253 -UV Count: 3 - UV - UV - UV -Face 3254 -UV Count: 3 - UV - UV - UV -Face 3255 -UV Count: 3 - UV - UV - UV -Face 3256 -UV Count: 3 - UV - UV - UV -Face 3257 -UV Count: 3 - UV - UV - UV -Face 3258 -UV Count: 3 - UV - UV - UV -Face 3259 -UV Count: 3 - UV - UV - UV -Face 3260 -UV Count: 3 - UV - UV - UV -Face 3261 -UV Count: 3 - UV - UV - UV -Face 3262 -UV Count: 3 - UV - UV - UV -Face 3263 -UV Count: 3 - UV - UV - UV -Face 3264 -UV Count: 3 - UV - UV - UV -Face 3265 -UV Count: 3 - UV - UV - UV -Face 3266 -UV Count: 3 - UV - UV - UV -Face 3267 -UV Count: 3 - UV - UV - UV -Face 3268 -UV Count: 3 - UV - UV - UV -Face 3269 -UV Count: 3 - UV - UV - UV -Face 3270 -UV Count: 3 - UV - UV - UV -Face 3271 -UV Count: 3 - UV - UV - UV -Face 3272 -UV Count: 3 - UV - UV - UV -Face 3273 -UV Count: 3 - UV - UV - UV -Face 3274 -UV Count: 3 - UV - UV - UV -Face 3275 -UV Count: 3 - UV - UV - UV -Face 3276 -UV Count: 3 - UV - UV - UV -Face 3277 -UV Count: 3 - UV - UV - UV -Face 3278 -UV Count: 3 - UV - UV - UV -Face 3279 -UV Count: 3 - UV - UV - UV -Face 3280 -UV Count: 3 - UV - UV - UV -Face 3281 -UV Count: 3 - UV - UV - UV -Face 3282 -UV Count: 3 - UV - UV - UV -Face 3283 -UV Count: 3 - UV - UV - UV -Face 3284 -UV Count: 3 - UV - UV - UV -Face 3285 -UV Count: 3 - UV - UV - UV -Face 3286 -UV Count: 3 - UV - UV - UV -Face 3287 -UV Count: 3 - UV - UV - UV -Face 3288 -UV Count: 3 - UV - UV - UV -Face 3289 -UV Count: 3 - UV - UV - UV -Face 3290 -UV Count: 3 - UV - UV - UV -Face 3291 -UV Count: 3 - UV - UV - UV -Face 3292 -UV Count: 3 - UV - UV - UV -Face 3293 -UV Count: 3 - UV - UV - UV -Face 3294 -UV Count: 3 - UV - UV - UV -Face 3295 -UV Count: 3 - UV - UV - UV -Face 3296 -UV Count: 3 - UV - UV - UV -Face 3297 -UV Count: 3 - UV - UV - UV -Face 3298 -UV Count: 3 - UV - UV - UV -Face 3299 -UV Count: 3 - UV - UV - UV -Face 3300 -UV Count: 3 - UV - UV - UV -Face 3301 -UV Count: 3 - UV - UV - UV -Face 3302 -UV Count: 3 - UV - UV - UV -Face 3303 -UV Count: 3 - UV - UV - UV -Face 3304 -UV Count: 3 - UV - UV - UV -Face 3305 -UV Count: 3 - UV - UV - UV -Face 3306 -UV Count: 3 - UV - UV - UV -Face 3307 -UV Count: 3 - UV - UV - UV -Face 3308 -UV Count: 3 - UV - UV - UV -Face 3309 -UV Count: 3 - UV - UV - UV -Face 3310 -UV Count: 3 - UV - UV - UV -Face 3311 -UV Count: 3 - UV - UV - UV -Face 3312 -UV Count: 3 - UV - UV - UV -Face 3313 -UV Count: 3 - UV - UV - UV -Face 3314 -UV Count: 3 - UV - UV - UV -Face 3315 -UV Count: 3 - UV - UV - UV -Face 3316 -UV Count: 3 - UV - UV - UV -Face 3317 -UV Count: 3 - UV - UV - UV -Face 3318 -UV Count: 3 - UV - UV - UV -Face 3319 -UV Count: 3 - UV - UV - UV -Face 3320 -UV Count: 3 - UV - UV - UV -Face 3321 -UV Count: 3 - UV - UV - UV -Face 3322 -UV Count: 3 - UV - UV - UV -Face 3323 -UV Count: 3 - UV - UV - UV -Face 3324 -UV Count: 3 - UV - UV - UV -Face 3325 -UV Count: 3 - UV - UV - UV -Face 3326 -UV Count: 3 - UV - UV - UV -Face 3327 -UV Count: 3 - UV - UV - UV -Face 3328 -UV Count: 3 - UV - UV - UV -Face 3329 -UV Count: 3 - UV - UV - UV -Face 3330 -UV Count: 3 - UV - UV - UV -Face 3331 -UV Count: 3 - UV - UV - UV -Face 3332 -UV Count: 3 - UV - UV - UV -Face 3333 -UV Count: 3 - UV - UV - UV -Face 3334 -UV Count: 3 - UV - UV - UV -Face 3335 -UV Count: 3 - UV - UV - UV -Face 3336 -UV Count: 3 - UV - UV - UV -Face 3337 -UV Count: 3 - UV - UV - UV -Face 3338 -UV Count: 3 - UV - UV - UV -Face 3339 -UV Count: 3 - UV - UV - UV -Face 3340 -UV Count: 3 - UV - UV - UV -Face 3341 -UV Count: 3 - UV - UV - UV -Face 3342 -UV Count: 3 - UV - UV - UV -Face 3343 -UV Count: 3 - UV - UV - UV -Face 3344 -UV Count: 3 - UV - UV - UV -Face 3345 -UV Count: 3 - UV - UV - UV -Face 3346 -UV Count: 3 - UV - UV - UV -Face 3347 -UV Count: 3 - UV - UV - UV -Face 3348 -UV Count: 3 - UV - UV - UV -Face 3349 -UV Count: 3 - UV - UV - UV -Face 3350 -UV Count: 3 - UV - UV - UV -Face 3351 -UV Count: 3 - UV - UV - UV -Face 3352 -UV Count: 3 - UV - UV - UV -Face 3353 -UV Count: 3 - UV - UV - UV -Face 3354 -UV Count: 3 - UV - UV - UV -Face 3355 -UV Count: 3 - UV - UV - UV -Face 3356 -UV Count: 3 - UV - UV - UV -Face 3357 -UV Count: 3 - UV - UV - UV -Face 3358 -UV Count: 3 - UV - UV - UV -Face 3359 -UV Count: 3 - UV - UV - UV -Face 3360 -UV Count: 3 - UV - UV - UV -Face 3361 -UV Count: 3 - UV - UV - UV -Face 3362 -UV Count: 3 - UV - UV - UV -Face 3363 -UV Count: 3 - UV - UV - UV -Face 3364 -UV Count: 3 - UV - UV - UV -Face 3365 -UV Count: 3 - UV - UV - UV -Face 3366 -UV Count: 3 - UV - UV - UV -Face 3367 -UV Count: 3 - UV - UV - UV -Face 3368 -UV Count: 3 - UV - UV - UV -Face 3369 -UV Count: 3 - UV - UV - UV -Face 3370 -UV Count: 3 - UV - UV - UV -Face 3371 -UV Count: 3 - UV - UV - UV -Face 3372 -UV Count: 3 - UV - UV - UV -Face 3373 -UV Count: 3 - UV - UV - UV -Face 3374 -UV Count: 3 - UV - UV - UV -Face 3375 -UV Count: 3 - UV - UV - UV -Face 3376 -UV Count: 3 - UV - UV - UV -Face 3377 -UV Count: 3 - UV - UV - UV -Face 3378 -UV Count: 3 - UV - UV - UV -Face 3379 -UV Count: 3 - UV - UV - UV -Face 3380 -UV Count: 3 - UV - UV - UV -Face 3381 -UV Count: 3 - UV - UV - UV -Face 3382 -UV Count: 3 - UV - UV - UV -Face 3383 -UV Count: 3 - UV - UV - UV -Face 3384 -UV Count: 3 - UV - UV - UV -Face 3385 -UV Count: 3 - UV - UV - UV -Face 3386 -UV Count: 3 - UV - UV - UV -Face 3387 -UV Count: 3 - UV - UV - UV -Face 3388 -UV Count: 3 - UV - UV - UV -Face 3389 -UV Count: 3 - UV - UV - UV -Face 3390 -UV Count: 3 - UV - UV - UV -Face 3391 -UV Count: 3 - UV - UV - UV -Face 3392 -UV Count: 3 - UV - UV - UV -Face 3393 -UV Count: 3 - UV - UV - UV -Face 3394 -UV Count: 3 - UV - UV - UV -Face 3395 -UV Count: 3 - UV - UV - UV -Face 3396 -UV Count: 3 - UV - UV - UV -Face 3397 -UV Count: 3 - UV - UV - UV -Face 3398 -UV Count: 3 - UV - UV - UV -Face 3399 -UV Count: 3 - UV - UV - UV -Face 3400 -UV Count: 3 - UV - UV - UV -Face 3401 -UV Count: 3 - UV - UV - UV -Face 3402 -UV Count: 3 - UV - UV - UV -Face 3403 -UV Count: 3 - UV - UV - UV -Face 3404 -UV Count: 3 - UV - UV - UV -Face 3405 -UV Count: 3 - UV - UV - UV -Face 3406 -UV Count: 3 - UV - UV - UV -Face 3407 -UV Count: 3 - UV - UV - UV -Face 3408 -UV Count: 3 - UV - UV - UV -Face 3409 -UV Count: 3 - UV - UV - UV -Face 3410 -UV Count: 3 - UV - UV - UV -Face 3411 -UV Count: 3 - UV - UV - UV -Face 3412 -UV Count: 3 - UV - UV - UV -Face 3413 -UV Count: 3 - UV - UV - UV -Face 3414 -UV Count: 3 - UV - UV - UV -Face 3415 -UV Count: 3 - UV - UV - UV -Face 3416 -UV Count: 3 - UV - UV - UV -Face 3417 -UV Count: 3 - UV - UV - UV -Face 3418 -UV Count: 3 - UV - UV - UV -Face 3419 -UV Count: 3 - UV - UV - UV -Face 3420 -UV Count: 3 - UV - UV - UV -Face 3421 -UV Count: 3 - UV - UV - UV -Face 3422 -UV Count: 3 - UV - UV - UV -Face 3423 -UV Count: 3 - UV - UV - UV -Face 3424 -UV Count: 3 - UV - UV - UV -Face 3425 -UV Count: 3 - UV - UV - UV -Face 3426 -UV Count: 3 - UV - UV - UV -Face 3427 -UV Count: 3 - UV - UV - UV -Face 3428 -UV Count: 3 - UV - UV - UV -Face 3429 -UV Count: 3 - UV - UV - UV -Face 3430 -UV Count: 3 - UV - UV - UV -Face 3431 -UV Count: 3 - UV - UV - UV -Face 3432 -UV Count: 3 - UV - UV - UV -Face 3433 -UV Count: 3 - UV - UV - UV -Face 3434 -UV Count: 3 - UV - UV - UV -Face 3435 -UV Count: 3 - UV - UV - UV -Face 3436 -UV Count: 3 - UV - UV - UV -Face 3437 -UV Count: 3 - UV - UV - UV -Face 3438 -UV Count: 3 - UV - UV - UV -Face 3439 -UV Count: 3 - UV - UV - UV -Face 3440 -UV Count: 3 - UV - UV - UV -Face 3441 -UV Count: 3 - UV - UV - UV -Face 3442 -UV Count: 3 - UV - UV - UV -Face 3443 -UV Count: 3 - UV - UV - UV -Face 3444 -UV Count: 3 - UV - UV - UV -Face 3445 -UV Count: 3 - UV - UV - UV -Face 3446 -UV Count: 3 - UV - UV - UV -Face 3447 -UV Count: 3 - UV - UV - UV -Face 3448 -UV Count: 3 - UV - UV - UV -Face 3449 -UV Count: 3 - UV - UV - UV -Face 3450 -UV Count: 3 - UV - UV - UV -Face 3451 -UV Count: 3 - UV - UV - UV -Face 3452 -UV Count: 3 - UV - UV - UV -Face 3453 -UV Count: 3 - UV - UV - UV -Face 3454 -UV Count: 3 - UV - UV - UV -Face 3455 -UV Count: 3 - UV - UV - UV -Face 3456 -UV Count: 3 - UV - UV - UV -Face 3457 -UV Count: 3 - UV - UV - UV -Face 3458 -UV Count: 3 - UV - UV - UV -Face 3459 -UV Count: 3 - UV - UV - UV -Face 3460 -UV Count: 3 - UV - UV - UV -Face 3461 -UV Count: 3 - UV - UV - UV -Face 3462 -UV Count: 3 - UV - UV - UV -Face 3463 -UV Count: 3 - UV - UV - UV -Face 3464 -UV Count: 3 - UV - UV - UV -Face 3465 -UV Count: 3 - UV - UV - UV -Face 3466 -UV Count: 3 - UV - UV - UV -Face 3467 -UV Count: 3 - UV - UV - UV -Face 3468 -UV Count: 3 - UV - UV - UV -Face 3469 -UV Count: 3 - UV - UV - UV -Face 3470 -UV Count: 3 - UV - UV - UV -Face 3471 -UV Count: 3 - UV - UV - UV -Face 3472 -UV Count: 3 - UV - UV - UV -Face 3473 -UV Count: 3 - UV - UV - UV -Face 3474 -UV Count: 3 - UV - UV - UV -Face 3475 -UV Count: 3 - UV - UV - UV -Face 3476 -UV Count: 3 - UV - UV - UV -Face 3477 -UV Count: 3 - UV - UV - UV -Face 3478 -UV Count: 3 - UV - UV - UV -Face 3479 -UV Count: 3 - UV - UV - UV -Face 3480 -UV Count: 3 - UV - UV - UV -Face 3481 -UV Count: 3 - UV - UV - UV -Face 3482 -UV Count: 3 - UV - UV - UV -Face 3483 -UV Count: 3 - UV - UV - UV -Face 3484 -UV Count: 3 - UV - UV - UV -Face 3485 -UV Count: 3 - UV - UV - UV -Face 3486 -UV Count: 3 - UV - UV - UV -Face 3487 -UV Count: 3 - UV - UV - UV -Face 3488 -UV Count: 3 - UV - UV - UV -Face 3489 -UV Count: 3 - UV - UV - UV -Face 3490 -UV Count: 3 - UV - UV - UV -Face 3491 -UV Count: 3 - UV - UV - UV -Face 3492 -UV Count: 3 - UV - UV - UV -Face 3493 -UV Count: 3 - UV - UV - UV -Face 3494 -UV Count: 3 - UV - UV - UV -Face 3495 -UV Count: 3 - UV - UV - UV -Face 3496 -UV Count: 3 - UV - UV - UV -Face 3497 -UV Count: 3 - UV - UV - UV -Face 3498 -UV Count: 3 - UV - UV - UV -Face 3499 -UV Count: 3 - UV - UV - UV -Face 3500 -UV Count: 3 - UV - UV - UV -Face 3501 -UV Count: 3 - UV - UV - UV -Face 3502 -UV Count: 3 - UV - UV - UV -Face 3503 -UV Count: 3 - UV - UV - UV -Face 3504 -UV Count: 3 - UV - UV - UV -Face 3505 -UV Count: 3 - UV - UV - UV -Face 3506 -UV Count: 3 - UV - UV - UV -Face 3507 -UV Count: 3 - UV - UV - UV -Face 3508 -UV Count: 3 - UV - UV - UV -Face 3509 -UV Count: 3 - UV - UV - UV -Face 3510 -UV Count: 3 - UV - UV - UV -Face 3511 -UV Count: 3 - UV - UV - UV -Face 3512 -UV Count: 3 - UV - UV - UV -Face 3513 -UV Count: 3 - UV - UV - UV -Face 3514 -UV Count: 3 - UV - UV - UV -Face 3515 -UV Count: 3 - UV - UV - UV -Face 3516 -UV Count: 3 - UV - UV - UV -Face 3517 -UV Count: 3 - UV - UV - UV -Face 3518 -UV Count: 3 - UV - UV - UV -Face 3519 -UV Count: 3 - UV - UV - UV -Face 3520 -UV Count: 3 - UV - UV - UV -Face 3521 -UV Count: 3 - UV - UV - UV -Face 3522 -UV Count: 3 - UV - UV - UV -Face 3523 -UV Count: 3 - UV - UV - UV -Face 3524 -UV Count: 3 - UV - UV - UV -Face 3525 -UV Count: 3 - UV - UV - UV -Face 3526 -UV Count: 3 - UV - UV - UV -Face 3527 -UV Count: 3 - UV - UV - UV -Face 3528 -UV Count: 3 - UV - UV - UV -Face 3529 -UV Count: 3 - UV - UV - UV -Face 3530 -UV Count: 3 - UV - UV - UV -Face 3531 -UV Count: 3 - UV - UV - UV -Face 3532 -UV Count: 3 - UV - UV - UV -Face 3533 -UV Count: 3 - UV - UV - UV -Face 3534 -UV Count: 3 - UV - UV - UV -Face 3535 -UV Count: 3 - UV - UV - UV -Face 3536 -UV Count: 3 - UV - UV - UV -Face 3537 -UV Count: 3 - UV - UV - UV -Face 3538 -UV Count: 3 - UV - UV - UV -Face 3539 -UV Count: 3 - UV - UV - UV -Face 3540 -UV Count: 3 - UV - UV - UV -Face 3541 -UV Count: 3 - UV - UV - UV -Face 3542 -UV Count: 3 - UV - UV - UV -Face 3543 -UV Count: 3 - UV - UV - UV -Face 3544 -UV Count: 3 - UV - UV - UV -Face 3545 -UV Count: 3 - UV - UV - UV -Face 3546 -UV Count: 3 - UV - UV - UV -Face 3547 -UV Count: 3 - UV - UV - UV -Face 3548 -UV Count: 3 - UV - UV - UV -Face 3549 -UV Count: 3 - UV - UV - UV -Face 3550 -UV Count: 3 - UV - UV - UV -Face 3551 -UV Count: 3 - UV - UV - UV -Face 3552 -UV Count: 3 - UV - UV - UV -Face 3553 -UV Count: 3 - UV - UV - UV -Face 3554 -UV Count: 3 - UV - UV - UV -Face 3555 -UV Count: 3 - UV - UV - UV -Face 3556 -UV Count: 3 - UV - UV - UV -Face 3557 -UV Count: 3 - UV - UV - UV -Face 3558 -UV Count: 3 - UV - UV - UV -Face 3559 -UV Count: 3 - UV - UV - UV -Face 3560 -UV Count: 3 - UV - UV - UV -Face 3561 -UV Count: 3 - UV - UV - UV -Face 3562 -UV Count: 3 - UV - UV - UV -Face 3563 -UV Count: 3 - UV - UV - UV -Face 3564 -UV Count: 3 - UV - UV - UV -Face 3565 -UV Count: 3 - UV - UV - UV -Face 3566 -UV Count: 3 - UV - UV - UV -Face 3567 -UV Count: 3 - UV - UV - UV -Face 3568 -UV Count: 3 - UV - UV - UV -Face 3569 -UV Count: 3 - UV - UV - UV -Face 3570 -UV Count: 3 - UV - UV - UV -Face 3571 -UV Count: 3 - UV - UV - UV -Face 3572 -UV Count: 3 - UV - UV - UV -Face 3573 -UV Count: 3 - UV - UV - UV -Face 3574 -UV Count: 3 - UV - UV - UV -Face 3575 -UV Count: 3 - UV - UV - UV -Face 3576 -UV Count: 3 - UV - UV - UV -Face 3577 -UV Count: 3 - UV - UV - UV -Face 3578 -UV Count: 3 - UV - UV - UV -Face 3579 -UV Count: 3 - UV - UV - UV -Face 3580 -UV Count: 3 - UV - UV - UV -Face 3581 -UV Count: 3 - UV - UV - UV -Face 3582 -UV Count: 3 - UV - UV - UV -Face 3583 -UV Count: 3 - UV - UV - UV -Face 3584 -UV Count: 3 - UV - UV - UV -Face 3585 -UV Count: 3 - UV - UV - UV -Face 3586 -UV Count: 3 - UV - UV - UV -Face 3587 -UV Count: 3 - UV - UV - UV -Face 3588 -UV Count: 3 - UV - UV - UV -Face 3589 -UV Count: 3 - UV - UV - UV -Face 3590 -UV Count: 3 - UV - UV - UV -Face 3591 -UV Count: 3 - UV - UV - UV -Face 3592 -UV Count: 3 - UV - UV - UV -Face 3593 -UV Count: 3 - UV - UV - UV -Face 3594 -UV Count: 3 - UV - UV - UV -Face 3595 -UV Count: 3 - UV - UV - UV -Face 3596 -UV Count: 3 - UV - UV - UV -Face 3597 -UV Count: 3 - UV - UV - UV -Face 3598 -UV Count: 3 - UV - UV - UV -Face 3599 -UV Count: 3 - UV - UV - UV -Face 3600 -UV Count: 3 - UV - UV - UV -Face 3601 -UV Count: 3 - UV - UV - UV -Face 3602 -UV Count: 3 - UV - UV - UV -Face 3603 -UV Count: 3 - UV - UV - UV -Face 3604 -UV Count: 3 - UV - UV - UV -Face 3605 -UV Count: 3 - UV - UV - UV -Face 3606 -UV Count: 3 - UV - UV - UV -Face 3607 -UV Count: 3 - UV - UV - UV -Face 3608 -UV Count: 3 - UV - UV - UV -Face 3609 -UV Count: 3 - UV - UV - UV -Face 3610 -UV Count: 3 - UV - UV - UV -Face 3611 -UV Count: 3 - UV - UV - UV -Face 3612 -UV Count: 3 - UV - UV - UV -Face 3613 -UV Count: 3 - UV - UV - UV -Face 3614 -UV Count: 3 - UV - UV - UV -Face 3615 -UV Count: 3 - UV - UV - UV -Face 3616 -UV Count: 3 - UV - UV - UV -Face 3617 -UV Count: 3 - UV - UV - UV -Face 3618 -UV Count: 3 - UV - UV - UV -Face 3619 -UV Count: 3 - UV - UV - UV -Face 3620 -UV Count: 3 - UV - UV - UV -Face 3621 -UV Count: 3 - UV - UV - UV -Face 3622 -UV Count: 3 - UV - UV - UV -Face 3623 -UV Count: 3 - UV - UV - UV -Face 3624 -UV Count: 3 - UV - UV - UV -Face 3625 -UV Count: 3 - UV - UV - UV -Face 3626 -UV Count: 3 - UV - UV - UV -Face 3627 -UV Count: 3 - UV - UV - UV -Face 3628 -UV Count: 3 - UV - UV - UV -Face 3629 -UV Count: 3 - UV - UV - UV -Face 3630 -UV Count: 3 - UV - UV - UV -Face 3631 -UV Count: 3 - UV - UV - UV -Face 3632 -UV Count: 3 - UV - UV - UV -Face 3633 -UV Count: 3 - UV - UV - UV -Face 3634 -UV Count: 3 - UV - UV - UV -Face 3635 -UV Count: 3 - UV - UV - UV -Face 3636 -UV Count: 3 - UV - UV - UV -Face 3637 -UV Count: 3 - UV - UV - UV -Face 3638 -UV Count: 3 - UV - UV - UV -Face 3639 -UV Count: 3 - UV - UV - UV -Face 3640 -UV Count: 3 - UV - UV - UV -Face 3641 -UV Count: 3 - UV - UV - UV -Face 3642 -UV Count: 3 - UV - UV - UV -Face 3643 -UV Count: 3 - UV - UV - UV -Face 3644 -UV Count: 3 - UV - UV - UV -Face 3645 -UV Count: 3 - UV - UV - UV -Face 3646 -UV Count: 3 - UV - UV - UV -Face 3647 -UV Count: 3 - UV - UV - UV -Face 3648 -UV Count: 3 - UV - UV - UV -Face 3649 -UV Count: 3 - UV - UV - UV -Face 3650 -UV Count: 3 - UV - UV - UV -Face 3651 -UV Count: 3 - UV - UV - UV -Face 3652 -UV Count: 3 - UV - UV - UV -Face 3653 -UV Count: 3 - UV - UV - UV -Face 3654 -UV Count: 3 - UV - UV - UV -Face 3655 -UV Count: 3 - UV - UV - UV -Face 3656 -UV Count: 3 - UV - UV - UV -Face 3657 -UV Count: 3 - UV - UV - UV -Face 3658 -UV Count: 3 - UV - UV - UV -Face 3659 -UV Count: 3 - UV - UV - UV -Face 3660 -UV Count: 3 - UV - UV - UV -Face 3661 -UV Count: 3 - UV - UV - UV -Face 3662 -UV Count: 3 - UV - UV - UV -Face 3663 -UV Count: 3 - UV - UV - UV -Face 3664 -UV Count: 3 - UV - UV - UV -Face 3665 -UV Count: 3 - UV - UV - UV -Face 3666 -UV Count: 3 - UV - UV - UV -Face 3667 -UV Count: 3 - UV - UV - UV -Face 3668 -UV Count: 3 - UV - UV - UV -Face 3669 -UV Count: 3 - UV - UV - UV -Face 3670 -UV Count: 3 - UV - UV - UV -Face 3671 -UV Count: 3 - UV - UV - UV -Face 3672 -UV Count: 3 - UV - UV - UV -Face 3673 -UV Count: 3 - UV - UV - UV -Face 3674 -UV Count: 3 - UV - UV - UV -Face 3675 -UV Count: 3 - UV - UV - UV -Face 3676 -UV Count: 3 - UV - UV - UV -Face 3677 -UV Count: 3 - UV - UV - UV -Face 3678 -UV Count: 3 - UV - UV - UV -Face 3679 -UV Count: 3 - UV - UV - UV -Face 3680 -UV Count: 3 - UV - UV - UV -Face 3681 -UV Count: 3 - UV - UV - UV -Face 3682 -UV Count: 3 - UV - UV - UV -Face 3683 -UV Count: 3 - UV - UV - UV -Face 3684 -UV Count: 3 - UV - UV - UV -Face 3685 -UV Count: 3 - UV - UV - UV -Face 3686 -UV Count: 3 - UV - UV - UV -Face 3687 -UV Count: 3 - UV - UV - UV -Face 3688 -UV Count: 3 - UV - UV - UV -Face 3689 -UV Count: 3 - UV - UV - UV -Face 3690 -UV Count: 3 - UV - UV - UV -Face 3691 -UV Count: 3 - UV - UV - UV -Face 3692 -UV Count: 3 - UV - UV - UV -Face 3693 -UV Count: 3 - UV - UV - UV -Face 3694 -UV Count: 3 - UV - UV - UV -Face 3695 -UV Count: 3 - UV - UV - UV -Face 3696 -UV Count: 3 - UV - UV - UV -Face 3697 -UV Count: 3 - UV - UV - UV -Face 3698 -UV Count: 3 - UV - UV - UV -Face 3699 -UV Count: 3 - UV - UV - UV -Face 3700 -UV Count: 3 - UV - UV - UV -Face 3701 -UV Count: 3 - UV - UV - UV -Face 3702 -UV Count: 3 - UV - UV - UV -Face 3703 -UV Count: 3 - UV - UV - UV -Face 3704 -UV Count: 3 - UV - UV - UV -Face 3705 -UV Count: 3 - UV - UV - UV -Face 3706 -UV Count: 3 - UV - UV - UV -Face 3707 -UV Count: 3 - UV - UV - UV -Face 3708 -UV Count: 3 - UV - UV - UV -Face 3709 -UV Count: 3 - UV - UV - UV -Face 3710 -UV Count: 3 - UV - UV - UV -Face 3711 -UV Count: 3 - UV - UV - UV -Face 3712 -UV Count: 3 - UV - UV - UV -Face 3713 -UV Count: 3 - UV - UV - UV -Face 3714 -UV Count: 3 - UV - UV - UV -Face 3715 -UV Count: 3 - UV - UV - UV -Face 3716 -UV Count: 3 - UV - UV - UV -Face 3717 -UV Count: 3 - UV - UV - UV -Face 3718 -UV Count: 3 - UV - UV - UV -Face 3719 -UV Count: 3 - UV - UV - UV -Face 3720 -UV Count: 3 - UV - UV - UV -Face 3721 -UV Count: 3 - UV - UV - UV -Face 3722 -UV Count: 3 - UV - UV - UV -Face 3723 -UV Count: 3 - UV - UV - UV -Face 3724 -UV Count: 3 - UV - UV - UV -Face 3725 -UV Count: 3 - UV - UV - UV -Face 3726 -UV Count: 3 - UV - UV - UV -Face 3727 -UV Count: 3 - UV - UV - UV -Face 3728 -UV Count: 3 - UV - UV - UV -Face 3729 -UV Count: 3 - UV - UV - UV -Face 3730 -UV Count: 3 - UV - UV - UV -Face 3731 -UV Count: 3 - UV - UV - UV -Face 3732 -UV Count: 3 - UV - UV - UV -Face 3733 -UV Count: 3 - UV - UV - UV -Face 3734 -UV Count: 3 - UV - UV - UV -Face 3735 -UV Count: 3 - UV - UV - UV -Face 3736 -UV Count: 3 - UV - UV - UV -Face 3737 -UV Count: 3 - UV - UV - UV -Face 3738 -UV Count: 3 - UV - UV - UV -Face 3739 -UV Count: 3 - UV - UV - UV -Face 3740 -UV Count: 3 - UV - UV - UV -Face 3741 -UV Count: 3 - UV - UV - UV -Face 3742 -UV Count: 3 - UV - UV - UV -Face 3743 -UV Count: 3 - UV - UV - UV -Face 3744 -UV Count: 3 - UV - UV - UV -Face 3745 -UV Count: 3 - UV - UV - UV -Face 3746 -UV Count: 3 - UV - UV - UV -Face 3747 -UV Count: 3 - UV - UV - UV -Face 3748 -UV Count: 3 - UV - UV - UV -Face 3749 -UV Count: 3 - UV - UV - UV -Face 3750 -UV Count: 3 - UV - UV - UV -Face 3751 -UV Count: 3 - UV - UV - UV -Face 3752 -UV Count: 3 - UV - UV - UV -Face 3753 -UV Count: 3 - UV - UV - UV -Face 3754 -UV Count: 3 - UV - UV - UV -Face 3755 -UV Count: 3 - UV - UV - UV -Face 3756 -UV Count: 3 - UV - UV - UV -Face 3757 -UV Count: 3 - UV - UV - UV -Face 3758 -UV Count: 3 - UV - UV - UV -Face 3759 -UV Count: 3 - UV - UV - UV -Face 3760 -UV Count: 3 - UV - UV - UV -Face 3761 -UV Count: 3 - UV - UV - UV -Face 3762 -UV Count: 3 - UV - UV - UV -Face 3763 -UV Count: 3 - UV - UV - UV -Face 3764 -UV Count: 3 - UV - UV - UV -Face 3765 -UV Count: 3 - UV - UV - UV -Face 3766 -UV Count: 3 - UV - UV - UV -Face 3767 -UV Count: 3 - UV - UV - UV -Face 3768 -UV Count: 3 - UV - UV - UV -Face 3769 -UV Count: 3 - UV - UV - UV -Face 3770 -UV Count: 3 - UV - UV - UV -Face 3771 -UV Count: 3 - UV - UV - UV -Face 3772 -UV Count: 3 - UV - UV - UV -Face 3773 -UV Count: 3 - UV - UV - UV -Face 3774 -UV Count: 3 - UV - UV - UV -Face 3775 -UV Count: 3 - UV - UV - UV -Face 3776 -UV Count: 3 - UV - UV - UV -Face 3777 -UV Count: 3 - UV - UV - UV -Face 3778 -UV Count: 3 - UV - UV - UV -Face 3779 -UV Count: 3 - UV - UV - UV -Face 3780 -UV Count: 3 - UV - UV - UV -Face 3781 -UV Count: 3 - UV - UV - UV -Face 3782 -UV Count: 3 - UV - UV - UV -Face 3783 -UV Count: 3 - UV - UV - UV -Face 3784 -UV Count: 3 - UV - UV - UV -Face 3785 -UV Count: 3 - UV - UV - UV -Face 3786 -UV Count: 3 - UV - UV - UV -Face 3787 -UV Count: 3 - UV - UV - UV -Face 3788 -UV Count: 3 - UV - UV - UV -Face 3789 -UV Count: 3 - UV - UV - UV -Face 3790 -UV Count: 3 - UV - UV - UV -Face 3791 -UV Count: 3 - UV - UV - UV -Face 3792 -UV Count: 3 - UV - UV - UV -Face 3793 -UV Count: 3 - UV - UV - UV -Face 3794 -UV Count: 3 - UV - UV - UV -Face 3795 -UV Count: 3 - UV - UV - UV -Face 3796 -UV Count: 3 - UV - UV - UV -Face 3797 -UV Count: 3 - UV - UV - UV -Face 3798 -UV Count: 3 - UV - UV - UV -Face 3799 -UV Count: 3 - UV - UV - UV -Face 3800 -UV Count: 3 - UV - UV - UV -Face 3801 -UV Count: 3 - UV - UV - UV -Face 3802 -UV Count: 3 - UV - UV - UV -Face 3803 -UV Count: 3 - UV - UV - UV -Face 3804 -UV Count: 3 - UV - UV - UV -Face 3805 -UV Count: 3 - UV - UV - UV -Face 3806 -UV Count: 3 - UV - UV - UV -Face 3807 -UV Count: 3 - UV - UV - UV -Face 3808 -UV Count: 3 - UV - UV - UV -Face 3809 -UV Count: 3 - UV - UV - UV -Face 3810 -UV Count: 3 - UV - UV - UV -Face 3811 -UV Count: 3 - UV - UV - UV -Face 3812 -UV Count: 3 - UV - UV - UV -Face 3813 -UV Count: 3 - UV - UV - UV -Face 3814 -UV Count: 3 - UV - UV - UV -Face 3815 -UV Count: 3 - UV - UV - UV -Face 3816 -UV Count: 3 - UV - UV - UV -Face 3817 -UV Count: 3 - UV - UV - UV -Face 3818 -UV Count: 3 - UV - UV - UV -Face 3819 -UV Count: 3 - UV - UV - UV -Face 3820 -UV Count: 3 - UV - UV - UV -Face 3821 -UV Count: 3 - UV - UV - UV -Face 3822 -UV Count: 3 - UV - UV - UV -Face 3823 -UV Count: 3 - UV - UV - UV -Face 3824 -UV Count: 3 - UV - UV - UV -Face 3825 -UV Count: 3 - UV - UV - UV -Face 3826 -UV Count: 3 - UV - UV - UV -Face 3827 -UV Count: 3 - UV - UV - UV -Face 3828 -UV Count: 3 - UV - UV - UV -Face 3829 -UV Count: 3 - UV - UV - UV -Face 3830 -UV Count: 3 - UV - UV - UV -Face 3831 -UV Count: 3 - UV - UV - UV -Face 3832 -UV Count: 3 - UV - UV - UV -Face 3833 -UV Count: 3 - UV - UV - UV -Face 3834 -UV Count: 3 - UV - UV - UV -Face 3835 -UV Count: 3 - UV - UV - UV -Face 3836 -UV Count: 3 - UV - UV - UV -Face 3837 -UV Count: 3 - UV - UV - UV -Face 3838 -UV Count: 3 - UV - UV - UV -Face 3839 -UV Count: 3 - UV - UV - UV -Face 3840 -UV Count: 3 - UV - UV - UV -Face 3841 -UV Count: 3 - UV - UV - UV -Face 3842 -UV Count: 3 - UV - UV - UV -Face 3843 -UV Count: 3 - UV - UV - UV -Face 3844 -UV Count: 3 - UV - UV - UV -Face 3845 -UV Count: 3 - UV - UV - UV -Face 3846 -UV Count: 3 - UV - UV - UV -Face 3847 -UV Count: 3 - UV - UV - UV -Face 3848 -UV Count: 3 - UV - UV - UV -Face 3849 -UV Count: 3 - UV - UV - UV -Face 3850 -UV Count: 3 - UV - UV - UV -Face 3851 -UV Count: 3 - UV - UV - UV -Face 3852 -UV Count: 3 - UV - UV - UV -Face 3853 -UV Count: 3 - UV - UV - UV -Face 3854 -UV Count: 3 - UV - UV - UV -Face 3855 -UV Count: 3 - UV - UV - UV -Face 3856 -UV Count: 3 - UV - UV - UV -Face 3857 -UV Count: 3 - UV - UV - UV -Face 3858 -UV Count: 3 - UV - UV - UV -Face 3859 -UV Count: 3 - UV - UV - UV -Face 3860 -UV Count: 3 - UV - UV - UV -Face 3861 -UV Count: 3 - UV - UV - UV -Face 3862 -UV Count: 3 - UV - UV - UV -Face 3863 -UV Count: 3 - UV - UV - UV -Face 3864 -UV Count: 3 - UV - UV - UV -Face 3865 -UV Count: 3 - UV - UV - UV -Face 3866 -UV Count: 3 - UV - UV - UV -Face 3867 -UV Count: 3 - UV - UV - UV -Face 3868 -UV Count: 3 - UV - UV - UV -Face 3869 -UV Count: 3 - UV - UV - UV -Face 3870 -UV Count: 3 - UV - UV - UV -Face 3871 -UV Count: 3 - UV - UV - UV -Face 3872 -UV Count: 3 - UV - UV - UV -Face 3873 -UV Count: 3 - UV - UV - UV -Face 3874 -UV Count: 3 - UV - UV - UV -Face 3875 -UV Count: 3 - UV - UV - UV -Face 3876 -UV Count: 3 - UV - UV - UV -Face 3877 -UV Count: 3 - UV - UV - UV -Face 3878 -UV Count: 3 - UV - UV - UV -Face 3879 -UV Count: 3 - UV - UV - UV -Face 3880 -UV Count: 3 - UV - UV - UV -Face 3881 -UV Count: 3 - UV - UV - UV -Face 3882 -UV Count: 3 - UV - UV - UV -Face 3883 -UV Count: 3 - UV - UV - UV -Face 3884 -UV Count: 3 - UV - UV - UV -Face 3885 -UV Count: 3 - UV - UV - UV -Face 3886 -UV Count: 3 - UV - UV - UV -Face 3887 -UV Count: 3 - UV - UV - UV -Face 3888 -UV Count: 3 - UV - UV - UV -Face 3889 -UV Count: 3 - UV - UV - UV -Face 3890 -UV Count: 3 - UV - UV - UV -Face 3891 -UV Count: 3 - UV - UV - UV -Face 3892 -UV Count: 3 - UV - UV - UV -Face 3893 -UV Count: 3 - UV - UV - UV -Face 3894 -UV Count: 3 - UV - UV - UV -Face 3895 -UV Count: 3 - UV - UV - UV -Face 3896 -UV Count: 3 - UV - UV - UV -Face 3897 -UV Count: 3 - UV - UV - UV -Face 3898 -UV Count: 3 - UV - UV - UV -Face 3899 -UV Count: 3 - UV - UV - UV -Face 3900 -UV Count: 3 - UV - UV - UV -Face 3901 -UV Count: 3 - UV - UV - UV -Face 3902 -UV Count: 3 - UV - UV - UV -Face 3903 -UV Count: 3 - UV - UV - UV -Face 3904 -UV Count: 3 - UV - UV - UV -Face 3905 -UV Count: 3 - UV - UV - UV -Face 3906 -UV Count: 3 - UV - UV - UV -Face 3907 -UV Count: 3 - UV - UV - UV -Face 3908 -UV Count: 3 - UV - UV - UV -Face 3909 -UV Count: 3 - UV - UV - UV -Face 3910 -UV Count: 3 - UV - UV - UV -Face 3911 -UV Count: 3 - UV - UV - UV -Face 3912 -UV Count: 3 - UV - UV - UV -Face 3913 -UV Count: 3 - UV - UV - UV -Face 3914 -UV Count: 3 - UV - UV - UV -Face 3915 -UV Count: 3 - UV - UV - UV -Face 3916 -UV Count: 3 - UV - UV - UV -Face 3917 -UV Count: 3 - UV - UV - UV -Face 3918 -UV Count: 3 - UV - UV - UV -Face 3919 -UV Count: 3 - UV - UV - UV -Face 3920 -UV Count: 3 - UV - UV - UV -Face 3921 -UV Count: 3 - UV - UV - UV -Face 3922 -UV Count: 3 - UV - UV - UV -Face 3923 -UV Count: 3 - UV - UV - UV -Face 3924 -UV Count: 3 - UV - UV - UV -Face 3925 -UV Count: 3 - UV - UV - UV -Face 3926 -UV Count: 3 - UV - UV - UV -Face 3927 -UV Count: 3 - UV - UV - UV -Face 3928 -UV Count: 3 - UV - UV - UV -Face 3929 -UV Count: 3 - UV - UV - UV -Face 3930 -UV Count: 3 - UV - UV - UV -Face 3931 -UV Count: 3 - UV - UV - UV -Face 3932 -UV Count: 3 - UV - UV - UV -Face 3933 -UV Count: 3 - UV - UV - UV -Face 3934 -UV Count: 3 - UV - UV - UV -Face 3935 -UV Count: 3 - UV - UV - UV -Face 3936 -UV Count: 3 - UV - UV - UV -Face 3937 -UV Count: 3 - UV - UV - UV -Face 3938 -UV Count: 3 - UV - UV - UV -Face 3939 -UV Count: 3 - UV - UV - UV -Face 3940 -UV Count: 3 - UV - UV - UV -Face 3941 -UV Count: 3 - UV - UV - UV -Face 3942 -UV Count: 3 - UV - UV - UV -Face 3943 -UV Count: 3 - UV - UV - UV -Face 3944 -UV Count: 3 - UV - UV - UV -Face 3945 -UV Count: 3 - UV - UV - UV -Face 3946 -UV Count: 3 - UV - UV - UV -Face 3947 -UV Count: 3 - UV - UV - UV -Face 3948 -UV Count: 3 - UV - UV - UV -Face 3949 -UV Count: 3 - UV - UV - UV -Face 3950 -UV Count: 3 - UV - UV - UV -Face 3951 -UV Count: 3 - UV - UV - UV -Face 3952 -UV Count: 3 - UV - UV - UV -Face 3953 -UV Count: 3 - UV - UV - UV -Face 3954 -UV Count: 3 - UV - UV - UV -Face 3955 -UV Count: 3 - UV - UV - UV -Face 3956 -UV Count: 3 - UV - UV - UV -Face 3957 -UV Count: 3 - UV - UV - UV -Face 3958 -UV Count: 3 - UV - UV - UV -Face 3959 -UV Count: 3 - UV - UV - UV -Face 3960 -UV Count: 3 - UV - UV - UV -Face 3961 -UV Count: 3 - UV - UV - UV -Face 3962 -UV Count: 3 - UV - UV - UV -Face 3963 -UV Count: 3 - UV - UV - UV -Face 3964 -UV Count: 3 - UV - UV - UV -Face 3965 -UV Count: 3 - UV - UV - UV -Face 3966 -UV Count: 3 - UV - UV - UV -Face 3967 -UV Count: 3 - UV - UV - UV -Face 3968 -UV Count: 3 - UV - UV - UV -Face 3969 -UV Count: 3 - UV - UV - UV -Face 3970 -UV Count: 3 - UV - UV - UV -Face 3971 -UV Count: 3 - UV - UV - UV -Face 3972 -UV Count: 3 - UV - UV - UV -Face 3973 -UV Count: 3 - UV - UV - UV -Face 3974 -UV Count: 3 - UV - UV - UV -Face 3975 -UV Count: 3 - UV - UV - UV -Face 3976 -UV Count: 3 - UV - UV - UV -Face 3977 -UV Count: 3 - UV - UV - UV -Face 3978 -UV Count: 3 - UV - UV - UV -Face 3979 -UV Count: 3 - UV - UV - UV -Face 3980 -UV Count: 3 - UV - UV - UV -Face 3981 -UV Count: 3 - UV - UV - UV -Face 3982 -UV Count: 3 - UV - UV - UV -Face 3983 -UV Count: 3 - UV - UV - UV -Face 3984 -UV Count: 3 - UV - UV - UV -Face 3985 -UV Count: 3 - UV - UV - UV -Face 3986 -UV Count: 3 - UV - UV - UV -Face 3987 -UV Count: 3 - UV - UV - UV -Face 3988 -UV Count: 3 - UV - UV - UV -Face 3989 -UV Count: 3 - UV - UV - UV -Face 3990 -UV Count: 3 - UV - UV - UV -Face 3991 -UV Count: 3 - UV - UV - UV -Face 3992 -UV Count: 3 - UV - UV - UV -Face 3993 -UV Count: 3 - UV - UV - UV -Face 3994 -UV Count: 3 - UV - UV - UV -Face 3995 -UV Count: 3 - UV - UV - UV -Face 3996 -UV Count: 3 - UV - UV - UV -Face 3997 -UV Count: 3 - UV - UV - UV -Face 3998 -UV Count: 3 - UV - UV - UV -Face 3999 -UV Count: 3 - UV - UV - UV -Face 4000 -UV Count: 3 - UV - UV - UV -Face 4001 -UV Count: 3 - UV - UV - UV -Face 4002 -UV Count: 3 - UV - UV - UV -Face 4003 -UV Count: 3 - UV - UV - UV -Face 4004 -UV Count: 3 - UV - UV - UV -Face 4005 -UV Count: 3 - UV - UV - UV -Face 4006 -UV Count: 3 - UV - UV - UV -Face 4007 -UV Count: 3 - UV - UV - UV -Face 4008 -UV Count: 3 - UV - UV - UV -Face 4009 -UV Count: 3 - UV - UV - UV -Face 4010 -UV Count: 3 - UV - UV - UV -Face 4011 -UV Count: 3 - UV - UV - UV -Face 4012 -UV Count: 3 - UV - UV - UV -Face 4013 -UV Count: 3 - UV - UV - UV -Face 4014 -UV Count: 3 - UV - UV - UV -Face 4015 -UV Count: 3 - UV - UV - UV -Face 4016 -UV Count: 3 - UV - UV - UV -Face 4017 -UV Count: 3 - UV - UV - UV -Face 4018 -UV Count: 3 - UV - UV - UV -Face 4019 -UV Count: 3 - UV - UV - UV -Face 4020 -UV Count: 3 - UV - UV - UV -Face 4021 -UV Count: 3 - UV - UV - UV -Face 4022 -UV Count: 3 - UV - UV - UV -Face 4023 -UV Count: 3 - UV - UV - UV -Face 4024 -UV Count: 3 - UV - UV - UV -Face 4025 -UV Count: 3 - UV - UV - UV -Face 4026 -UV Count: 3 - UV - UV - UV -Face 4027 -UV Count: 3 - UV - UV - UV -Face 4028 -UV Count: 3 - UV - UV - UV -Face 4029 -UV Count: 3 - UV - UV - UV -Face 4030 -UV Count: 3 - UV - UV - UV -Face 4031 -UV Count: 3 - UV - UV - UV -Face 4032 -UV Count: 3 - UV - UV - UV -Face 4033 -UV Count: 3 - UV - UV - UV -Face 4034 -UV Count: 3 - UV - UV - UV -Face 4035 -UV Count: 3 - UV - UV - UV -Face 4036 -UV Count: 3 - UV - UV - UV -Face 4037 -UV Count: 3 - UV - UV - UV -Face 4038 -UV Count: 3 - UV - UV - UV -Face 4039 -UV Count: 3 - UV - UV - UV -Face 4040 -UV Count: 3 - UV - UV - UV -Face 4041 -UV Count: 3 - UV - UV - UV -Face 4042 -UV Count: 3 - UV - UV - UV -Face 4043 -UV Count: 3 - UV - UV - UV -Face 4044 -UV Count: 3 - UV - UV - UV -Face 4045 -UV Count: 3 - UV - UV - UV -Face 4046 -UV Count: 3 - UV - UV - UV -Face 4047 -UV Count: 3 - UV - UV - UV -Face 4048 -UV Count: 3 - UV - UV - UV -Face 4049 -UV Count: 3 - UV - UV - UV -Face 4050 -UV Count: 3 - UV - UV - UV -Face 4051 -UV Count: 3 - UV - UV - UV -Face 4052 -UV Count: 3 - UV - UV - UV -Face 4053 -UV Count: 3 - UV - UV - UV -Face 4054 -UV Count: 3 - UV - UV - UV -Face 4055 -UV Count: 3 - UV - UV - UV -Face 4056 -UV Count: 3 - UV - UV - UV -Face 4057 -UV Count: 3 - UV - UV - UV -Face 4058 -UV Count: 3 - UV - UV - UV -Face 4059 -UV Count: 3 - UV - UV - UV -Face 4060 -UV Count: 3 - UV - UV - UV -Face 4061 -UV Count: 3 - UV - UV - UV -Face 4062 -UV Count: 3 - UV - UV - UV -Face 4063 -UV Count: 3 - UV - UV - UV -Face 4064 -UV Count: 3 - UV - UV - UV -Face 4065 -UV Count: 3 - UV - UV - UV -Face 4066 -UV Count: 3 - UV - UV - UV -Face 4067 -UV Count: 3 - UV - UV - UV -Face 4068 -UV Count: 3 - UV - UV - UV -Face 4069 -UV Count: 3 - UV - UV - UV -Face 4070 -UV Count: 3 - UV - UV - UV -Face 4071 -UV Count: 3 - UV - UV - UV -Face 4072 -UV Count: 3 - UV - UV - UV -Face 4073 -UV Count: 3 - UV - UV - UV -Face 4074 -UV Count: 3 - UV - UV - UV -Face 4075 -UV Count: 3 - UV - UV - UV -Face 4076 -UV Count: 3 - UV - UV - UV -Face 4077 -UV Count: 3 - UV - UV - UV -Face 4078 -UV Count: 3 - UV - UV - UV -Face 4079 -UV Count: 3 - UV - UV - UV -Face 4080 -UV Count: 3 - UV - UV - UV -Face 4081 -UV Count: 3 - UV - UV - UV -Face 4082 -UV Count: 3 - UV - UV - UV -Face 4083 -UV Count: 3 - UV - UV - UV -Face 4084 -UV Count: 3 - UV - UV - UV -Face 4085 -UV Count: 3 - UV - UV - UV -Face 4086 -UV Count: 3 - UV - UV - UV -Face 4087 -UV Count: 3 - UV - UV - UV -Face 4088 -UV Count: 3 - UV - UV - UV -Face 4089 -UV Count: 3 - UV - UV - UV -Face 4090 -UV Count: 3 - UV - UV - UV -Face 4091 -UV Count: 3 - UV - UV - UV -Face 4092 -UV Count: 3 - UV - UV - UV -Face 4093 -UV Count: 3 - UV - UV - UV -Face 4094 -UV Count: 3 - UV - UV - UV -Face 4095 -UV Count: 3 - UV - UV - UV -Face 4096 -UV Count: 3 - UV - UV - UV -Face 4097 -UV Count: 3 - UV - UV - UV -Face 4098 -UV Count: 3 - UV - UV - UV -Face 4099 -UV Count: 3 - UV - UV - UV -Face 4100 -UV Count: 3 - UV - UV - UV -Face 4101 -UV Count: 3 - UV - UV - UV -Face 4102 -UV Count: 3 - UV - UV - UV -Face 4103 -UV Count: 3 - UV - UV - UV -Face 4104 -UV Count: 3 - UV - UV - UV -Face 4105 -UV Count: 3 - UV - UV - UV -Face 4106 -UV Count: 3 - UV - UV - UV -Face 4107 -UV Count: 3 - UV - UV - UV -Face 4108 -UV Count: 3 - UV - UV - UV -Face 4109 -UV Count: 3 - UV - UV - UV -Face 4110 -UV Count: 3 - UV - UV - UV -Face 4111 -UV Count: 3 - UV - UV - UV -Face 4112 -UV Count: 3 - UV - UV - UV -Face 4113 -UV Count: 3 - UV - UV - UV -Face 4114 -UV Count: 3 - UV - UV - UV -Face 4115 -UV Count: 3 - UV - UV - UV -Face 4116 -UV Count: 3 - UV - UV - UV -Face 4117 -UV Count: 3 - UV - UV - UV -Face 4118 -UV Count: 3 - UV - UV - UV -Face 4119 -UV Count: 3 - UV - UV - UV -Face 4120 -UV Count: 3 - UV - UV - UV -Face 4121 -UV Count: 3 - UV - UV - UV -Face 4122 -UV Count: 3 - UV - UV - UV -Face 4123 -UV Count: 3 - UV - UV - UV -Face 4124 -UV Count: 3 - UV - UV - UV -Face 4125 -UV Count: 3 - UV - UV - UV -Face 4126 -UV Count: 3 - UV - UV - UV -Face 4127 -UV Count: 3 - UV - UV - UV -Face 4128 -UV Count: 3 - UV - UV - UV -Face 4129 -UV Count: 3 - UV - UV - UV -Face 4130 -UV Count: 3 - UV - UV - UV -Face 4131 -UV Count: 3 - UV - UV - UV -Face 4132 -UV Count: 3 - UV - UV - UV -Face 4133 -UV Count: 3 - UV - UV - UV -Face 4134 -UV Count: 3 - UV - UV - UV -Face 4135 -UV Count: 3 - UV - UV - UV -Face 4136 -UV Count: 3 - UV - UV - UV -Face 4137 -UV Count: 3 - UV - UV - UV -Face 4138 -UV Count: 3 - UV - UV - UV -Face 4139 -UV Count: 3 - UV - UV - UV -Face 4140 -UV Count: 3 - UV - UV - UV -Face 4141 -UV Count: 3 - UV - UV - UV -Face 4142 -UV Count: 3 - UV - UV - UV -Face 4143 -UV Count: 3 - UV - UV - UV -Face 4144 -UV Count: 3 - UV - UV - UV -Face 4145 -UV Count: 3 - UV - UV - UV -Face 4146 -UV Count: 3 - UV - UV - UV -Face 4147 -UV Count: 3 - UV - UV - UV -Face 4148 -UV Count: 3 - UV - UV - UV -Face 4149 -UV Count: 3 - UV - UV - UV -Face 4150 -UV Count: 3 - UV - UV - UV -Face 4151 -UV Count: 3 - UV - UV - UV -Face 4152 -UV Count: 3 - UV - UV - UV -Face 4153 -UV Count: 3 - UV - UV - UV -Face 4154 -UV Count: 3 - UV - UV - UV -Face 4155 -UV Count: 3 - UV - UV - UV -Face 4156 -UV Count: 3 - UV - UV - UV -Face 4157 -UV Count: 3 - UV - UV - UV -Face 4158 -UV Count: 3 - UV - UV - UV -Face 4159 -UV Count: 3 - UV - UV - UV -Face 4160 -UV Count: 3 - UV - UV - UV -Face 4161 -UV Count: 3 - UV - UV - UV -Face 4162 -UV Count: 3 - UV - UV - UV -Face 4163 -UV Count: 3 - UV - UV - UV -Face 4164 -UV Count: 3 - UV - UV - UV -Face 4165 -UV Count: 3 - UV - UV - UV -Face 4166 -UV Count: 3 - UV - UV - UV -Face 4167 -UV Count: 3 - UV - UV - UV -Face 4168 -UV Count: 3 - UV - UV - UV -Face 4169 -UV Count: 3 - UV - UV - UV -Face 4170 -UV Count: 3 - UV - UV - UV -Face 4171 -UV Count: 3 - UV - UV - UV -Face 4172 -UV Count: 3 - UV - UV - UV -Face 4173 -UV Count: 3 - UV - UV - UV -Face 4174 -UV Count: 3 - UV - UV - UV -Face 4175 -UV Count: 3 - UV - UV - UV -Face 4176 -UV Count: 3 - UV - UV - UV -Face 4177 -UV Count: 3 - UV - UV - UV -Face 4178 -UV Count: 3 - UV - UV - UV -Face 4179 -UV Count: 3 - UV - UV - UV -Face 4180 -UV Count: 3 - UV - UV - UV -Face 4181 -UV Count: 3 - UV - UV - UV -Face 4182 -UV Count: 3 - UV - UV - UV -Face 4183 -UV Count: 3 - UV - UV - UV -Face 4184 -UV Count: 3 - UV - UV - UV -Face 4185 -UV Count: 3 - UV - UV - UV -Face 4186 -UV Count: 3 - UV - UV - UV -Face 4187 -UV Count: 3 - UV - UV - UV -Face 4188 -UV Count: 3 - UV - UV - UV -Face 4189 -UV Count: 3 - UV - UV - UV -Face 4190 -UV Count: 3 - UV - UV - UV -Face 4191 -UV Count: 3 - UV - UV - UV -Face 4192 -UV Count: 3 - UV - UV - UV -Face 4193 -UV Count: 3 - UV - UV - UV -Face 4194 -UV Count: 3 - UV - UV - UV -Face 4195 -UV Count: 3 - UV - UV - UV -Face 4196 -UV Count: 3 - UV - UV - UV -Face 4197 -UV Count: 3 - UV - UV - UV -Face 4198 -UV Count: 3 - UV - UV - UV -Face 4199 -UV Count: 3 - UV - UV - UV -Face 4200 -UV Count: 3 - UV - UV - UV -Face 4201 -UV Count: 3 - UV - UV - UV -Face 4202 -UV Count: 3 - UV - UV - UV -Face 4203 -UV Count: 3 - UV - UV - UV -Face 4204 -UV Count: 3 - UV - UV - UV -Face 4205 -UV Count: 3 - UV - UV - UV -Face 4206 -UV Count: 3 - UV - UV - UV -Face 4207 -UV Count: 3 - UV - UV - UV -Face 4208 -UV Count: 3 - UV - UV - UV -Face 4209 -UV Count: 3 - UV - UV - UV -Face 4210 -UV Count: 3 - UV - UV - UV -Face 4211 -UV Count: 3 - UV - UV - UV -Face 4212 -UV Count: 3 - UV - UV - UV -Face 4213 -UV Count: 3 - UV - UV - UV -Face 4214 -UV Count: 3 - UV - UV - UV -Face 4215 -UV Count: 3 - UV - UV - UV -Face 4216 -UV Count: 3 - UV - UV - UV -Face 4217 -UV Count: 3 - UV - UV - UV -Face 4218 -UV Count: 3 - UV - UV - UV -Face 4219 -UV Count: 3 - UV - UV - UV -Face 4220 -UV Count: 3 - UV - UV - UV -Face 4221 -UV Count: 3 - UV - UV - UV -Face 4222 -UV Count: 3 - UV - UV - UV -Face 4223 -UV Count: 3 - UV - UV - UV -Face 4224 -UV Count: 3 - UV - UV - UV -Face 4225 -UV Count: 3 - UV - UV - UV -Face 4226 -UV Count: 3 - UV - UV - UV -Face 4227 -UV Count: 3 - UV - UV - UV -Face 4228 -UV Count: 3 - UV - UV - UV -Face 4229 -UV Count: 3 - UV - UV - UV -Face 4230 -UV Count: 3 - UV - UV - UV -Face 4231 -UV Count: 3 - UV - UV - UV -Face 4232 -UV Count: 3 - UV - UV - UV -Face 4233 -UV Count: 3 - UV - UV - UV -Face 4234 -UV Count: 3 - UV - UV - UV -Face 4235 -UV Count: 3 - UV - UV - UV -Face 4236 -UV Count: 3 - UV - UV - UV -Face 4237 -UV Count: 3 - UV - UV - UV -Face 4238 -UV Count: 3 - UV - UV - UV -Face 4239 -UV Count: 3 - UV - UV - UV -Face 4240 -UV Count: 3 - UV - UV - UV -Face 4241 -UV Count: 3 - UV - UV - UV -Face 4242 -UV Count: 3 - UV - UV - UV -Face 4243 -UV Count: 3 - UV - UV - UV -Face 4244 -UV Count: 3 - UV - UV - UV -Face 4245 -UV Count: 3 - UV - UV - UV -Face 4246 -UV Count: 3 - UV - UV - UV -Face 4247 -UV Count: 3 - UV - UV - UV -Face 4248 -UV Count: 3 - UV - UV - UV -Face 4249 -UV Count: 3 - UV - UV - UV -Face 4250 -UV Count: 3 - UV - UV - UV -Face 4251 -UV Count: 3 - UV - UV - UV -Face 4252 -UV Count: 3 - UV - UV - UV -Face 4253 -UV Count: 3 - UV - UV - UV -Face 4254 -UV Count: 3 - UV - UV - UV -Face 4255 -UV Count: 3 - UV - UV - UV -Face 4256 -UV Count: 3 - UV - UV - UV -Face 4257 -UV Count: 3 - UV - UV - UV -Face 4258 -UV Count: 3 - UV - UV - UV -Face 4259 -UV Count: 3 - UV - UV - UV -Face 4260 -UV Count: 3 - UV - UV - UV -Face 4261 -UV Count: 3 - UV - UV - UV -Face 4262 -UV Count: 3 - UV - UV - UV -Face 4263 -UV Count: 3 - UV - UV - UV -Face 4264 -UV Count: 3 - UV - UV - UV -Face 4265 -UV Count: 3 - UV - UV - UV -Face 4266 -UV Count: 3 - UV - UV - UV -Face 4267 -UV Count: 3 - UV - UV - UV -Face 4268 -UV Count: 3 - UV - UV - UV -Face 4269 -UV Count: 3 - UV - UV - UV -Face 4270 -UV Count: 3 - UV - UV - UV -Face 4271 -UV Count: 3 - UV - UV - UV -Face 4272 -UV Count: 3 - UV - UV - UV -Face 4273 -UV Count: 3 - UV - UV - UV -Face 4274 -UV Count: 3 - UV - UV - UV -Face 4275 -UV Count: 3 - UV - UV - UV -Face 4276 -UV Count: 3 - UV - UV - UV -Face 4277 -UV Count: 3 - UV - UV - UV -Face 4278 -UV Count: 3 - UV - UV - UV -Face 4279 -UV Count: 3 - UV - UV - UV -Face 4280 -UV Count: 3 - UV - UV - UV -Face 4281 -UV Count: 3 - UV - UV - UV -Face 4282 -UV Count: 3 - UV - UV - UV -Face 4283 -UV Count: 3 - UV - UV - UV -Face 4284 -UV Count: 3 - UV - UV - UV -Face 4285 -UV Count: 3 - UV - UV - UV -Face 4286 -UV Count: 3 - UV - UV - UV -Face 4287 -UV Count: 3 - UV - UV - UV -Face 4288 -UV Count: 3 - UV - UV - UV -Face 4289 -UV Count: 3 - UV - UV - UV -Face 4290 -UV Count: 3 - UV - UV - UV -Face 4291 -UV Count: 3 - UV - UV - UV -Face 4292 -UV Count: 3 - UV - UV - UV -Face 4293 -UV Count: 3 - UV - UV - UV -Face 4294 -UV Count: 3 - UV - UV - UV -Face 4295 -UV Count: 3 - UV - UV - UV -Face 4296 -UV Count: 3 - UV - UV - UV -Face 4297 -UV Count: 3 - UV - UV - UV -Face 4298 -UV Count: 3 - UV - UV - UV -Face 4299 -UV Count: 3 - UV - UV - UV -Face 4300 -UV Count: 3 - UV - UV - UV -Face 4301 -UV Count: 3 - UV - UV - UV -Face 4302 -UV Count: 3 - UV - UV - UV -Face 4303 -UV Count: 3 - UV - UV - UV -Face 4304 -UV Count: 3 - UV - UV - UV -Face 4305 -UV Count: 3 - UV - UV - UV -Face 4306 -UV Count: 3 - UV - UV - UV -Face 4307 -UV Count: 3 - UV - UV - UV -Face 4308 -UV Count: 3 - UV - UV - UV -Face 4309 -UV Count: 3 - UV - UV - UV -Face 4310 -UV Count: 3 - UV - UV - UV -Face 4311 -UV Count: 3 - UV - UV - UV -Face 4312 -UV Count: 3 - UV - UV - UV -Face 4313 -UV Count: 3 - UV - UV - UV -Face 4314 -UV Count: 3 - UV - UV - UV -Face 4315 -UV Count: 3 - UV - UV - UV -Face 4316 -UV Count: 3 - UV - UV - UV -Face 4317 -UV Count: 3 - UV - UV - UV -Face 4318 -UV Count: 3 - UV - UV - UV -Face 4319 -UV Count: 3 - UV - UV - UV -Face 4320 -UV Count: 3 - UV - UV - UV -Face 4321 -UV Count: 3 - UV - UV - UV -Face 4322 -UV Count: 3 - UV - UV - UV -Face 4323 -UV Count: 3 - UV - UV - UV -Face 4324 -UV Count: 3 - UV - UV - UV -Face 4325 -UV Count: 3 - UV - UV - UV -Face 4326 -UV Count: 3 - UV - UV - UV -Face 4327 -UV Count: 3 - UV - UV - UV -Face 4328 -UV Count: 3 - UV - UV - UV -Face 4329 -UV Count: 3 - UV - UV - UV -Face 4330 -UV Count: 3 - UV - UV - UV -Face 4331 -UV Count: 3 - UV - UV - UV -Face 4332 -UV Count: 3 - UV - UV - UV -Face 4333 -UV Count: 3 - UV - UV - UV -Face 4334 -UV Count: 3 - UV - UV - UV -Face 4335 -UV Count: 3 - UV - UV - UV -Face 4336 -UV Count: 3 - UV - UV - UV -Face 4337 -UV Count: 3 - UV - UV - UV -Face 4338 -UV Count: 3 - UV - UV - UV -Face 4339 -UV Count: 3 - UV - UV - UV -Face 4340 -UV Count: 3 - UV - UV - UV -Face 4341 -UV Count: 3 - UV - UV - UV -Face 4342 -UV Count: 3 - UV - UV - UV -Face 4343 -UV Count: 3 - UV - UV - UV -Face 4344 -UV Count: 3 - UV - UV - UV -Face 4345 -UV Count: 3 - UV - UV - UV -Face 4346 -UV Count: 3 - UV - UV - UV -Face 4347 -UV Count: 3 - UV - UV - UV -Face 4348 -UV Count: 3 - UV - UV - UV -Face 4349 -UV Count: 3 - UV - UV - UV -Face 4350 -UV Count: 3 - UV - UV - UV -Face 4351 -UV Count: 3 - UV - UV - UV -Face 4352 -UV Count: 3 - UV - UV - UV -Face 4353 -UV Count: 3 - UV - UV - UV -Face 4354 -UV Count: 3 - UV - UV - UV -Face 4355 -UV Count: 3 - UV - UV - UV -Face 4356 -UV Count: 3 - UV - UV - UV -Face 4357 -UV Count: 3 - UV - UV - UV -Face 4358 -UV Count: 3 - UV - UV - UV -Face 4359 -UV Count: 3 - UV - UV - UV -Face 4360 -UV Count: 3 - UV - UV - UV -Face 4361 -UV Count: 3 - UV - UV - UV -Face 4362 -UV Count: 3 - UV - UV - UV -Face 4363 -UV Count: 3 - UV - UV - UV -Face 4364 -UV Count: 3 - UV - UV - UV -Face 4365 -UV Count: 3 - UV - UV - UV -Face 4366 -UV Count: 3 - UV - UV - UV -Face 4367 -UV Count: 3 - UV - UV - UV -Face 4368 -UV Count: 3 - UV - UV - UV -Face 4369 -UV Count: 3 - UV - UV - UV -Face 4370 -UV Count: 3 - UV - UV - UV -Face 4371 -UV Count: 3 - UV - UV - UV -Face 4372 -UV Count: 3 - UV - UV - UV -Face 4373 -UV Count: 3 - UV - UV - UV -Face 4374 -UV Count: 3 - UV - UV - UV -Face 4375 -UV Count: 3 - UV - UV - UV -Face 4376 -UV Count: 3 - UV - UV - UV -Face 4377 -UV Count: 3 - UV - UV - UV -Face 4378 -UV Count: 3 - UV - UV - UV -Face 4379 -UV Count: 3 - UV - UV - UV -Face 4380 -UV Count: 3 - UV - UV - UV -Face 4381 -UV Count: 3 - UV - UV - UV -Face 4382 -UV Count: 3 - UV - UV - UV -Face 4383 -UV Count: 3 - UV - UV - UV -Face 4384 -UV Count: 3 - UV - UV - UV -Face 4385 -UV Count: 3 - UV - UV - UV -Face 4386 -UV Count: 3 - UV - UV - UV -Face 4387 -UV Count: 3 - UV - UV - UV -Face 4388 -UV Count: 3 - UV - UV - UV -Face 4389 -UV Count: 3 - UV - UV - UV -Face 4390 -UV Count: 3 - UV - UV - UV -Face 4391 -UV Count: 3 - UV - UV - UV -Face 4392 -UV Count: 3 - UV - UV - UV -Face 4393 -UV Count: 3 - UV - UV - UV -Face 4394 -UV Count: 3 - UV - UV - UV -Face 4395 -UV Count: 3 - UV - UV - UV -Face 4396 -UV Count: 3 - UV - UV - UV -Face 4397 -UV Count: 3 - UV - UV - UV -Face 4398 -UV Count: 3 - UV - UV - UV -Face 4399 -UV Count: 3 - UV - UV - UV -Face 4400 -UV Count: 3 - UV - UV - UV -Face 4401 -UV Count: 3 - UV - UV - UV -Face 4402 -UV Count: 3 - UV - UV - UV -Face 4403 -UV Count: 3 - UV - UV - UV -Face 4404 -UV Count: 3 - UV - UV - UV -Face 4405 -UV Count: 3 - UV - UV - UV -Face 4406 -UV Count: 3 - UV - UV - UV -Face 4407 -UV Count: 3 - UV - UV - UV -Face 4408 -UV Count: 3 - UV - UV - UV -Face 4409 -UV Count: 3 - UV - UV - UV -Face 4410 -UV Count: 3 - UV - UV - UV -Face 4411 -UV Count: 3 - UV - UV - UV -Face 4412 -UV Count: 3 - UV - UV - UV -Face 4413 -UV Count: 3 - UV - UV - UV -Face 4414 -UV Count: 3 - UV - UV - UV -Face 4415 -UV Count: 3 - UV - UV - UV -Face 4416 -UV Count: 3 - UV - UV - UV -Face 4417 -UV Count: 3 - UV - UV - UV -Face 4418 -UV Count: 3 - UV - UV - UV -Face 4419 -UV Count: 3 - UV - UV - UV -Face 4420 -UV Count: 3 - UV - UV - UV -Face 4421 -UV Count: 3 - UV - UV - UV -Face 4422 -UV Count: 3 - UV - UV - UV -Face 4423 -UV Count: 3 - UV - UV - UV -Face 4424 -UV Count: 3 - UV - UV - UV -Face 4425 -UV Count: 3 - UV - UV - UV -Face 4426 -UV Count: 3 - UV - UV - UV -Face 4427 -UV Count: 3 - UV - UV - UV -Face 4428 -UV Count: 3 - UV - UV - UV -Face 4429 -UV Count: 3 - UV - UV - UV -Face 4430 -UV Count: 3 - UV - UV - UV -Face 4431 -UV Count: 3 - UV - UV - UV -Face 4432 -UV Count: 3 - UV - UV - UV -Face 4433 -UV Count: 3 - UV - UV - UV -Face 4434 -UV Count: 3 - UV - UV - UV -Face 4435 -UV Count: 3 - UV - UV - UV -Face 4436 -UV Count: 3 - UV - UV - UV -Face 4437 -UV Count: 3 - UV - UV - UV -Face 4438 -UV Count: 3 - UV - UV - UV -Face 4439 -UV Count: 3 - UV - UV - UV -Face 4440 -UV Count: 3 - UV - UV - UV -Face 4441 -UV Count: 3 - UV - UV - UV -Face 4442 -UV Count: 3 - UV - UV - UV -Face 4443 -UV Count: 3 - UV - UV - UV -Face 4444 -UV Count: 3 - UV - UV - UV -Face 4445 -UV Count: 3 - UV - UV - UV -Face 4446 -UV Count: 3 - UV - UV - UV -Face 4447 -UV Count: 3 - UV - UV - UV -Face 4448 -UV Count: 3 - UV - UV - UV -Face 4449 -UV Count: 3 - UV - UV - UV -Face 4450 -UV Count: 3 - UV - UV - UV -Face 4451 -UV Count: 3 - UV - UV - UV -Face 4452 -UV Count: 3 - UV - UV - UV -Face 4453 -UV Count: 3 - UV - UV - UV -Face 4454 -UV Count: 3 - UV - UV - UV -Face 4455 -UV Count: 3 - UV - UV - UV -Face 4456 -UV Count: 3 - UV - UV - UV -Face 4457 -UV Count: 3 - UV - UV - UV -Face 4458 -UV Count: 3 - UV - UV - UV -Face 4459 -UV Count: 3 - UV - UV - UV -Face 4460 -UV Count: 3 - UV - UV - UV -Face 4461 -UV Count: 3 - UV - UV - UV -Face 4462 -UV Count: 3 - UV - UV - UV -Face 4463 -UV Count: 3 - UV - UV - UV -Face 4464 -UV Count: 3 - UV - UV - UV -Face 4465 -UV Count: 3 - UV - UV - UV -Face 4466 -UV Count: 3 - UV - UV - UV -Face 4467 -UV Count: 3 - UV - UV - UV -Face 4468 -UV Count: 3 - UV - UV - UV -Face 4469 -UV Count: 3 - UV - UV - UV -Face 4470 -UV Count: 3 - UV - UV - UV -Face 4471 -UV Count: 3 - UV - UV - UV -Face 4472 -UV Count: 3 - UV - UV - UV -Face 4473 -UV Count: 3 - UV - UV - UV -Face 4474 -UV Count: 3 - UV - UV - UV -Face 4475 -UV Count: 3 - UV - UV - UV -Face 4476 -UV Count: 3 - UV - UV - UV -Face 4477 -UV Count: 3 - UV - UV - UV -Face 4478 -UV Count: 3 - UV - UV - UV -Face 4479 -UV Count: 3 - UV - UV - UV -===Normals: -Vertex 0: Normal -Vertex 1: Normal -Vertex 2: Normal -Vertex 3: Normal -Vertex 4: Normal -Vertex 5: Normal -Vertex 6: Normal -Vertex 7: Normal -Vertex 8: Normal -Vertex 9: Normal -Vertex 10: Normal -Vertex 11: Normal -Vertex 12: Normal -Vertex 13: Normal -Vertex 14: Normal -Vertex 15: Normal -Vertex 16: Normal -Vertex 17: Normal -Vertex 18: Normal -Vertex 19: Normal -Vertex 20: Normal -Vertex 21: Normal -Vertex 22: Normal -Vertex 23: Normal -Vertex 24: Normal -Vertex 25: Normal -Vertex 26: Normal -Vertex 27: Normal -Vertex 28: Normal -Vertex 29: Normal -Vertex 30: Normal -Vertex 31: Normal -Vertex 32: Normal -Vertex 33: Normal -Vertex 34: Normal -Vertex 35: Normal -Vertex 36: Normal -Vertex 37: Normal -Vertex 38: Normal -Vertex 39: Normal -Vertex 40: Normal -Vertex 41: Normal -Vertex 42: Normal -Vertex 43: Normal -Vertex 44: Normal -Vertex 45: Normal -Vertex 46: Normal -Vertex 47: Normal -Vertex 48: Normal -Vertex 49: Normal -Vertex 50: Normal -Vertex 51: Normal -Vertex 52: Normal -Vertex 53: Normal -Vertex 54: Normal -Vertex 55: Normal -Vertex 56: Normal -Vertex 57: Normal -Vertex 58: Normal -Vertex 59: Normal -Vertex 60: Normal -Vertex 61: Normal -Vertex 62: Normal -Vertex 63: Normal -Vertex 64: Normal -Vertex 65: Normal -Vertex 66: Normal -Vertex 67: Normal -Vertex 68: Normal -Vertex 69: Normal -Vertex 70: Normal -Vertex 71: Normal -Vertex 72: Normal -Vertex 73: Normal -Vertex 74: Normal -Vertex 75: Normal -Vertex 76: Normal -Vertex 77: Normal -Vertex 78: Normal -Vertex 79: Normal -Vertex 80: Normal -Vertex 81: Normal -Vertex 82: Normal -Vertex 83: Normal -Vertex 84: Normal -Vertex 85: Normal -Vertex 86: Normal -Vertex 87: Normal -Vertex 88: Normal -Vertex 89: Normal -Vertex 90: Normal -Vertex 91: Normal -Vertex 92: Normal -Vertex 93: Normal -Vertex 94: Normal -Vertex 95: Normal -Vertex 96: Normal -Vertex 97: Normal -Vertex 98: Normal -Vertex 99: Normal -Vertex 100: Normal -Vertex 101: Normal -Vertex 102: Normal -Vertex 103: Normal -Vertex 104: Normal -Vertex 105: Normal -Vertex 106: Normal -Vertex 107: Normal -Vertex 108: Normal -Vertex 109: Normal -Vertex 110: Normal -Vertex 111: Normal -Vertex 112: Normal -Vertex 113: Normal -Vertex 114: Normal -Vertex 115: Normal -Vertex 116: Normal -Vertex 117: Normal -Vertex 118: Normal -Vertex 119: Normal -Vertex 120: Normal -Vertex 121: Normal -Vertex 122: Normal -Vertex 123: Normal -Vertex 124: Normal -Vertex 125: Normal -Vertex 126: Normal -Vertex 127: Normal -Vertex 128: Normal -Vertex 129: Normal -Vertex 130: Normal -Vertex 131: Normal -Vertex 132: Normal -Vertex 133: Normal -Vertex 134: Normal -Vertex 135: Normal -Vertex 136: Normal -Vertex 137: Normal -Vertex 138: Normal -Vertex 139: Normal -Vertex 140: Normal -Vertex 141: Normal -Vertex 142: Normal -Vertex 143: Normal -Vertex 144: Normal -Vertex 145: Normal -Vertex 146: Normal -Vertex 147: Normal -Vertex 148: Normal -Vertex 149: Normal -Vertex 150: Normal -Vertex 151: Normal -Vertex 152: Normal -Vertex 153: Normal -Vertex 154: Normal -Vertex 155: Normal -Vertex 156: Normal -Vertex 157: Normal -Vertex 158: Normal -Vertex 159: Normal -Vertex 160: Normal -Vertex 161: Normal -Vertex 162: Normal -Vertex 163: Normal -Vertex 164: Normal -Vertex 165: Normal -Vertex 166: Normal -Vertex 167: Normal -Vertex 168: Normal -Vertex 169: Normal -Vertex 170: Normal -Vertex 171: Normal -Vertex 172: Normal -Vertex 173: Normal -Vertex 174: Normal -Vertex 175: Normal -Vertex 176: Normal -Vertex 177: Normal -Vertex 178: Normal -Vertex 179: Normal -Vertex 180: Normal -Vertex 181: Normal -Vertex 182: Normal -Vertex 183: Normal -Vertex 184: Normal -Vertex 185: Normal -Vertex 186: Normal -Vertex 187: Normal -Vertex 188: Normal -Vertex 189: Normal -Vertex 190: Normal -Vertex 191: Normal -Vertex 192: Normal -Vertex 193: Normal -Vertex 194: Normal -Vertex 195: Normal -Vertex 196: Normal -Vertex 197: Normal -Vertex 198: Normal -Vertex 199: Normal -Vertex 200: Normal -Vertex 201: Normal -Vertex 202: Normal -Vertex 203: Normal -Vertex 204: Normal -Vertex 205: Normal -Vertex 206: Normal -Vertex 207: Normal -Vertex 208: Normal -Vertex 209: Normal -Vertex 210: Normal -Vertex 211: Normal -Vertex 212: Normal -Vertex 213: Normal -Vertex 214: Normal -Vertex 215: Normal -Vertex 216: Normal -Vertex 217: Normal -Vertex 218: Normal -Vertex 219: Normal -Vertex 220: Normal -Vertex 221: Normal -Vertex 222: Normal -Vertex 223: Normal -Vertex 224: Normal -Vertex 225: Normal -Vertex 226: Normal -Vertex 227: Normal -Vertex 228: Normal -Vertex 229: Normal -Vertex 230: Normal -Vertex 231: Normal -Vertex 232: Normal -Vertex 233: Normal -Vertex 234: Normal -Vertex 235: Normal -Vertex 236: Normal -Vertex 237: Normal -Vertex 238: Normal -Vertex 239: Normal -Vertex 240: Normal -Vertex 241: Normal -Vertex 242: Normal -Vertex 243: Normal -Vertex 244: Normal -Vertex 245: Normal -Vertex 246: Normal -Vertex 247: Normal -Vertex 248: Normal -Vertex 249: Normal -Vertex 250: Normal -Vertex 251: Normal -Vertex 252: Normal -Vertex 253: Normal -Vertex 254: Normal -Vertex 255: Normal -Vertex 256: Normal -Vertex 257: Normal -Vertex 258: Normal -Vertex 259: Normal -Vertex 260: Normal -Vertex 261: Normal -Vertex 262: Normal -Vertex 263: Normal -Vertex 264: Normal -Vertex 265: Normal -Vertex 266: Normal -Vertex 267: Normal -Vertex 268: Normal -Vertex 269: Normal -Vertex 270: Normal -Vertex 271: Normal -Vertex 272: Normal -Vertex 273: Normal -Vertex 274: Normal -Vertex 275: Normal -Vertex 276: Normal -Vertex 277: Normal -Vertex 278: Normal -Vertex 279: Normal -Vertex 280: Normal -Vertex 281: Normal -Vertex 282: Normal -Vertex 283: Normal -Vertex 284: Normal -Vertex 285: Normal -Vertex 286: Normal -Vertex 287: Normal -Vertex 288: Normal -Vertex 289: Normal -Vertex 290: Normal -Vertex 291: Normal -Vertex 292: Normal -Vertex 293: Normal -Vertex 294: Normal -Vertex 295: Normal -Vertex 296: Normal -Vertex 297: Normal -Vertex 298: Normal -Vertex 299: Normal -Vertex 300: Normal -Vertex 301: Normal -Vertex 302: Normal -Vertex 303: Normal -Vertex 304: Normal -Vertex 305: Normal -Vertex 306: Normal -Vertex 307: Normal -Vertex 308: Normal -Vertex 309: Normal -Vertex 310: Normal -Vertex 311: Normal -Vertex 312: Normal -Vertex 313: Normal -Vertex 314: Normal -Vertex 315: Normal -Vertex 316: Normal -Vertex 317: Normal -Vertex 318: Normal -Vertex 319: Normal -Vertex 320: Normal -Vertex 321: Normal -Vertex 322: Normal -Vertex 323: Normal -Vertex 324: Normal -Vertex 325: Normal -Vertex 326: Normal -Vertex 327: Normal -Vertex 328: Normal -Vertex 329: Normal -Vertex 330: Normal -Vertex 331: Normal -Vertex 332: Normal -Vertex 333: Normal -Vertex 334: Normal -Vertex 335: Normal -Vertex 336: Normal -Vertex 337: Normal -Vertex 338: Normal -Vertex 339: Normal -Vertex 340: Normal -Vertex 341: Normal -Vertex 342: Normal -Vertex 343: Normal -Vertex 344: Normal -Vertex 345: Normal -Vertex 346: Normal -Vertex 347: Normal -Vertex 348: Normal -Vertex 349: Normal -Vertex 350: Normal -Vertex 351: Normal -Vertex 352: Normal -Vertex 353: Normal -Vertex 354: Normal -Vertex 355: Normal -Vertex 356: Normal -Vertex 357: Normal -Vertex 358: Normal -Vertex 359: Normal -Vertex 360: Normal -Vertex 361: Normal -Vertex 362: Normal -Vertex 363: Normal -Vertex 364: Normal -Vertex 365: Normal -Vertex 366: Normal -Vertex 367: Normal -Vertex 368: Normal -Vertex 369: Normal -Vertex 370: Normal -Vertex 371: Normal -Vertex 372: Normal -Vertex 373: Normal -Vertex 374: Normal -Vertex 375: Normal -Vertex 376: Normal -Vertex 377: Normal -Vertex 378: Normal -Vertex 379: Normal -Vertex 380: Normal -Vertex 381: Normal -Vertex 382: Normal -Vertex 383: Normal -Vertex 384: Normal -Vertex 385: Normal -Vertex 386: Normal -Vertex 387: Normal -Vertex 388: Normal -Vertex 389: Normal -Vertex 390: Normal -Vertex 391: Normal -Vertex 392: Normal -Vertex 393: Normal -Vertex 394: Normal -Vertex 395: Normal -Vertex 396: Normal -Vertex 397: Normal -Vertex 398: Normal -Vertex 399: Normal -Vertex 400: Normal -Vertex 401: Normal -Vertex 402: Normal -Vertex 403: Normal -Vertex 404: Normal -Vertex 405: Normal -Vertex 406: Normal -Vertex 407: Normal -Vertex 408: Normal -Vertex 409: Normal -Vertex 410: Normal -Vertex 411: Normal -Vertex 412: Normal -Vertex 413: Normal -Vertex 414: Normal -Vertex 415: Normal -Vertex 416: Normal -Vertex 417: Normal -Vertex 418: Normal -Vertex 419: Normal -Vertex 420: Normal -Vertex 421: Normal -Vertex 422: Normal -Vertex 423: Normal -Vertex 424: Normal -Vertex 425: Normal -Vertex 426: Normal -Vertex 427: Normal -Vertex 428: Normal -Vertex 429: Normal -Vertex 430: Normal -Vertex 431: Normal -Vertex 432: Normal -Vertex 433: Normal -Vertex 434: Normal -Vertex 435: Normal -Vertex 436: Normal -Vertex 437: Normal -Vertex 438: Normal -Vertex 439: Normal -Vertex 440: Normal -Vertex 441: Normal -Vertex 442: Normal -Vertex 443: Normal -Vertex 444: Normal -Vertex 445: Normal -Vertex 446: Normal -Vertex 447: Normal -Vertex 448: Normal -Vertex 449: Normal -Vertex 450: Normal -Vertex 451: Normal -Vertex 452: Normal -Vertex 453: Normal -Vertex 454: Normal -Vertex 455: Normal -Vertex 456: Normal -Vertex 457: Normal -Vertex 458: Normal -Vertex 459: Normal -Vertex 460: Normal -Vertex 461: Normal -Vertex 462: Normal -Vertex 463: Normal -Vertex 464: Normal -Vertex 465: Normal -Vertex 466: Normal -Vertex 467: Normal -Vertex 468: Normal -Vertex 469: Normal -Vertex 470: Normal -Vertex 471: Normal -Vertex 472: Normal -Vertex 473: Normal -Vertex 474: Normal -Vertex 475: Normal -Vertex 476: Normal -Vertex 477: Normal -Vertex 478: Normal -Vertex 479: Normal -Vertex 480: Normal -Vertex 481: Normal -Vertex 482: Normal -Vertex 483: Normal -Vertex 484: Normal -Vertex 485: Normal -Vertex 486: Normal -Vertex 487: Normal -Vertex 488: Normal -Vertex 489: Normal -Vertex 490: Normal -Vertex 491: Normal -Vertex 492: Normal -Vertex 493: Normal -Vertex 494: Normal -Vertex 495: Normal -Vertex 496: Normal -Vertex 497: Normal -Vertex 498: Normal -Vertex 499: Normal -Vertex 500: Normal -Vertex 501: Normal -Vertex 502: Normal -Vertex 503: Normal -Vertex 504: Normal -Vertex 505: Normal -Vertex 506: Normal -Vertex 507: Normal -Vertex 508: Normal -Vertex 509: Normal -Vertex 510: Normal -Vertex 511: Normal -Vertex 512: Normal -Vertex 513: Normal -Vertex 514: Normal -Vertex 515: Normal -Vertex 516: Normal -Vertex 517: Normal -Vertex 518: Normal -Vertex 519: Normal -Vertex 520: Normal -Vertex 521: Normal -Vertex 522: Normal -Vertex 523: Normal -Vertex 524: Normal -Vertex 525: Normal -Vertex 526: Normal -Vertex 527: Normal -Vertex 528: Normal -Vertex 529: Normal -Vertex 530: Normal -Vertex 531: Normal -Vertex 532: Normal -Vertex 533: Normal -Vertex 534: Normal -Vertex 535: Normal -Vertex 536: Normal -Vertex 537: Normal -Vertex 538: Normal -Vertex 539: Normal -Vertex 540: Normal -Vertex 541: Normal -Vertex 542: Normal -Vertex 543: Normal -Vertex 544: Normal -Vertex 545: Normal -Vertex 546: Normal -Vertex 547: Normal -Vertex 548: Normal -Vertex 549: Normal -Vertex 550: Normal -Vertex 551: Normal -Vertex 552: Normal -Vertex 553: Normal -Vertex 554: Normal -Vertex 555: Normal -Vertex 556: Normal -Vertex 557: Normal -Vertex 558: Normal -Vertex 559: Normal -Vertex 560: Normal -Vertex 561: Normal -Vertex 562: Normal -Vertex 563: Normal -Vertex 564: Normal -Vertex 565: Normal -Vertex 566: Normal -Vertex 567: Normal -Vertex 568: Normal -Vertex 569: Normal -Vertex 570: Normal -Vertex 571: Normal -Vertex 572: Normal -Vertex 573: Normal -Vertex 574: Normal -Vertex 575: Normal -Vertex 576: Normal -Vertex 577: Normal -Vertex 578: Normal -Vertex 579: Normal -Vertex 580: Normal -Vertex 581: Normal -Vertex 582: Normal -Vertex 583: Normal -Vertex 584: Normal -Vertex 585: Normal -Vertex 586: Normal -Vertex 587: Normal -Vertex 588: Normal -Vertex 589: Normal -Vertex 590: Normal -Vertex 591: Normal -Vertex 592: Normal -Vertex 593: Normal -Vertex 594: Normal -Vertex 595: Normal -Vertex 596: Normal -Vertex 597: Normal -Vertex 598: Normal -Vertex 599: Normal -Vertex 600: Normal -Vertex 601: Normal -Vertex 602: Normal -Vertex 603: Normal -Vertex 604: Normal -Vertex 605: Normal -Vertex 606: Normal -Vertex 607: Normal -Vertex 608: Normal -Vertex 609: Normal -Vertex 610: Normal -Vertex 611: Normal -Vertex 612: Normal -Vertex 613: Normal -Vertex 614: Normal -Vertex 615: Normal -Vertex 616: Normal -Vertex 617: Normal -Vertex 618: Normal -Vertex 619: Normal -Vertex 620: Normal -Vertex 621: Normal -Vertex 622: Normal -Vertex 623: Normal -Vertex 624: Normal -Vertex 625: Normal -Vertex 626: Normal -Vertex 627: Normal -Vertex 628: Normal -Vertex 629: Normal -Vertex 630: Normal -Vertex 631: Normal -Vertex 632: Normal -Vertex 633: Normal -Vertex 634: Normal -Vertex 635: Normal -Vertex 636: Normal -Vertex 637: Normal -Vertex 638: Normal -Vertex 639: Normal -Vertex 640: Normal -Vertex 641: Normal -Vertex 642: Normal -Vertex 643: Normal -Vertex 644: Normal -Vertex 645: Normal -Vertex 646: Normal -Vertex 647: Normal -Vertex 648: Normal -Vertex 649: Normal -Vertex 650: Normal -Vertex 651: Normal -Vertex 652: Normal -Vertex 653: Normal -Vertex 654: Normal -Vertex 655: Normal -Vertex 656: Normal -Vertex 657: Normal -Vertex 658: Normal -Vertex 659: Normal -Vertex 660: Normal -Vertex 661: Normal -Vertex 662: Normal -Vertex 663: Normal -Vertex 664: Normal -Vertex 665: Normal -Vertex 666: Normal -Vertex 667: Normal -Vertex 668: Normal -Vertex 669: Normal -Vertex 670: Normal -Vertex 671: Normal -Vertex 672: Normal -Vertex 673: Normal -Vertex 674: Normal -Vertex 675: Normal -Vertex 676: Normal -Vertex 677: Normal -Vertex 678: Normal -Vertex 679: Normal -Vertex 680: Normal -Vertex 681: Normal -Vertex 682: Normal -Vertex 683: Normal -Vertex 684: Normal -Vertex 685: Normal -Vertex 686: Normal -Vertex 687: Normal -Vertex 688: Normal -Vertex 689: Normal -Vertex 690: Normal -Vertex 691: Normal -Vertex 692: Normal -Vertex 693: Normal -Vertex 694: Normal -Vertex 695: Normal -Vertex 696: Normal -Vertex 697: Normal -Vertex 698: Normal -Vertex 699: Normal -Vertex 700: Normal -Vertex 701: Normal -Vertex 702: Normal -Vertex 703: Normal -Vertex 704: Normal -Vertex 705: Normal -Vertex 706: Normal -Vertex 707: Normal -Vertex 708: Normal -Vertex 709: Normal -Vertex 710: Normal -Vertex 711: Normal -Vertex 712: Normal -Vertex 713: Normal -Vertex 714: Normal -Vertex 715: Normal -Vertex 716: Normal -Vertex 717: Normal -Vertex 718: Normal -Vertex 719: Normal -Vertex 720: Normal -Vertex 721: Normal -Vertex 722: Normal -Vertex 723: Normal -Vertex 724: Normal -Vertex 725: Normal -Vertex 726: Normal -Vertex 727: Normal -Vertex 728: Normal -Vertex 729: Normal -Vertex 730: Normal -Vertex 731: Normal -Vertex 732: Normal -Vertex 733: Normal -Vertex 734: Normal -Vertex 735: Normal -Vertex 736: Normal -Vertex 737: Normal -Vertex 738: Normal -Vertex 739: Normal -Vertex 740: Normal -Vertex 741: Normal -Vertex 742: Normal -Vertex 743: Normal -Vertex 744: Normal -Vertex 745: Normal -Vertex 746: Normal -Vertex 747: Normal -Vertex 748: Normal -Vertex 749: Normal -Vertex 750: Normal -Vertex 751: Normal -Vertex 752: Normal -Vertex 753: Normal -Vertex 754: Normal -Vertex 755: Normal -Vertex 756: Normal -Vertex 757: Normal -Vertex 758: Normal -Vertex 759: Normal -Vertex 760: Normal -Vertex 761: Normal -Vertex 762: Normal -Vertex 763: Normal -Vertex 764: Normal -Vertex 765: Normal -Vertex 766: Normal -Vertex 767: Normal -Vertex 768: Normal -Vertex 769: Normal -Vertex 770: Normal -Vertex 771: Normal -Vertex 772: Normal -Vertex 773: Normal -Vertex 774: Normal -Vertex 775: Normal -Vertex 776: Normal -Vertex 777: Normal -Vertex 778: Normal -Vertex 779: Normal -Vertex 780: Normal -Vertex 781: Normal -Vertex 782: Normal -Vertex 783: Normal -Vertex 784: Normal -Vertex 785: Normal -Vertex 786: Normal -Vertex 787: Normal -Vertex 788: Normal -Vertex 789: Normal -Vertex 790: Normal -Vertex 791: Normal -Vertex 792: Normal -Vertex 793: Normal -Vertex 794: Normal -Vertex 795: Normal -Vertex 796: Normal -Vertex 797: Normal -Vertex 798: Normal -Vertex 799: Normal -Vertex 800: Normal -Vertex 801: Normal -Vertex 802: Normal -Vertex 803: Normal -Vertex 804: Normal -Vertex 805: Normal -Vertex 806: Normal -Vertex 807: Normal -Vertex 808: Normal -Vertex 809: Normal -Vertex 810: Normal -Vertex 811: Normal -Vertex 812: Normal -Vertex 813: Normal -Vertex 814: Normal -Vertex 815: Normal -Vertex 816: Normal -Vertex 817: Normal -Vertex 818: Normal -Vertex 819: Normal -Vertex 820: Normal -Vertex 821: Normal -Vertex 822: Normal -Vertex 823: Normal -Vertex 824: Normal -Vertex 825: Normal -Vertex 826: Normal -Vertex 827: Normal -Vertex 828: Normal -Vertex 829: Normal -Vertex 830: Normal -Vertex 831: Normal -Vertex 832: Normal -Vertex 833: Normal -Vertex 834: Normal -Vertex 835: Normal -Vertex 836: Normal -Vertex 837: Normal -Vertex 838: Normal -Vertex 839: Normal -Vertex 840: Normal -Vertex 841: Normal -Vertex 842: Normal -Vertex 843: Normal -Vertex 844: Normal -Vertex 845: Normal -Vertex 846: Normal -Vertex 847: Normal -Vertex 848: Normal -Vertex 849: Normal -Vertex 850: Normal -Vertex 851: Normal -Vertex 852: Normal -Vertex 853: Normal -Vertex 854: Normal -Vertex 855: Normal -Vertex 856: Normal -Vertex 857: Normal -Vertex 858: Normal -Vertex 859: Normal -Vertex 860: Normal -Vertex 861: Normal -Vertex 862: Normal -Vertex 863: Normal -Vertex 864: Normal -Vertex 865: Normal -Vertex 866: Normal -Vertex 867: Normal -Vertex 868: Normal -Vertex 869: Normal -Vertex 870: Normal -Vertex 871: Normal -Vertex 872: Normal -Vertex 873: Normal -Vertex 874: Normal -Vertex 875: Normal -Vertex 876: Normal -Vertex 877: Normal -Vertex 878: Normal -Vertex 879: Normal -Vertex 880: Normal -Vertex 881: Normal -Vertex 882: Normal -Vertex 883: Normal -Vertex 884: Normal -Vertex 885: Normal -Vertex 886: Normal -Vertex 887: Normal -Vertex 888: Normal -Vertex 889: Normal -Vertex 890: Normal -Vertex 891: Normal -Vertex 892: Normal -Vertex 893: Normal -Vertex 894: Normal -Vertex 895: Normal -Vertex 896: Normal -Vertex 897: Normal -Vertex 898: Normal -Vertex 899: Normal -Vertex 900: Normal -Vertex 901: Normal -Vertex 902: Normal -Vertex 903: Normal -Vertex 904: Normal -Vertex 905: Normal -Vertex 906: Normal -Vertex 907: Normal -Vertex 908: Normal -Vertex 909: Normal -Vertex 910: Normal -Vertex 911: Normal -Vertex 912: Normal -Vertex 913: Normal -Vertex 914: Normal -Vertex 915: Normal -Vertex 916: Normal -Vertex 917: Normal -Vertex 918: Normal -Vertex 919: Normal -Vertex 920: Normal -Vertex 921: Normal -Vertex 922: Normal -Vertex 923: Normal -Vertex 924: Normal -Vertex 925: Normal -Vertex 926: Normal -Vertex 927: Normal -Vertex 928: Normal -Vertex 929: Normal -Vertex 930: Normal -Vertex 931: Normal -Vertex 932: Normal -Vertex 933: Normal -Vertex 934: Normal -Vertex 935: Normal -Vertex 936: Normal -Vertex 937: Normal -Vertex 938: Normal -Vertex 939: Normal -Vertex 940: Normal -Vertex 941: Normal -Vertex 942: Normal -Vertex 943: Normal -Vertex 944: Normal -Vertex 945: Normal -Vertex 946: Normal -Vertex 947: Normal -Vertex 948: Normal -Vertex 949: Normal -Vertex 950: Normal -Vertex 951: Normal -Vertex 952: Normal -Vertex 953: Normal -Vertex 954: Normal -Vertex 955: Normal -Vertex 956: Normal -Vertex 957: Normal -Vertex 958: Normal -Vertex 959: Normal -Vertex 960: Normal -Vertex 961: Normal -Vertex 962: Normal -Vertex 963: Normal -Vertex 964: Normal -Vertex 965: Normal -Vertex 966: Normal -Vertex 967: Normal -Vertex 968: Normal -Vertex 969: Normal -Vertex 970: Normal -Vertex 971: Normal -Vertex 972: Normal -Vertex 973: Normal -Vertex 974: Normal -Vertex 975: Normal -Vertex 976: Normal -Vertex 977: Normal -Vertex 978: Normal -Vertex 979: Normal -Vertex 980: Normal -Vertex 981: Normal -Vertex 982: Normal -Vertex 983: Normal -Vertex 984: Normal -Vertex 985: Normal -Vertex 986: Normal -Vertex 987: Normal -Vertex 988: Normal -Vertex 989: Normal -Vertex 990: Normal -Vertex 991: Normal -Vertex 992: Normal -Vertex 993: Normal -Vertex 994: Normal -Vertex 995: Normal -Vertex 996: Normal -Vertex 997: Normal -Vertex 998: Normal -Vertex 999: Normal -Vertex 1000: Normal -Vertex 1001: Normal -Vertex 1002: Normal -Vertex 1003: Normal -Vertex 1004: Normal -Vertex 1005: Normal -Vertex 1006: Normal -Vertex 1007: Normal -Vertex 1008: Normal -Vertex 1009: Normal -Vertex 1010: Normal -Vertex 1011: Normal -Vertex 1012: Normal -Vertex 1013: Normal -Vertex 1014: Normal -Vertex 1015: Normal -Vertex 1016: Normal -Vertex 1017: Normal -Vertex 1018: Normal -Vertex 1019: Normal -Vertex 1020: Normal -Vertex 1021: Normal -Vertex 1022: Normal -Vertex 1023: Normal -Vertex 1024: Normal -Vertex 1025: Normal -Vertex 1026: Normal -Vertex 1027: Normal -Vertex 1028: Normal -Vertex 1029: Normal -Vertex 1030: Normal -Vertex 1031: Normal -Vertex 1032: Normal -Vertex 1033: Normal -Vertex 1034: Normal -Vertex 1035: Normal -Vertex 1036: Normal -Vertex 1037: Normal -Vertex 1038: Normal -Vertex 1039: Normal -Vertex 1040: Normal -Vertex 1041: Normal -Vertex 1042: Normal -Vertex 1043: Normal -Vertex 1044: Normal -Vertex 1045: Normal -Vertex 1046: Normal -Vertex 1047: Normal -Vertex 1048: Normal -Vertex 1049: Normal -Vertex 1050: Normal -Vertex 1051: Normal -Vertex 1052: Normal -Vertex 1053: Normal -Vertex 1054: Normal -Vertex 1055: Normal -Vertex 1056: Normal -Vertex 1057: Normal -Vertex 1058: Normal -Vertex 1059: Normal -Vertex 1060: Normal -Vertex 1061: Normal -Vertex 1062: Normal -Vertex 1063: Normal -Vertex 1064: Normal -Vertex 1065: Normal -Vertex 1066: Normal -Vertex 1067: Normal -Vertex 1068: Normal -Vertex 1069: Normal -Vertex 1070: Normal -Vertex 1071: Normal -Vertex 1072: Normal -Vertex 1073: Normal -Vertex 1074: Normal -Vertex 1075: Normal -Vertex 1076: Normal -Vertex 1077: Normal -Vertex 1078: Normal -Vertex 1079: Normal -Vertex 1080: Normal -Vertex 1081: Normal -Vertex 1082: Normal -Vertex 1083: Normal -Vertex 1084: Normal -Vertex 1085: Normal -Vertex 1086: Normal -Vertex 1087: Normal -Vertex 1088: Normal -Vertex 1089: Normal -Vertex 1090: Normal -Vertex 1091: Normal -Vertex 1092: Normal -Vertex 1093: Normal -Vertex 1094: Normal -Vertex 1095: Normal -Vertex 1096: Normal -Vertex 1097: Normal -Vertex 1098: Normal -Vertex 1099: Normal -Vertex 1100: Normal -Vertex 1101: Normal -Vertex 1102: Normal -Vertex 1103: Normal -Vertex 1104: Normal -Vertex 1105: Normal -Vertex 1106: Normal -Vertex 1107: Normal -Vertex 1108: Normal -Vertex 1109: Normal -Vertex 1110: Normal -Vertex 1111: Normal -Vertex 1112: Normal -Vertex 1113: Normal -Vertex 1114: Normal -Vertex 1115: Normal -Vertex 1116: Normal -Vertex 1117: Normal -Vertex 1118: Normal -Vertex 1119: Normal -Vertex 1120: Normal -Vertex 1121: Normal -Vertex 1122: Normal -Vertex 1123: Normal -Vertex 1124: Normal -Vertex 1125: Normal -Vertex 1126: Normal -Vertex 1127: Normal -Vertex 1128: Normal -Vertex 1129: Normal -Vertex 1130: Normal -Vertex 1131: Normal -Vertex 1132: Normal -Vertex 1133: Normal -Vertex 1134: Normal -Vertex 1135: Normal -Vertex 1136: Normal -Vertex 1137: Normal -Vertex 1138: Normal -Vertex 1139: Normal -Vertex 1140: Normal -Vertex 1141: Normal -Vertex 1142: Normal -Vertex 1143: Normal -Vertex 1144: Normal -Vertex 1145: Normal -Vertex 1146: Normal -Vertex 1147: Normal -Vertex 1148: Normal -Vertex 1149: Normal -Vertex 1150: Normal -Vertex 1151: Normal -Vertex 1152: Normal -Vertex 1153: Normal -Vertex 1154: Normal -Vertex 1155: Normal -Vertex 1156: Normal -Vertex 1157: Normal -Vertex 1158: Normal -Vertex 1159: Normal -Vertex 1160: Normal -Vertex 1161: Normal -Vertex 1162: Normal -Vertex 1163: Normal -Vertex 1164: Normal -Vertex 1165: Normal -Vertex 1166: Normal -Vertex 1167: Normal -Vertex 1168: Normal -Vertex 1169: Normal -Vertex 1170: Normal -Vertex 1171: Normal -Vertex 1172: Normal -Vertex 1173: Normal -Vertex 1174: Normal -Vertex 1175: Normal -Vertex 1176: Normal -Vertex 1177: Normal -Vertex 1178: Normal -Vertex 1179: Normal -Vertex 1180: Normal -Vertex 1181: Normal -Vertex 1182: Normal -Vertex 1183: Normal -Vertex 1184: Normal -Vertex 1185: Normal -Vertex 1186: Normal -Vertex 1187: Normal -Vertex 1188: Normal -Vertex 1189: Normal -Vertex 1190: Normal -Vertex 1191: Normal -Vertex 1192: Normal -Vertex 1193: Normal -Vertex 1194: Normal -Vertex 1195: Normal -Vertex 1196: Normal -Vertex 1197: Normal -Vertex 1198: Normal -Vertex 1199: Normal -Vertex 1200: Normal -Vertex 1201: Normal -Vertex 1202: Normal -Vertex 1203: Normal -Vertex 1204: Normal -Vertex 1205: Normal -Vertex 1206: Normal -Vertex 1207: Normal -Vertex 1208: Normal -Vertex 1209: Normal -Vertex 1210: Normal -Vertex 1211: Normal -Vertex 1212: Normal -Vertex 1213: Normal -Vertex 1214: Normal -Vertex 1215: Normal -Vertex 1216: Normal -Vertex 1217: Normal -Vertex 1218: Normal -Vertex 1219: Normal -Vertex 1220: Normal -Vertex 1221: Normal -Vertex 1222: Normal -Vertex 1223: Normal -Vertex 1224: Normal -Vertex 1225: Normal -Vertex 1226: Normal -Vertex 1227: Normal -Vertex 1228: Normal -Vertex 1229: Normal -Vertex 1230: Normal -Vertex 1231: Normal -Vertex 1232: Normal -Vertex 1233: Normal -Vertex 1234: Normal -Vertex 1235: Normal -Vertex 1236: Normal -Vertex 1237: Normal -Vertex 1238: Normal -Vertex 1239: Normal -Vertex 1240: Normal -Vertex 1241: Normal -Vertex 1242: Normal -Vertex 1243: Normal -Vertex 1244: Normal -Vertex 1245: Normal -Vertex 1246: Normal -Vertex 1247: Normal -Vertex 1248: Normal -Vertex 1249: Normal -Vertex 1250: Normal -Vertex 1251: Normal -Vertex 1252: Normal -Vertex 1253: Normal -Vertex 1254: Normal -Vertex 1255: Normal -Vertex 1256: Normal -Vertex 1257: Normal -Vertex 1258: Normal -Vertex 1259: Normal -Vertex 1260: Normal -Vertex 1261: Normal -Vertex 1262: Normal -Vertex 1263: Normal -Vertex 1264: Normal -Vertex 1265: Normal -Vertex 1266: Normal -Vertex 1267: Normal -Vertex 1268: Normal -Vertex 1269: Normal -Vertex 1270: Normal -Vertex 1271: Normal -Vertex 1272: Normal -Vertex 1273: Normal -Vertex 1274: Normal -Vertex 1275: Normal -Vertex 1276: Normal -Vertex 1277: Normal -Vertex 1278: Normal -Vertex 1279: Normal -Vertex 1280: Normal -Vertex 1281: Normal -Vertex 1282: Normal -Vertex 1283: Normal -Vertex 1284: Normal -Vertex 1285: Normal -Vertex 1286: Normal -Vertex 1287: Normal -Vertex 1288: Normal -Vertex 1289: Normal -Vertex 1290: Normal -Vertex 1291: Normal -Vertex 1292: Normal -Vertex 1293: Normal -Vertex 1294: Normal -Vertex 1295: Normal -Vertex 1296: Normal -Vertex 1297: Normal -Vertex 1298: Normal -Vertex 1299: Normal -Vertex 1300: Normal -Vertex 1301: Normal -Vertex 1302: Normal -Vertex 1303: Normal -Vertex 1304: Normal -Vertex 1305: Normal -Vertex 1306: Normal -Vertex 1307: Normal -Vertex 1308: Normal -Vertex 1309: Normal -Vertex 1310: Normal -Vertex 1311: Normal -Vertex 1312: Normal -Vertex 1313: Normal -Vertex 1314: Normal -Vertex 1315: Normal -Vertex 1316: Normal -Vertex 1317: Normal -Vertex 1318: Normal -Vertex 1319: Normal -Vertex 1320: Normal -Vertex 1321: Normal -Vertex 1322: Normal -Vertex 1323: Normal -Vertex 1324: Normal -Vertex 1325: Normal -Vertex 1326: Normal -Vertex 1327: Normal -Vertex 1328: Normal -Vertex 1329: Normal -Vertex 1330: Normal -Vertex 1331: Normal -Vertex 1332: Normal -Vertex 1333: Normal -Vertex 1334: Normal -Vertex 1335: Normal -Vertex 1336: Normal -Vertex 1337: Normal -Vertex 1338: Normal -Vertex 1339: Normal -Vertex 1340: Normal -Vertex 1341: Normal -Vertex 1342: Normal -Vertex 1343: Normal -Vertex 1344: Normal -Vertex 1345: Normal -Vertex 1346: Normal -Vertex 1347: Normal -Vertex 1348: Normal -Vertex 1349: Normal -Vertex 1350: Normal -Vertex 1351: Normal -Vertex 1352: Normal -Vertex 1353: Normal -Vertex 1354: Normal -Vertex 1355: Normal -Vertex 1356: Normal -Vertex 1357: Normal -Vertex 1358: Normal -Vertex 1359: Normal -Vertex 1360: Normal -Vertex 1361: Normal -Vertex 1362: Normal -Vertex 1363: Normal -Vertex 1364: Normal -Vertex 1365: Normal -Vertex 1366: Normal -Vertex 1367: Normal -Vertex 1368: Normal -Vertex 1369: Normal -Vertex 1370: Normal -Vertex 1371: Normal -Vertex 1372: Normal -Vertex 1373: Normal -Vertex 1374: Normal -Vertex 1375: Normal -Vertex 1376: Normal -Vertex 1377: Normal -Vertex 1378: Normal -Vertex 1379: Normal -Vertex 1380: Normal -Vertex 1381: Normal -Vertex 1382: Normal -Vertex 1383: Normal -Vertex 1384: Normal -Vertex 1385: Normal -Vertex 1386: Normal -Vertex 1387: Normal -Vertex 1388: Normal -Vertex 1389: Normal -Vertex 1390: Normal -Vertex 1391: Normal -Vertex 1392: Normal -Vertex 1393: Normal -Vertex 1394: Normal -Vertex 1395: Normal -Vertex 1396: Normal -Vertex 1397: Normal -Vertex 1398: Normal -Vertex 1399: Normal -Vertex 1400: Normal -Vertex 1401: Normal -Vertex 1402: Normal -Vertex 1403: Normal -Vertex 1404: Normal -Vertex 1405: Normal -Vertex 1406: Normal -Vertex 1407: Normal -Vertex 1408: Normal -Vertex 1409: Normal -Vertex 1410: Normal -Vertex 1411: Normal -Vertex 1412: Normal -Vertex 1413: Normal -Vertex 1414: Normal -Vertex 1415: Normal -Vertex 1416: Normal -Vertex 1417: Normal -Vertex 1418: Normal -Vertex 1419: Normal -Vertex 1420: Normal -Vertex 1421: Normal -Vertex 1422: Normal -Vertex 1423: Normal -Vertex 1424: Normal -Vertex 1425: Normal -Vertex 1426: Normal -Vertex 1427: Normal -Vertex 1428: Normal -Vertex 1429: Normal -Vertex 1430: Normal -Vertex 1431: Normal -Vertex 1432: Normal -Vertex 1433: Normal -Vertex 1434: Normal -Vertex 1435: Normal -Vertex 1436: Normal -Vertex 1437: Normal -Vertex 1438: Normal -Vertex 1439: Normal -Vertex 1440: Normal -Vertex 1441: Normal -Vertex 1442: Normal -Vertex 1443: Normal -Vertex 1444: Normal -Vertex 1445: Normal -Vertex 1446: Normal -Vertex 1447: Normal -Vertex 1448: Normal -Vertex 1449: Normal -Vertex 1450: Normal -Vertex 1451: Normal -Vertex 1452: Normal -Vertex 1453: Normal -Vertex 1454: Normal -Vertex 1455: Normal -Vertex 1456: Normal -Vertex 1457: Normal -Vertex 1458: Normal -Vertex 1459: Normal -Vertex 1460: Normal -Vertex 1461: Normal -Vertex 1462: Normal -Vertex 1463: Normal -Vertex 1464: Normal -Vertex 1465: Normal -Vertex 1466: Normal -Vertex 1467: Normal -Vertex 1468: Normal -Vertex 1469: Normal -Vertex 1470: Normal -Vertex 1471: Normal -Vertex 1472: Normal -Vertex 1473: Normal -Vertex 1474: Normal -Vertex 1475: Normal -Vertex 1476: Normal -Vertex 1477: Normal -Vertex 1478: Normal -Vertex 1479: Normal -Vertex 1480: Normal -Vertex 1481: Normal -Vertex 1482: Normal -Vertex 1483: Normal -Vertex 1484: Normal -Vertex 1485: Normal -Vertex 1486: Normal -Vertex 1487: Normal -Vertex 1488: Normal -Vertex 1489: Normal -Vertex 1490: Normal -Vertex 1491: Normal -Vertex 1492: Normal -Vertex 1493: Normal -Vertex 1494: Normal -Vertex 1495: Normal -Vertex 1496: Normal -Vertex 1497: Normal -Vertex 1498: Normal -Vertex 1499: Normal -Vertex 1500: Normal -Vertex 1501: Normal -Vertex 1502: Normal -Vertex 1503: Normal -Vertex 1504: Normal -Vertex 1505: Normal -Vertex 1506: Normal -Vertex 1507: Normal -Vertex 1508: Normal -Vertex 1509: Normal -Vertex 1510: Normal -Vertex 1511: Normal -Vertex 1512: Normal -Vertex 1513: Normal -Vertex 1514: Normal -Vertex 1515: Normal -Vertex 1516: Normal -Vertex 1517: Normal -Vertex 1518: Normal -Vertex 1519: Normal -Vertex 1520: Normal -Vertex 1521: Normal -Vertex 1522: Normal -Vertex 1523: Normal -Vertex 1524: Normal -Vertex 1525: Normal -Vertex 1526: Normal -Vertex 1527: Normal -Vertex 1528: Normal -Vertex 1529: Normal -Vertex 1530: Normal -Vertex 1531: Normal -Vertex 1532: Normal -Vertex 1533: Normal -Vertex 1534: Normal -Vertex 1535: Normal -Vertex 1536: Normal -Vertex 1537: Normal -Vertex 1538: Normal -Vertex 1539: Normal -Vertex 1540: Normal -Vertex 1541: Normal -Vertex 1542: Normal -Vertex 1543: Normal -Vertex 1544: Normal -Vertex 1545: Normal -Vertex 1546: Normal -Vertex 1547: Normal -Vertex 1548: Normal -Vertex 1549: Normal -Vertex 1550: Normal -Vertex 1551: Normal -Vertex 1552: Normal -Vertex 1553: Normal -Vertex 1554: Normal -Vertex 1555: Normal -Vertex 1556: Normal -Vertex 1557: Normal -Vertex 1558: Normal -Vertex 1559: Normal -Vertex 1560: Normal -Vertex 1561: Normal -Vertex 1562: Normal -Vertex 1563: Normal -Vertex 1564: Normal -Vertex 1565: Normal -Vertex 1566: Normal -Vertex 1567: Normal -Vertex 1568: Normal -Vertex 1569: Normal -Vertex 1570: Normal -Vertex 1571: Normal -Vertex 1572: Normal -Vertex 1573: Normal -Vertex 1574: Normal -Vertex 1575: Normal -Vertex 1576: Normal -Vertex 1577: Normal -Vertex 1578: Normal -Vertex 1579: Normal -Vertex 1580: Normal -Vertex 1581: Normal -Vertex 1582: Normal -Vertex 1583: Normal -Vertex 1584: Normal -Vertex 1585: Normal -Vertex 1586: Normal -Vertex 1587: Normal -Vertex 1588: Normal -Vertex 1589: Normal -Vertex 1590: Normal -Vertex 1591: Normal -Vertex 1592: Normal -Vertex 1593: Normal -Vertex 1594: Normal -Vertex 1595: Normal -Vertex 1596: Normal -Vertex 1597: Normal -Vertex 1598: Normal -Vertex 1599: Normal -Vertex 1600: Normal -Vertex 1601: Normal -Vertex 1602: Normal -Vertex 1603: Normal -Vertex 1604: Normal -Vertex 1605: Normal -Vertex 1606: Normal -Vertex 1607: Normal -Vertex 1608: Normal -Vertex 1609: Normal -Vertex 1610: Normal -Vertex 1611: Normal -Vertex 1612: Normal -Vertex 1613: Normal -Vertex 1614: Normal -Vertex 1615: Normal -Vertex 1616: Normal -Vertex 1617: Normal -Vertex 1618: Normal -Vertex 1619: Normal -Vertex 1620: Normal -Vertex 1621: Normal -Vertex 1622: Normal -Vertex 1623: Normal -Vertex 1624: Normal -Vertex 1625: Normal -Vertex 1626: Normal -Vertex 1627: Normal -Vertex 1628: Normal -Vertex 1629: Normal -Vertex 1630: Normal -Vertex 1631: Normal -Vertex 1632: Normal -Vertex 1633: Normal -Vertex 1634: Normal -Vertex 1635: Normal -Vertex 1636: Normal -Vertex 1637: Normal -Vertex 1638: Normal -Vertex 1639: Normal -Vertex 1640: Normal -Vertex 1641: Normal -Vertex 1642: Normal -Vertex 1643: Normal -Vertex 1644: Normal -Vertex 1645: Normal -Vertex 1646: Normal -Vertex 1647: Normal -Vertex 1648: Normal -Vertex 1649: Normal -Vertex 1650: Normal -Vertex 1651: Normal -Vertex 1652: Normal -Vertex 1653: Normal -Vertex 1654: Normal -Vertex 1655: Normal -Vertex 1656: Normal -Vertex 1657: Normal -Vertex 1658: Normal -Vertex 1659: Normal -Vertex 1660: Normal -Vertex 1661: Normal -Vertex 1662: Normal -Vertex 1663: Normal -Vertex 1664: Normal -Vertex 1665: Normal -Vertex 1666: Normal -Vertex 1667: Normal -Vertex 1668: Normal -Vertex 1669: Normal -Vertex 1670: Normal -Vertex 1671: Normal -Vertex 1672: Normal -Vertex 1673: Normal -Vertex 1674: Normal -Vertex 1675: Normal -Vertex 1676: Normal -Vertex 1677: Normal -Vertex 1678: Normal -Vertex 1679: Normal -Vertex 1680: Normal -Vertex 1681: Normal -Vertex 1682: Normal -Vertex 1683: Normal -Vertex 1684: Normal -Vertex 1685: Normal -Vertex 1686: Normal -Vertex 1687: Normal -Vertex 1688: Normal -Vertex 1689: Normal -Vertex 1690: Normal -Vertex 1691: Normal -Vertex 1692: Normal -Vertex 1693: Normal -Vertex 1694: Normal -Vertex 1695: Normal -Vertex 1696: Normal -Vertex 1697: Normal -Vertex 1698: Normal -Vertex 1699: Normal -Vertex 1700: Normal -Vertex 1701: Normal -Vertex 1702: Normal -Vertex 1703: Normal -Vertex 1704: Normal -Vertex 1705: Normal -Vertex 1706: Normal -Vertex 1707: Normal -Vertex 1708: Normal -Vertex 1709: Normal -Vertex 1710: Normal -Vertex 1711: Normal -Vertex 1712: Normal -Vertex 1713: Normal -Vertex 1714: Normal -Vertex 1715: Normal -Vertex 1716: Normal -Vertex 1717: Normal -Vertex 1718: Normal -Vertex 1719: Normal -Vertex 1720: Normal -Vertex 1721: Normal -Vertex 1722: Normal -Vertex 1723: Normal -Vertex 1724: Normal -Vertex 1725: Normal -Vertex 1726: Normal -Vertex 1727: Normal -Vertex 1728: Normal -Vertex 1729: Normal -Vertex 1730: Normal -Vertex 1731: Normal -Vertex 1732: Normal -Vertex 1733: Normal -Vertex 1734: Normal -Vertex 1735: Normal -Vertex 1736: Normal -Vertex 1737: Normal -Vertex 1738: Normal -Vertex 1739: Normal -Vertex 1740: Normal -Vertex 1741: Normal -Vertex 1742: Normal -Vertex 1743: Normal -Vertex 1744: Normal -Vertex 1745: Normal -Vertex 1746: Normal -Vertex 1747: Normal -Vertex 1748: Normal -Vertex 1749: Normal -Vertex 1750: Normal -Vertex 1751: Normal -Vertex 1752: Normal -Vertex 1753: Normal -Vertex 1754: Normal -Vertex 1755: Normal -Vertex 1756: Normal -Vertex 1757: Normal -Vertex 1758: Normal -Vertex 1759: Normal -Vertex 1760: Normal -Vertex 1761: Normal -Vertex 1762: Normal -Vertex 1763: Normal -Vertex 1764: Normal -Vertex 1765: Normal -Vertex 1766: Normal -Vertex 1767: Normal -Vertex 1768: Normal -Vertex 1769: Normal -Vertex 1770: Normal -Vertex 1771: Normal -Vertex 1772: Normal -Vertex 1773: Normal -Vertex 1774: Normal -Vertex 1775: Normal -Vertex 1776: Normal -Vertex 1777: Normal -Vertex 1778: Normal -Vertex 1779: Normal -Vertex 1780: Normal -Vertex 1781: Normal -Vertex 1782: Normal -Vertex 1783: Normal -Vertex 1784: Normal -Vertex 1785: Normal -Vertex 1786: Normal -Vertex 1787: Normal -Vertex 1788: Normal -Vertex 1789: Normal -Vertex 1790: Normal -Vertex 1791: Normal -Vertex 1792: Normal -Vertex 1793: Normal -Vertex 1794: Normal -Vertex 1795: Normal -Vertex 1796: Normal -Vertex 1797: Normal -Vertex 1798: Normal -Vertex 1799: Normal -Vertex 1800: Normal -Vertex 1801: Normal -Vertex 1802: Normal -Vertex 1803: Normal -Vertex 1804: Normal -Vertex 1805: Normal -Vertex 1806: Normal -Vertex 1807: Normal -Vertex 1808: Normal -Vertex 1809: Normal -Vertex 1810: Normal -Vertex 1811: Normal -Vertex 1812: Normal -Vertex 1813: Normal -Vertex 1814: Normal -Vertex 1815: Normal -Vertex 1816: Normal -Vertex 1817: Normal -Vertex 1818: Normal -Vertex 1819: Normal -Vertex 1820: Normal -Vertex 1821: Normal -Vertex 1822: Normal -Vertex 1823: Normal -Vertex 1824: Normal -Vertex 1825: Normal -Vertex 1826: Normal -Vertex 1827: Normal -Vertex 1828: Normal -Vertex 1829: Normal -Vertex 1830: Normal -Vertex 1831: Normal -Vertex 1832: Normal -Vertex 1833: Normal -Vertex 1834: Normal -Vertex 1835: Normal -Vertex 1836: Normal -Vertex 1837: Normal -Vertex 1838: Normal -Vertex 1839: Normal -Vertex 1840: Normal -Vertex 1841: Normal -Vertex 1842: Normal -Vertex 1843: Normal -Vertex 1844: Normal -Vertex 1845: Normal -Vertex 1846: Normal -Vertex 1847: Normal -Vertex 1848: Normal -Vertex 1849: Normal -Vertex 1850: Normal -Vertex 1851: Normal -Vertex 1852: Normal -Vertex 1853: Normal -Vertex 1854: Normal -Vertex 1855: Normal -Vertex 1856: Normal -Vertex 1857: Normal -Vertex 1858: Normal -Vertex 1859: Normal -Vertex 1860: Normal -Vertex 1861: Normal -Vertex 1862: Normal -Vertex 1863: Normal -Vertex 1864: Normal -Vertex 1865: Normal -Vertex 1866: Normal -Vertex 1867: Normal -Vertex 1868: Normal -Vertex 1869: Normal -Vertex 1870: Normal -Vertex 1871: Normal -Vertex 1872: Normal -Vertex 1873: Normal -Vertex 1874: Normal -Vertex 1875: Normal -Vertex 1876: Normal -Vertex 1877: Normal -Vertex 1878: Normal -Vertex 1879: Normal -Vertex 1880: Normal -Vertex 1881: Normal -Vertex 1882: Normal -Vertex 1883: Normal -Vertex 1884: Normal -Vertex 1885: Normal -Vertex 1886: Normal -Vertex 1887: Normal -Vertex 1888: Normal -Vertex 1889: Normal -Vertex 1890: Normal -Vertex 1891: Normal -Vertex 1892: Normal -Vertex 1893: Normal -Vertex 1894: Normal -Vertex 1895: Normal -Vertex 1896: Normal -Vertex 1897: Normal -Vertex 1898: Normal -Vertex 1899: Normal -Vertex 1900: Normal -Vertex 1901: Normal -Vertex 1902: Normal -Vertex 1903: Normal -Vertex 1904: Normal -Vertex 1905: Normal -Vertex 1906: Normal -Vertex 1907: Normal -Vertex 1908: Normal -Vertex 1909: Normal -Vertex 1910: Normal -Vertex 1911: Normal -Vertex 1912: Normal -Vertex 1913: Normal -Vertex 1914: Normal -Vertex 1915: Normal -Vertex 1916: Normal -Vertex 1917: Normal -Vertex 1918: Normal -Vertex 1919: Normal -Vertex 1920: Normal -Vertex 1921: Normal -Vertex 1922: Normal -Vertex 1923: Normal -Vertex 1924: Normal -Vertex 1925: Normal -Vertex 1926: Normal -Vertex 1927: Normal -Vertex 1928: Normal -Vertex 1929: Normal -Vertex 1930: Normal -Vertex 1931: Normal -Vertex 1932: Normal -Vertex 1933: Normal -Vertex 1934: Normal -Vertex 1935: Normal -Vertex 1936: Normal -Vertex 1937: Normal -Vertex 1938: Normal -Vertex 1939: Normal -Vertex 1940: Normal -Vertex 1941: Normal -Vertex 1942: Normal -Vertex 1943: Normal -Vertex 1944: Normal -Vertex 1945: Normal -Vertex 1946: Normal -Vertex 1947: Normal -Vertex 1948: Normal -Vertex 1949: Normal -Vertex 1950: Normal -Vertex 1951: Normal -Vertex 1952: Normal -Vertex 1953: Normal -Vertex 1954: Normal -Vertex 1955: Normal -Vertex 1956: Normal -Vertex 1957: Normal -Vertex 1958: Normal -Vertex 1959: Normal -Vertex 1960: Normal -Vertex 1961: Normal -Vertex 1962: Normal -Vertex 1963: Normal -Vertex 1964: Normal -Vertex 1965: Normal -Vertex 1966: Normal -Vertex 1967: Normal -Vertex 1968: Normal -Vertex 1969: Normal -Vertex 1970: Normal -Vertex 1971: Normal -Vertex 1972: Normal -Vertex 1973: Normal -Vertex 1974: Normal -Vertex 1975: Normal -Vertex 1976: Normal -Vertex 1977: Normal -Vertex 1978: Normal -Vertex 1979: Normal -Vertex 1980: Normal -Vertex 1981: Normal -Vertex 1982: Normal -Vertex 1983: Normal -Vertex 1984: Normal -Vertex 1985: Normal -Vertex 1986: Normal -Vertex 1987: Normal -Vertex 1988: Normal -Vertex 1989: Normal -Vertex 1990: Normal -Vertex 1991: Normal -Vertex 1992: Normal -Vertex 1993: Normal -Vertex 1994: Normal -Vertex 1995: Normal -Vertex 1996: Normal -Vertex 1997: Normal -Vertex 1998: Normal -Vertex 1999: Normal -Vertex 2000: Normal -Vertex 2001: Normal -Vertex 2002: Normal -Vertex 2003: Normal -Vertex 2004: Normal -Vertex 2005: Normal -Vertex 2006: Normal -Vertex 2007: Normal -Vertex 2008: Normal -Vertex 2009: Normal -Vertex 2010: Normal -Vertex 2011: Normal -Vertex 2012: Normal -Vertex 2013: Normal -Vertex 2014: Normal -Vertex 2015: Normal -Vertex 2016: Normal -Vertex 2017: Normal -Vertex 2018: Normal -Vertex 2019: Normal -Vertex 2020: Normal -Vertex 2021: Normal -Vertex 2022: Normal -Vertex 2023: Normal -Vertex 2024: Normal -Vertex 2025: Normal -Vertex 2026: Normal -Vertex 2027: Normal -Vertex 2028: Normal -Vertex 2029: Normal -Vertex 2030: Normal -Vertex 2031: Normal -Vertex 2032: Normal -Vertex 2033: Normal -Vertex 2034: Normal -Vertex 2035: Normal -Vertex 2036: Normal -Vertex 2037: Normal -Vertex 2038: Normal -Vertex 2039: Normal -Vertex 2040: Normal -Vertex 2041: Normal -Vertex 2042: Normal -Vertex 2043: Normal -Vertex 2044: Normal -Vertex 2045: Normal -Vertex 2046: Normal -Vertex 2047: Normal -Vertex 2048: Normal -Vertex 2049: Normal -Vertex 2050: Normal -Vertex 2051: Normal -Vertex 2052: Normal -Vertex 2053: Normal -Vertex 2054: Normal -Vertex 2055: Normal -Vertex 2056: Normal -Vertex 2057: Normal -Vertex 2058: Normal -Vertex 2059: Normal -Vertex 2060: Normal -Vertex 2061: Normal -Vertex 2062: Normal -Vertex 2063: Normal -Vertex 2064: Normal -Vertex 2065: Normal -Vertex 2066: Normal -Vertex 2067: Normal -Vertex 2068: Normal -Vertex 2069: Normal -Vertex 2070: Normal -Vertex 2071: Normal -Vertex 2072: Normal -Vertex 2073: Normal -Vertex 2074: Normal -Vertex 2075: Normal -Vertex 2076: Normal -Vertex 2077: Normal -Vertex 2078: Normal -Vertex 2079: Normal -Vertex 2080: Normal -Vertex 2081: Normal -Vertex 2082: Normal -Vertex 2083: Normal -Vertex 2084: Normal -Vertex 2085: Normal -Vertex 2086: Normal -Vertex 2087: Normal -Vertex 2088: Normal -Vertex 2089: Normal -Vertex 2090: Normal -Vertex 2091: Normal -Vertex 2092: Normal -Vertex 2093: Normal -Vertex 2094: Normal -Vertex 2095: Normal -Vertex 2096: Normal -Vertex 2097: Normal -Vertex 2098: Normal -Vertex 2099: Normal -Vertex 2100: Normal -Vertex 2101: Normal -Vertex 2102: Normal -Vertex 2103: Normal -Vertex 2104: Normal -Vertex 2105: Normal -Vertex 2106: Normal -Vertex 2107: Normal -Vertex 2108: Normal -Vertex 2109: Normal -Vertex 2110: Normal -Vertex 2111: Normal -Vertex 2112: Normal -Vertex 2113: Normal -Vertex 2114: Normal -Vertex 2115: Normal -Vertex 2116: Normal -Vertex 2117: Normal -Vertex 2118: Normal -Vertex 2119: Normal -Vertex 2120: Normal -Vertex 2121: Normal -Vertex 2122: Normal -Vertex 2123: Normal -Vertex 2124: Normal -Vertex 2125: Normal -Vertex 2126: Normal -Vertex 2127: Normal -Vertex 2128: Normal -Vertex 2129: Normal -Vertex 2130: Normal -Vertex 2131: Normal -Vertex 2132: Normal -Vertex 2133: Normal -Vertex 2134: Normal -Vertex 2135: Normal -Vertex 2136: Normal -Vertex 2137: Normal -Vertex 2138: Normal -Vertex 2139: Normal -Vertex 2140: Normal -Vertex 2141: Normal -Vertex 2142: Normal -Vertex 2143: Normal -Vertex 2144: Normal -Vertex 2145: Normal -Vertex 2146: Normal -Vertex 2147: Normal -Vertex 2148: Normal -Vertex 2149: Normal -Vertex 2150: Normal -Vertex 2151: Normal -Vertex 2152: Normal -Vertex 2153: Normal -Vertex 2154: Normal -Vertex 2155: Normal -Vertex 2156: Normal -Vertex 2157: Normal -Vertex 2158: Normal -Vertex 2159: Normal -Vertex 2160: Normal -Vertex 2161: Normal -Vertex 2162: Normal -Vertex 2163: Normal -Vertex 2164: Normal -Vertex 2165: Normal -Vertex 2166: Normal -Vertex 2167: Normal -Vertex 2168: Normal -Vertex 2169: Normal -Vertex 2170: Normal -Vertex 2171: Normal -Vertex 2172: Normal -Vertex 2173: Normal -Vertex 2174: Normal -Vertex 2175: Normal -Vertex 2176: Normal -Vertex 2177: Normal -Vertex 2178: Normal -Vertex 2179: Normal -Vertex 2180: Normal -Vertex 2181: Normal -Vertex 2182: Normal -Vertex 2183: Normal -Vertex 2184: Normal -Vertex 2185: Normal -Vertex 2186: Normal -Vertex 2187: Normal -Vertex 2188: Normal -Vertex 2189: Normal -Vertex 2190: Normal -Vertex 2191: Normal -Vertex 2192: Normal -Vertex 2193: Normal -Vertex 2194: Normal -Vertex 2195: Normal -Vertex 2196: Normal -Vertex 2197: Normal -Vertex 2198: Normal -Vertex 2199: Normal -Vertex 2200: Normal -Vertex 2201: Normal -Vertex 2202: Normal -Vertex 2203: Normal -Vertex 2204: Normal -Vertex 2205: Normal -Vertex 2206: Normal -Vertex 2207: Normal -Vertex 2208: Normal -Vertex 2209: Normal -Vertex 2210: Normal -Vertex 2211: Normal -Vertex 2212: Normal -Vertex 2213: Normal -Vertex 2214: Normal -Vertex 2215: Normal -Vertex 2216: Normal -Vertex 2217: Normal -Vertex 2218: Normal -Vertex 2219: Normal -Vertex 2220: Normal -Vertex 2221: Normal -Vertex 2222: Normal -Vertex 2223: Normal -Vertex 2224: Normal -Vertex 2225: Normal -Vertex 2226: Normal -Vertex 2227: Normal -Vertex 2228: Normal -Vertex 2229: Normal -Vertex 2230: Normal -Vertex 2231: Normal -Vertex 2232: Normal -Vertex 2233: Normal -Vertex 2234: Normal -Vertex 2235: Normal -Vertex 2236: Normal -Vertex 2237: Normal -Vertex 2238: Normal -Vertex 2239: Normal -Vertex 2240: Normal -Vertex 2241: Normal -Vertex 2242: Normal -Vertex 2243: Normal -Vertex 2244: Normal -Vertex 2245: Normal -Vertex 2246: Normal -Vertex 2247: Normal -Vertex 2248: Normal -Vertex 2249: Normal -Vertex 2250: Normal -Vertex 2251: Normal -Vertex 2252: Normal -Vertex 2253: Normal -Vertex 2254: Normal -Vertex 2255: Normal -Vertex 2256: Normal -Vertex 2257: Normal -Vertex 2258: Normal -Vertex 2259: Normal -Vertex 2260: Normal -Vertex 2261: Normal -Vertex 2262: Normal -Vertex 2263: Normal -Vertex 2264: Normal -Vertex 2265: Normal -Vertex 2266: Normal -Vertex 2267: Normal -Vertex 2268: Normal -Vertex 2269: Normal -Vertex 2270: Normal -Vertex 2271: Normal -Vertex 2272: Normal -Vertex 2273: Normal -Vertex 2274: Normal -Vertex 2275: Normal -Vertex 2276: Normal -Vertex 2277: Normal -Vertex 2278: Normal -Vertex 2279: Normal -Vertex 2280: Normal -Vertex 2281: Normal -Vertex 2282: Normal -Vertex 2283: Normal -Vertex 2284: Normal -Vertex 2285: Normal -Vertex 2286: Normal -Vertex 2287: Normal -Vertex 2288: Normal -Vertex 2289: Normal -Vertex 2290: Normal -Vertex 2291: Normal -Vertex 2292: Normal -Vertex 2293: Normal -Vertex 2294: Normal -Vertex 2295: Normal -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 7 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 19 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 21 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 29 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 40 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - diff --git a/md3test.cpp b/md3test.cpp deleted file mode 100644 index f725dfb..0000000 --- a/md3test.cpp +++ /dev/null @@ -1,1125 +0,0 @@ -#include "md3test.h" -#include "Renderer.h" -#include "AnimatedModel.h" - -void abc(const char* str) -{ - /* - FILE *fp = fopen("output.txt", "a+"); - fprintf(fp, "%s\n", str); - fclose(fp); - */ -} - - -/* -void DbgTriangle(IDirect3DDevice8* pDevice, - D3DXVECTOR3& a, D3DXVECTOR3& b, D3DXVECTOR3& c, - DWORD colour) -{ - struct TLVERTEX - { - float x, y, z; - DWORD col; - enum { FVF_TLVERTEX = D3DFVF_XYZ | D3DFVF_DIFFUSE }; - }; - - pDevice->SetRenderState(D3DRS_CULLMODE, D3DCULL_CW); - -#if(0) // no lighting - - pDevice->SetTextureStageState(0, D3DTSS_COLOROP, D3DTOP_SELECTARG1); - pDevice->SetTextureStageState(0, D3DTSS_COLORARG1, D3DTA_DIFFUSE); -#else - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLORARG1, D3DTA_TEXTURE); - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLORARG2, D3DTA_DIFFUSE); - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLOROP, D3DTOP_MODULATE); -#endif - - TLVERTEX Vertex[4] = - { - // x y z colour - { a.x, a.y, a.z, colour }, - { b.x, b.y, b.z, colour }, - { c.x, c.y, c.z, colour } - }; - - -#if(DIRECT3D_VERSION >= 0x0900) - pDevice->SetFVF(TLVERTEX::FVF_TLVERTEX); -#else - pDevice->SetVertexShader(TLVERTEX::FVF_TLVERTEX); -#endif // DIRECT3D_VERSION - pDevice->SetTexture(0, NULL); - - pDevice->SetRenderState(D3DRS_CULLMODE, D3DCULL_NONE); - - pDevice->SetRenderState(D3DRS_FILLMODE, - D3DFILL_WIREFRAME); - - HRESULT hr = pDevice->DrawPrimitiveUP(D3DPT_TRIANGLEFAN, 1, Vertex, sizeof(TLVERTEX)); - //g_pD3DDevice->SetRenderState(D3DRS_CULLMODE, D3DCULL_CCW); -}*/ - -//--------------------------------------------------------------------- - -/* -extern void TexSquareA(IDirect3DDevice8* pDevice, - D3DXVECTOR3 pos, - float w, - float h -);*/ - - -class CMD3 -{ -public: - - stM3DModel m_lower; - stM3DModel m_upper; - stM3DModel m_head; - - stM3DModel m_gun; - - stAnim m_Anim[26]; - - - CMD3() - { - //m_startFrame = 0; - //m_endFrame = 0; - //m_currentframe = 0; - //poll = 0; - //m_lastUpdate = 0; - } - - - void Create(/* file names */) - { - /*for (int i = 0; i < MAX_TEXTURES; i++) - { - pTextures[i] = NULL; - }*/ - InitNormals(); - - LoadModel(&m_lower, SZ_MD3_LOWER_FILE); - LoadSkin(&m_lower, SZ_MD3_LOWER_SKIN_FILE); - - LoadModel(&m_upper, SZ_MD3_UPPER_FILE); - LoadSkin(&m_upper, SZ_MD3_UPPER_SKIN_FILE); - - LoadModel(&m_head, SZ_MD3_HEAD_FILE); - LoadSkin(&m_head, SZ_MD3_HEAD_SKIN_FILE); - - LoadAnim(SZ_MD3_ANIM_FILE); - - LoadModel(&m_gun, "model\\railgun\\railgun.md3"); - LoadSkin(&m_gun, "model\\railgun\\railgun.skin"); - - SetAnim(TORSO_STAND); - SetAnim(LEGS_WALK); - - memset(m_head.m_pLinks, 0, sizeof(m_head.m_pLinks)); - memset(m_upper.m_pLinks, 0, sizeof(m_upper.m_pLinks)); - memset(m_lower.m_pLinks, 0, sizeof(m_lower.m_pLinks)); - - LinkModel(&m_lower, "tag_torso", &m_upper); - LinkModel(&m_upper, "tag_head", &m_head); - LinkModel(&m_upper, "tag_weapon", &m_gun); - - m_upper.m_currentframe = m_upper.m_startFrame; - m_head.m_currentframe = m_head.m_startFrame; - m_lower.m_currentframe = m_lower.m_startFrame; - - m_upper.m_poll = 0.0f; - m_head.m_poll = 0.0f; - m_lower.m_poll = 0.0f; - } - void Release() - { - ReleaseModel(&m_lower); - ReleaseModel(&m_upper); - ReleaseModel(&m_head); - - ReleaseModel(&m_gun); - /* - for (int i = 0; i < MAX_TEXTURES; i++) - { - if (pTextures[i]) - { - pTextures[i]->Release(); - pTextures[i] = NULL; - } - }*/ - } - void Update(float time) - { - UpdateFrame(&m_lower, time); - UpdateFrame(&m_upper, time); - UpdateFrame(&m_head, time); - - } - /* - void Render() - { - D3DXMATRIX matCur, matNext; - D3DXMatrixIdentity(&matCur); - matNext = matCur; - DrawSkeleton(&m_lower, &matCur, &matNext); - - DrawModel(&m_lower, &matCur, &matCur); - }*/ - - ZL::AnimatedModel convertToAnimatedModel(); - -protected: - - - void LinkModel(stM3DModel* from, const char* tagnameTo, stM3DModel* modelTo) - { - int numTags = from->m_md3Header.numTags; - stTag* pTags = from->m_pTags; - - for (int i = 0; i < numTags; i++) - { - if (strcmp(pTags[i].Name, tagnameTo) == 0) - { - from->m_pLinks[i] = modelTo; - } - } - } - - - void UpdateFrame(stM3DModel* pMod, float time) - { - if (pMod->m_FPS > 0) - { - /* - float deltaFPS = time - (1.0f/pMod->m_FPS); - if ( deltaFPS < 0.0f ) - { - _asm - { - int 13 - }; - } - pMod->m_poll += time + (time - 1.0f/pMod->m_FPS); - */ - pMod->m_poll += time; - } - else - { - pMod->m_poll += time; - } - - - if (pMod->m_poll > 1.0f) - { - pMod->m_poll = 0.0f; - - pMod->m_currentframe = pMod->m_nextFrame; - pMod->m_nextFrame++; - if (pMod->m_nextFrame > pMod->m_endFrame) - { - pMod->m_nextFrame = pMod->m_startFrame; - } - } - } - - - - /* - void DrawSkeleton(stM3DModel* pMod, D3DXMATRIX* matCur, D3DXMATRIX* matNext) - { - DrawModel(pMod, matCur, matNext); - - stM3DModel** pLinks = pMod->m_pLinks; - stMD3Header* pModHeader = &pMod->m_md3Header; - stTag* pTags = pMod->m_pTags; - int currentFrame = pMod->m_currentframe; - int nextFrame = pMod->m_nextFrame; - //int startFrame = pMod->m_startFrame; - - for (int i = 0; i < pModHeader->numTags; i++) - { - - if (pLinks[i] == NULL) - { - continue; - } - - stM3DModel* childMod = pLinks[i]; - //stMD3Header* pHeader = &childMod->m_md3Header; - //stTag* pTags = childMod->m_pTags; - - - float (*Rotation)[3]; - - Rotation = pTags[currentFrame * pModHeader->numTags + i].Rotation; //3x3 mat - float* Position = pTags[currentFrame * pModHeader->numTags + i].Position; //vector3 - char* tagName = pTags[currentFrame * pModHeader->numTags + i].Name; - - - D3DXMATRIX m; - m(0, 0) = Rotation[0][0]; - m(0, 1) = Rotation[0][1]; - m(0, 2) = Rotation[0][2]; - m(0, 3) = 0; - m(1, 0) = Rotation[1][0]; - m(1, 1) = Rotation[1][1]; - m(1, 2) = Rotation[1][2]; - m(1, 3) = 0; - m(2, 0) = Rotation[2][0]; - m(2, 1) = Rotation[2][1]; - m(2, 2) = Rotation[2][2]; - m(2, 3) = 0; - m(3, 0) = Position[0]; - m(3, 1) = Position[1]; - m(3, 2) = Position[2]; - m(3, 3) = 1; - - float (*RotationNext)[3] = pTags[nextFrame * pModHeader->numTags + i].Rotation; //3x3 mat - float* PositionNext = pTags[nextFrame * pModHeader->numTags + i].Position; //vector3 - char* tagNameNext = pTags[nextFrame * pModHeader->numTags + i].Name; - - D3DXMATRIX mNext; - mNext(0, 0) = RotationNext[0][0]; - mNext(0, 1) = RotationNext[0][1]; - mNext(0, 2) = RotationNext[0][2]; - mNext(0, 3) = 0; - mNext(1, 0) = RotationNext[1][0]; - mNext(1, 1) = RotationNext[1][1]; - mNext(1, 2) = RotationNext[1][2]; - mNext(1, 3) = 0; - mNext(2, 0) = RotationNext[2][0]; - mNext(2, 1) = RotationNext[2][1]; - mNext(2, 2) = RotationNext[2][2]; - mNext(2, 3) = 0; - mNext(3, 0) = PositionNext[0]; - mNext(3, 1) = PositionNext[1]; - mNext(3, 2) = PositionNext[2]; - mNext(3, 3) = 1; - - - //D3DXMATRIX world; - //g_pD3DDevice->GetTransform(D3DTS_WORLD, &world); - //D3DXMATRIX wrld = m * world; - //g_pD3DDevice->SetTransform(D3DTS_WORLD, &wrld); - - m = m * (*matCur); - mNext = mNext * (*matNext); - DrawSkeleton(childMod, &m, &mNext); - - //g_pD3DDevice->SetTransform(D3DTS_WORLD, &world); - - } - } - - void DrawModel(stM3DModel* pMod, D3DXMATRIX* matCur, D3DXMATRIX* matNext) - { - DrawModelInt(pMod, pMod->m_currentframe, pMod->m_nextFrame, matCur, matNext, pMod->m_poll); - } - - IDirect3DVertexBuffer8* pVertexBuffer;*/ - - float aNorms[256][256][3]; - - void InitNormals() - { - for (int i = 0; i < 255; i++) - { - for (int j = 0; j < 255; j++) - { - float alpha = 2.0f * i * M_PI / 255; - float beta = 2.0f * j * M_PI / 255; - aNorms[i][j][0] = cosf(beta) * sinf(alpha); - aNorms[i][j][1] = sinf(beta) * sinf(alpha); - aNorms[i][j][2] = cosf(alpha); - } - } - } - - /* - void DrawModelInt(stM3DModel* pMod, const int currentFrame, const int nexFrame, D3DXMATRIX* matCur, D3DXMATRIX* matNext, float pol) - { - stMD3Header* pHeader = &pMod->m_md3Header; - stMesh* pMeshes = pMod->m_pMeshes; - - struct TVERTEX - { - float x, y, z; - float nx, ny, nz; - float u, v; - enum { FVF_TVERTEX = D3DFVF_XYZ | D3DFVF_NORMAL | D3DFVF_TEX1 }; - }; - - -#if(0) // no lighting - - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLOROP, D3DTOP_SELECTARG1); - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLORARG1, D3DTA_TEXTURE); -#else - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLORARG1, D3DTA_TEXTURE); - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLORARG2, D3DTA_DIFFUSE); - g_pD3DDevice->SetTextureStageState(0, D3DTSS_COLOROP, D3DTOP_MODULATE); -#endif - - g_pD3DDevice->SetTexture(0, NULL); - - - - for (int k = 0; k < pHeader->numMeshes; k++) - { - stMesh* currentMesh = &pMeshes[k]; - //char* meshName = currentMesh->MeshHeader.Name; - - if (currentMesh->texID >= 0) - { - g_pD3DDevice->SetTexture(0, pTextures[currentMesh->texID]); - } - - int currentOffsetVertex = currentFrame * currentMesh->MeshHeader.numVertexes; - //interpolation - int nextCurrentOffsetVertex = nexFrame * currentMesh->MeshHeader.numVertexes; - - int TriangleNum = currentMesh->MeshHeader.numTriangles; - - - //TVERTEX * pVertices = new TVERTEX[TriangleNum * 3]; - - - pVertexBuffer = NULL; - g_pD3DDevice->CreateVertexBuffer(TriangleNum * 3 * sizeof(TVERTEX), D3DUSAGE_WRITEONLY, TVERTEX::FVF_TVERTEX, D3DPOOL_DEFAULT, &pVertexBuffer); - TVERTEX* pVertices; - pVertexBuffer->Lock(0, TriangleNum * 3 * sizeof(TVERTEX), (BYTE**)&pVertices, 0); - - - int indx = 0; - for (int i = 0; i < TriangleNum; i++) - { - //D3DXVECTOR3 tri[3]; - for (int j = 0; j < 3; j++) - { - int currentVertex = currentMesh->pTriangle[i].Vertex[j]; - - D3DXVECTOR3 vA; - vA.x = (currentMesh->pVertex[currentOffsetVertex + currentVertex].Vertex[0] / 64.0f); - vA.y = (currentMesh->pVertex[currentOffsetVertex + currentVertex].Vertex[1] / 64.0f); - vA.z = (currentMesh->pVertex[currentOffsetVertex + currentVertex].Vertex[2] / 64.0f); - - D3DXVECTOR3 nextVA; - nextVA.x = (currentMesh->pVertex[nextCurrentOffsetVertex + currentVertex].Vertex[0] / 64.0f); - nextVA.y = (currentMesh->pVertex[nextCurrentOffsetVertex + currentVertex].Vertex[1] / 64.0f); - nextVA.z = (currentMesh->pVertex[nextCurrentOffsetVertex + currentVertex].Vertex[2] / 64.0f); - - D3DXVec3TransformCoord(&vA, &vA, matCur); - D3DXVec3TransformCoord(&nextVA, &nextVA, matNext); - - - int normU, normV; - normU = currentMesh->pVertex[currentOffsetVertex + currentVertex].Normal[0]; - normV = currentMesh->pVertex[currentOffsetVertex + currentVertex].Normal[1]; - D3DXVECTOR3 norm; - norm[0] = aNorms[normU][normV][0]; - norm[1] = aNorms[normU][normV][1]; - norm[2] = aNorms[normU][normV][2]; - - normU = currentMesh->pVertex[nextCurrentOffsetVertex + currentVertex].Normal[0]; - normV = currentMesh->pVertex[nextCurrentOffsetVertex + currentVertex].Normal[1]; - D3DXVECTOR3 normNext; - normNext[0] = aNorms[normU][normV][0]; - normNext[1] = aNorms[normU][normV][1]; - normNext[2] = aNorms[normU][normV][2]; - - - float u = currentMesh->pTexCoord[currentVertex].Coord[0]; - float v = currentMesh->pTexCoord[currentVertex].Coord[1]; - - // Interplated value - float nx = norm[0] + pol * (normNext[0] - norm[0]); - float ny = norm[1] + pol * (normNext[1] - norm[1]); - float nz = norm[2] + pol * (normNext[2] - norm[2]); - - float pA0 = vA[0] + pol * (nextVA[0] - vA[0]); - float pA1 = vA[1] + pol * (nextVA[1] - vA[1]); - float pA2 = vA[2] + pol * (nextVA[2] - vA[2]); - - //tri[j].x = pA0; - //tri[j].y = pA1; - //tri[j].z = pA2; - - - pVertices[indx].x = pA0; - pVertices[indx].y = pA1; - pVertices[indx].z = pA2; - pVertices[indx].nx = nx; - pVertices[indx].ny = ny; - pVertices[indx].nz = nz; - pVertices[indx].u = u; - pVertices[indx].v = v; - indx++; - } - - //DbgTriangle(g_pD3DDevice, tri[0], tri[1], tri[2], 0xff00ffff ); - } - - - pVertexBuffer->Unlock(); - g_pD3DDevice->SetRenderState(D3DRS_CULLMODE, D3DCULL_CW); - g_pD3DDevice->SetVertexShader(TVERTEX::FVF_TVERTEX); - g_pD3DDevice->SetStreamSource(0, pVertexBuffer, sizeof(TVERTEX)); - g_pD3DDevice->DrawPrimitive(D3DPT_TRIANGLELIST, 0, TriangleNum); - pVertexBuffer->Release(); - pVertexBuffer = NULL; - - - } - }*/ - - - bool SetAnim(int ani) - { - if (ani >= 0 && ani <= 5) - { - m_lower.m_FPS = m_Anim[ani].FPS; - m_upper.m_FPS = m_Anim[ani].FPS; - - m_lower.m_startFrame = m_Anim[ani].FirstFrame; - m_upper.m_startFrame = m_Anim[ani].FirstFrame; - - //m_upper.m_currentframe = m_upper.m_startFrame; - //m_lower.m_currentframe = m_lower.m_startFrame; - - m_lower.m_endFrame = m_Anim[ani].FirstFrame + m_Anim[ani].numFrames; - m_upper.m_endFrame = m_Anim[ani].FirstFrame + m_Anim[ani].numFrames; - - m_lower.m_anim = ani; - m_upper.m_anim = ani; - } - else if (ani >= 6 && ani <= 12) - { - m_upper.m_FPS = m_Anim[ani].FPS; - m_upper.m_nextFrame = m_Anim[ani].FirstFrame; - m_upper.m_startFrame = m_Anim[ani].FirstFrame; - m_upper.m_endFrame = m_Anim[ani].FirstFrame + m_Anim[ani].numFrames; - //m_upper.m_currentframe = m_upper.m_startFrame; - - m_upper.m_anim = ani; - } - else if (ani >= 13 && ani <= 24) - { - m_lower.m_FPS = m_Anim[ani].FPS; - m_lower.m_nextFrame = m_Anim[ani].FirstFrame; - m_lower.m_startFrame = m_Anim[ani].FirstFrame; - m_lower.m_endFrame = m_Anim[ani].FirstFrame + m_Anim[ani].numFrames; - //m_lower.m_currentframe = m_lower.m_startFrame; - - m_lower.m_anim = ani; - } - else - { - throw std::runtime_error("lol"); - /*_asm - { - int 13; - }*/ - } - - return true; - } - - - bool LoadSkin(stM3DModel* pMod, const char* filename) - { - char buf[256]; - - char MeshName[256] = { 0 }; - char ImageName[256] = { 0 }; - - FILE* fp = fopen(filename, "r"); - - if (fp == NULL) - { - abc("unable to open file"); - return false; - } - - //char firstWord[256]; - - char* val = NULL; - int i = 0; - - do - { - memset(MeshName, 0, sizeof(MeshName)); - - val = fgets(buf, 256, fp); - if (val == NULL) - { - break; - } - //sscanf(buf, "%s", firstWord); - - if (buf[strlen(buf) - 1] == '\n') - { - buf[strlen(buf) - 1] = NULL; - } - - if (buf[strlen(buf) - 1] == ',') - { - strcpy(MeshName, buf); - MeshName[strlen(MeshName) - 1] = NULL; - } - - if (strncmp(buf, "tag_", 4) == 0) // tags dont have skins - { - continue; - } - - char* pMeshNameEnd = strchr(buf, ','); - int meshNameLen = (int)(pMeshNameEnd - buf); - strncpy(MeshName, buf, meshNameLen); - - //char* pImageName = strstr(MeshName, ","); // get the full image and path name - //strcpy(ImageName, pImageName); // get name from last / (i.e only filename) - char* pName = strrchr(buf, '/'); - strcpy(ImageName, pName + 1); - - - - for (int i = 0; i < pMod->m_md3Header.numMeshes; i++) - { - stMesh* pMesh = &pMod->m_pMeshes[i]; - if (strcmp(pMesh->MeshHeader.Name, MeshName) == 0) - { - char TextureName[256]; - strcpy(TextureName, SZ_MD3_TEXTURE_PATH); - strcat(TextureName, ImageName); - - //D3DXCreateTextureFromFile(g_pD3DDevice, TextureName, &pTextures[g_NumLoadedTextures]); - pMesh->texID = g_NumLoadedTextures; - g_NumLoadedTextures++; - } - } - // lose the starting / - } while (val); - - - return true; - } - - - - bool LoadAnim(const char* filename) - { - char buf[256]; - - FILE* fp = fopen(filename, "r"); - - if (fp == NULL) - { - abc("unable to open file"); - return false; - } - - char firstWord[256]; - - char* val = NULL; - int i = 0; - - do - { - strcpy(firstWord, "//"); - - val = fgets(buf, 256, fp); - if (val == NULL) - { - break; - } - sscanf(buf, "%s", firstWord); - - - if (strcmp("sex", firstWord) == NULL) - { - } - else if (strcmp("headoffset", firstWord) == NULL) - { - } - else if (strcmp("footsteps", firstWord) == NULL) - { - } - else if (strcmp("", firstWord) == NULL) - { - } - else if (strcmp("//", firstWord) == NULL) - { - } - else - { - char words[4][256]; - - sscanf(buf, "%s %s %s %s", &words[0], &words[1], &words[2], &words[3]); - // Extract the values of FirstFrame, numFrames, LoopingFrames, FPS from the String - int FirstFrame = atoi(words[0]); - int numFrames = atoi(words[1]); - int loopingFrames = atoi(words[2]); - int FPS = atoi(words[3]); - - m_Anim[i].FirstFrame = FirstFrame; - m_Anim[i].numFrames = numFrames; - m_Anim[i].LoopingFrames = loopingFrames; - m_Anim[i].FPS = FPS; - - i++; - } - - } while (val); - - int skip = m_Anim[LEGS_WALKCR].FirstFrame - m_Anim[TORSO_GESTURE].FirstFrame; - - for (int i = LEGS_WALKCR; i < MAX_ANIMATIONS; i++) - { - m_Anim[i].FirstFrame = m_Anim[i].FirstFrame - skip; - } - - - for (int i = 0; i < MAX_ANIMATIONS; i++) - { - if (m_Anim[i].numFrames > 0) - { - m_Anim[i].numFrames = m_Anim[i].numFrames - 1; - } - } - - - - fclose(fp); - - return true; - } - - //----------------------------------------------------------------------- - // - // Loads model from a .md3 file - // - //----------------------------------------------------------------------- - bool LoadModel(stM3DModel* pMod, const char* filename) - { - char buf[256]; - - FILE* fp = fopen(filename, "rb"); - - if (fp == NULL) - { - abc("unable to open file"); - return false; - } - - // Lets get the size of this md3 file - int md3filesize = filesize(fp); - fseek(fp, 0L, SEEK_SET); - - if (strlen(filename) > 255) - { - sprintf(buf, "filename is longer than %d", MAX_FILENAME_LENGTH); - abc(buf); - return false; - } - // copy name - strcpy(pMod->m_md3FileName, filename); - sprintf(buf, "MD3 FileName: %s", pMod->m_md3FileName); - abc(buf); - - sprintf(buf, "FileSize: %d", md3filesize); - abc(buf); - - abc("\n~~MD3 Header~~\n"); - - stMD3Header* pHeader = &pMod->m_md3Header; - - // read header - fread(pHeader, 1, sizeof(stMD3Header), fp); - - /* - // log debug information to file - sprintf(buf, "ID %c%c%c%c", pHeader->ID[0], pHeader->ID[1], pHeader->ID[2], pHeader->ID[3]); - abc(buf); - - sprintf(buf, "Version: %d", pHeader->Version); - abc(buf); - - sprintf(buf, "FileName: %s", pHeader->Filename); - abc(buf); - - sprintf(buf, "numBoneFrames: %d", pHeader->numBoneFrames); - abc(buf); - - sprintf(buf, "numTags: %d", pHeader->numTags); - abc(buf); - - sprintf(buf, "numMeshes: %d", pHeader->numMeshes); - abc(buf); - - sprintf(buf, "numMaxSkins: %d", pHeader->numMaxSkins); - abc(buf); - - sprintf(buf, "ofsFrames: %d", pHeader->ofsFrames); - abc(buf); - - sprintf(buf, "ofsTagStart: %d", pHeader->ofsTagStart); - abc(buf); - - sprintf(buf, "ofMeshSurfaces: %d", pHeader->ofMeshSurfaces); - abc(buf); - - sprintf(buf, "ofEndOfFile (Filesize): %d", pHeader->ofEndOfFile); - abc(buf); - */ - - if (strcmp("IDP3", pHeader->ID) == NULL) - { - sprintf(buf, "Incorrect File Format 'Incorrect ID' ie. ('IDP3')"); - abc(buf); - } - - - // Allocate memory for all or bones/tags/etc - pMod->m_pBoneFrame = new stBoneFrame[pHeader->numBoneFrames]; - pMod->m_pTags = new stTag[pHeader->numBoneFrames * pHeader->numTags]; - pMod->m_pMeshes = new stMesh[pHeader->numMeshes]; - - stBoneFrame* pBoneFrame = pMod->m_pBoneFrame; - stTag* pTags = pMod->m_pTags; - stMesh* pMeshes = pMod->m_pMeshes; - - // Lets seek to the start of the bone frames & read boneframe - fseek(fp, pHeader->ofsFrames, SEEK_SET); - fread(pBoneFrame, 1, pHeader->numBoneFrames * sizeof(stBoneFrame), fp); - - /* - sprintf(buf, "\n~~~~BoneFrames: %d~~~~~~", pHeader->numBoneFrames); - abc(buf); - for (int i=0; inumBoneFrames; i++) - { - abc("#"); - sprintf(buf, "mins[%.1f,%.1f,%.1f]", m_pBoneFrame[i].mins[0], m_pBoneFrame[i].mins[1], m_pBoneFrame[i].mins[2]); - abc(buf); - sprintf(buf, "maxs[%.1f,%.1f,%.1f]", m_pBoneFrame[i].maxs[0], m_pBoneFrame[i].maxs[1], m_pBoneFrame[i].maxs[2]); - abc(buf); - sprintf(buf, "Position[%.1f,%.1f,%.1f]", m_pBoneFrame[i].Position[0], m_pBoneFrame[i].Position[1], m_pBoneFrame[i].Position[2]); - abc(buf); - sprintf(buf, "Scale[%.1f]", m_pBoneFrame[i].Scale); - abc(buf); - sprintf(buf, "Creator[%s]", m_pBoneFrame[i].Creator); - abc(buf); - } - */ - - - // Seek to start of tags and read them all in - fseek(fp, pHeader->ofsTagStart, SEEK_SET); - fread(pTags, 1, pHeader->numBoneFrames * pHeader->numTags * sizeof(stTag), fp); - - /* - sprintf(buf, "\n~~~~Tags: %d~~~~~~", pHeader->numTags); - abc(buf); - for (int i=0; iofMeshSurfaces; - - for (int j = 0; j < pHeader->numMeshes; j++) - { - stMesh* pMesh = &pMeshes[j]; - stMeshHeader* pMeshHeader = &(pMesh->MeshHeader); - - fseek(fp, meshOFS, SEEK_SET); - - // Seek to the start of the mesh data and read it all in - fread(pMeshHeader, 1, sizeof(stMeshHeader), fp); - - // Read in all the sub parts of the mesh data - { - fseek(fp, meshOFS + pMeshHeader->ofsTriangles, SEEK_SET); - pMesh->pTriangle = new stTriangle[pMeshHeader->numTriangles]; - fread(pMesh->pTriangle, 1, pMeshHeader->numTriangles * sizeof(stTriangle), fp); - - fseek(fp, meshOFS + pMeshHeader->ofsSkins, SEEK_SET); - pMesh->pSkins = new stSkin[pMeshHeader->numSkins]; - fread(pMesh->pSkins, 1, pMeshHeader->numSkins * sizeof(stSkin), fp); - - fseek(fp, meshOFS + pMeshHeader->ofsTexVector, SEEK_SET); - pMesh->pTexCoord = new stTexCoord[pMeshHeader->numVertexes]; - fread(pMesh->pTexCoord, 1, pMeshHeader->numVertexes * sizeof(stTexCoord), fp); - - fseek(fp, meshOFS + pMeshHeader->ofsVertex, SEEK_SET); - pMesh->pVertex = new stVertex[pMeshHeader->numVertexes * pMeshHeader->numMeshFrames]; - fread(pMesh->pVertex, 1, pMeshHeader->numMeshFrames * pMeshHeader->numVertexes * sizeof(stVertex), fp); - - pMesh->texID = -1; - } - - meshOFS += pMeshHeader->ofsEndMeshSize; - - }//End for meshes - - - /* - sprintf(buf, "\n~~~~Mesh Surfaces: %d~~~~~~", m_md3Header.numMeshes); - abc(buf); - for (int j=0; jMeshHeader); - - sprintf(buf, "ID [%c%c%c%c]", pMeshHeader->ID[0], pMeshHeader->ID[1], pMeshHeader->ID[2], pMeshHeader->ID[3]); - abc(buf); - sprintf(buf, "Name [%s]", pMeshHeader->Name); - abc(buf); - sprintf(buf, "flags [0x%.2X]", pMeshHeader->flags); - abc(buf); - sprintf(buf, "numMeshFrames [%d]", pMeshHeader->numMeshFrames); - abc(buf); - sprintf(buf, "numSkins [%d]", pMeshHeader->numSkins); - abc(buf); - sprintf(buf, "numVertexes [%d]", pMeshHeader->numVertexes); - abc(buf); - sprintf(buf, "numVertexes [%d]", pMeshHeader->numVertexes); - abc(buf); - sprintf(buf, "ofsTriangles [%d]", pMeshHeader->ofsTriangles); - abc(buf); - sprintf(buf, "ofsSkins [%d]", pMeshHeader->ofsSkins); - abc(buf); - sprintf(buf, "ofsTexVector [%d]", pMeshHeader->ofsTexVector); - abc(buf); - sprintf(buf, "ofsVertex [%d]", pMeshHeader->ofsVertex); - abc(buf); - sprintf(buf, "ofsEndMeshSize [%d]", pMeshHeader->ofsEndMeshSize); - abc(buf); - - - // Mesh Triangles - for (int i=0; inumTriangles; i++) - { - stTriangle * pTri = &(pMesh->pTriangle[i]); - sprintf(buf, "Triangle [%d,%d,%d]", pTri->Vertex[0], pTri->Vertex[1], pTri->Vertex[2]); - abc(buf); - } - - // Mesh Skins - for (int i=0; inumSkins; i++) - { - stSkin * pSkin = &(pMesh->pSkins[i]); - sprintf(buf, "Skin:Name [%s]", pSkin->Name); - abc(buf); - sprintf(buf, "Skin:Index [%d]", pSkin->index); - abc(buf); - } - - for (int i=0; inumVertexes; i++) - { - stTexCoord * pTex = &(pMesh->pTexCoord[i]); - sprintf(buf, "TexCoord:Index [%.1f,%.1f]", pTex->Coord[0], pTex->Coord[1]); - abc(buf); - } - - - for (int i=0; inumVertexes; i++) - { - stVertex* pVert = &(pMesh->pVertex[i]); - sprintf(buf, "Vertice:Vertex [%d,%d,%d]", pVert->Vertex[0], pVert->Vertex[1], pVert->Vertex[2]); - abc(buf); - - } - } - */ - - - fclose(fp); - - /* - for (int j=0; jpSkins; - delete[] pMesh->pTexCoord; - delete[] pMesh->pTriangle; - delete[] pMesh->pVertex; - - pMesh->pSkins = NULL; - pMesh->pTexCoord = NULL; - pMesh->pTriangle = NULL; - pMesh->pVertex = NULL; - } - - delete[] m_pBoneFrame; - delete[] m_pTags; - delete[] m_pMeshes; - - m_pBoneFrame = NULL; - m_pTags = NULL; - m_pMeshes = NULL; - */ - return true; - }// End LoadModel(..) - - - bool ReleaseModel(stM3DModel* pMod) - { - stMD3Header* pHeader = &pMod->m_md3Header; - stMesh* pMeshes = pMod->m_pMeshes; - - for (int j = 0; j < pHeader->numMeshes; j++) - { - stMesh* pMesh = &pMeshes[j]; - - delete[] pMesh->pSkins; - delete[] pMesh->pTexCoord; - delete[] pMesh->pTriangle; - delete[] pMesh->pVertex; - - pMesh->pSkins = NULL; - pMesh->pTexCoord = NULL; - pMesh->pTriangle = NULL; - pMesh->pVertex = NULL; - } - - stBoneFrame* pBoneFrame = pMod->m_pBoneFrame; - stTag* pTags = pMod->m_pTags; - stMesh* pMshes = pMod->m_pMeshes; - - delete[] pBoneFrame; - delete[] pTags; - delete[] pMshes; - - pBoneFrame = NULL; - pTags = NULL; - pMshes = NULL; - - return true; - } -}; - -ZL::AnimatedModel CMD3::convertToAnimatedModel() -{ - ZL::AnimatedModel result; - - result.parts.resize(3); - - std::array parts = { &this->m_head, &this->m_upper, &this->m_lower }; - std::array, 3> textureNames = { - //std::vector{"model/sarge/cigar.png", "model/sarge/band.png"}, - std::vector{"model/sarge/band.png"}, - std::vector{"model/sarge/band.png"}, - std::vector{"model/sarge/band.png"} - }; - - for (int m = 0; m < 3; m++) - { - int numMeshes = parts[m]->m_md3Header.numMeshes; - - result.parts[m].meshes.resize(numMeshes); - - for (int i = 0; i < textureNames[m].size(); i++) - { - std::string texName = textureNames[m][i]; - //result.parts[m].textures.push_back(std::make_shared(ZL::CreateTextureDataFromPng(texName))); - result.parts[m].textures.push_back(std::make_shared(ZL::CreateTextureDataFromBmp24("chair_01_Base_Color.bmp"))); - } - - for (int n = 0; n < numMeshes; n++) - { - auto& pMesh = parts[m]->m_pMeshes[n]; - auto& pMeshHeader = parts[m]->m_pMeshes[n].MeshHeader; - - - - for (int i = 0; i < pMeshHeader.numTriangles; i++) - { - stTriangle* pTri = &(pMesh.pTriangle[i]); - - stVertex* pVert0 = &(pMesh.pVertex[pTri->Vertex[0]]); - stVertex* pVert1 = &(pMesh.pVertex[pTri->Vertex[1]]); - stVertex* pVert2 = &(pMesh.pVertex[pTri->Vertex[2]]); - ZL::Vector3f v0; - - v0.v[0] = pVert0->Vertex[0]; - v0.v[1] = pVert0->Vertex[1]; - v0.v[2] = pVert0->Vertex[2]; - - result.parts[m].meshes[n].PositionData.push_back(v0); - - ZL::Vector3f v1; - - v1.v[0] = pVert1->Vertex[0]; - v1.v[1] = pVert1->Vertex[1]; - v1.v[2] = pVert1->Vertex[2]; - - result.parts[m].meshes[n].PositionData.push_back(v1); - - ZL::Vector3f v2; - - v2.v[0] = pVert2->Vertex[0]; - v2.v[1] = pVert2->Vertex[1]; - v2.v[2] = pVert2->Vertex[2]; - - result.parts[m].meshes[n].PositionData.push_back(v2); - - stTexCoord* pTex0 = &(pMesh.pTexCoord[pTri->Vertex[0]]); - stTexCoord* pTex1 = &(pMesh.pTexCoord[pTri->Vertex[1]]); - stTexCoord* pTex2 = &(pMesh.pTexCoord[pTri->Vertex[2]]); - - - - ZL::Vector2f t0; - - t0.v[0] = pTex0->Coord[0]; - t0.v[1] = pTex0->Coord[1]; - - result.parts[m].meshes[n].TexCoordData.push_back(t0); - - ZL::Vector2f t1; - - t1.v[0] = pTex1->Coord[0]; - t1.v[1] = pTex1->Coord[1]; - - result.parts[m].meshes[n].TexCoordData.push_back(t1); - - ZL::Vector2f t2; - - t2.v[0] = pTex2->Coord[0]; - t2.v[1] = pTex2->Coord[1]; - - result.parts[m].meshes[n].TexCoordData.push_back(t2); - } - } - } - - return result; -} - - -ZL::AnimatedModel testLoadModel() -{ - CMD3 md3; - - md3.Create(); - - ZL::AnimatedModel r = md3.convertToAnimatedModel(); - - r.RefreshRenderMeshes(); - - return r; - -} \ No newline at end of file diff --git a/md3test.h b/md3test.h deleted file mode 100644 index 3d171fd..0000000 --- a/md3test.h +++ /dev/null @@ -1,198 +0,0 @@ - - -#define SZ_MD3_LOWER_FILE "model\\sarge\\lower.md3" -#define SZ_MD3_LOWER_SKIN_FILE "model\\sarge\\lower_default.skin" - -#define SZ_MD3_UPPER_FILE "model\\sarge\\upper.md3" -#define SZ_MD3_UPPER_SKIN_FILE "model\\sarge\\upper_default.skin" - -#define SZ_MD3_HEAD_FILE "model\\sarge\\head.md3" -#define SZ_MD3_HEAD_SKIN_FILE "model\\sarge\\head_default.skin" - -#define SZ_MD3_TEXTURE_PATH "model\\sarge\\" -#define SZ_MD3_ANIM_FILE "model\\sarge\\animation.cfg" - -#define MAX_FILENAME_LENGTH 256 -#define MAX_TEXTURES 20 - -//--------------------------------------------------------------------------- - -#include -#include //sprintf(...) -#include - - - -//--------------------------------------------------------------------------- - - -typedef unsigned int uint32; -typedef int int32; -typedef unsigned short int uint16; -typedef short int int16; -typedef float float32; - - - -struct stMD3Header -{ - char ID[4]; // ID of the file is always "IDP3" - int32 Version; // Version number, usually 15 - char Filename[68]; // Filename, sometimes left blank - int32 numBoneFrames; // Number of BoneFrames - int32 numTags; // Number of 'tags' per BoneFrame - int32 numMeshes; // Number of Meshes/Skins in MaxSkin - int32 numMaxSkins; // Maximum number of unique skins - int32 ofsFrames; // Always equal to the length this header - int32 ofsTagStart; // Starting position of tag structures - int32 ofMeshSurfaces; // Ending position of tag structure - int32 ofEndOfFile; // Size of file -}; - - - -struct stBoneFrame -{ - float32 mins[3]; - float32 maxs[3]; - float32 Position[3]; - float32 Scale; - char Creator[16]; -}; - -struct stAnim -{ - int32 FirstFrame; - int32 numFrames; - int32 LoopingFrames; - int32 FPS; -}; - -struct stSkin -{ - char Name[64]; - int32 index; -}; - -struct stTag -{ - char Name[64]; - float32 Position[3]; - float32 Rotation[3][3]; -}; - -struct stTriangle -{ - int32 Vertex[3]; -}; - -struct stTexCoord -{ - float32 Coord[2]; -}; - -struct stVertex // = Record -{ - int16 Vertex[3]; - unsigned char Normal[2]; -}; - -struct stMeshHeader -{ - char ID[4]; - char Name[64]; - int32 flags; - int32 numMeshFrames; - int32 numSkins; - int32 numVertexes; - int32 numTriangles; - int32 ofsTriangles; - int32 ofsSkins; - int32 ofsTexVector; - int32 ofsVertex; - int32 ofsEndMeshSize; -}; - -struct stMesh -{ - stMeshHeader MeshHeader; - stSkin* pSkins; - stTriangle* pTriangle; - stTexCoord* pTexCoord; - stVertex* pVertex; - int texID; -}; - - -struct stM3DModel -{ - char m_md3FileName[MAX_FILENAME_LENGTH]; - stMD3Header m_md3Header; - - stBoneFrame* m_pBoneFrame; - stTag* m_pTags; - stMesh* m_pMeshes; - - int m_FPS; - int m_startFrame; - int m_endFrame; - int m_nextFrame; - int m_anim; - float m_poll; - //int m_animLower; - //int m_animUpper; - stM3DModel* m_pLinks[10]; - - int m_currentframe; -}; - -//IDirect3DTexture8* pTextures[MAX_TEXTURES]; -int g_NumLoadedTextures = 0; - -//--------------------------------------------------------------------------- - -long filesize(FILE* stream) -{ - long curpos, length; - - curpos = ftell(stream); - fseek(stream, 0L, SEEK_END); - length = ftell(stream); - fseek(stream, curpos, SEEK_SET); - return length; -} - -//--------------------------------------------------------------------------- - -enum -{ - BOTH_DEATH1 = 0, - BOTH_DEAD1 = 1, - BOTH_DEATH2 = 2, - BOTH_DEAD2 = 3, - BOTH_DEATH3 = 4, - BOTH_DEAD3 = 5, - - TORSO_GESTURE = 6, - TORSO_ATTACK = 7, - TORSO_ATTACK2 = 8, - TORSO_DROP = 9, - TORSO_RAISE = 10, - TORSO_STAND = 11, - TORSO_STAND2 = 12, - - LEGS_WALKCR = 13, - LEGS_WALK = 14, - LEGS_RUN = 15, - LEGS_BACK = 16, - LEGS_SWIM = 17, - LEGS_JUMP = 18, - LEGS_LAND = 19, - LEGS_JUMPB = 20, - LEGS_LANDB = 21, - LEGS_IDLE = 22, - LEGS_IDLECR = 23, - LEGS_TURN = 24, - - MAX_ANIMATIONS -}; diff --git a/mesh001.txt b/mesh001.txt deleted file mode 100644 index 53d558f..0000000 --- a/mesh001.txt +++ /dev/null @@ -1,29169 +0,0 @@ -===Vertices: 2660 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -Vertex 2296: -Vertex 2297: -Vertex 2298: -Vertex 2299: -Vertex 2300: -Vertex 2301: -Vertex 2302: -Vertex 2303: -Vertex 2304: -Vertex 2305: -Vertex 2306: -Vertex 2307: -Vertex 2308: -Vertex 2309: -Vertex 2310: -Vertex 2311: -Vertex 2312: -Vertex 2313: -Vertex 2314: -Vertex 2315: -Vertex 2316: -Vertex 2317: -Vertex 2318: -Vertex 2319: -Vertex 2320: -Vertex 2321: -Vertex 2322: -Vertex 2323: -Vertex 2324: -Vertex 2325: -Vertex 2326: -Vertex 2327: -Vertex 2328: -Vertex 2329: -Vertex 2330: -Vertex 2331: -Vertex 2332: -Vertex 2333: -Vertex 2334: -Vertex 2335: -Vertex 2336: -Vertex 2337: -Vertex 2338: -Vertex 2339: -Vertex 2340: -Vertex 2341: -Vertex 2342: -Vertex 2343: -Vertex 2344: -Vertex 2345: -Vertex 2346: -Vertex 2347: -Vertex 2348: -Vertex 2349: -Vertex 2350: -Vertex 2351: -Vertex 2352: -Vertex 2353: -Vertex 2354: -Vertex 2355: -Vertex 2356: -Vertex 2357: -Vertex 2358: -Vertex 2359: -Vertex 2360: -Vertex 2361: -Vertex 2362: -Vertex 2363: -Vertex 2364: -Vertex 2365: -Vertex 2366: -Vertex 2367: -Vertex 2368: -Vertex 2369: -Vertex 2370: -Vertex 2371: -Vertex 2372: -Vertex 2373: -Vertex 2374: -Vertex 2375: -Vertex 2376: -Vertex 2377: -Vertex 2378: -Vertex 2379: -Vertex 2380: -Vertex 2381: -Vertex 2382: -Vertex 2383: -Vertex 2384: -Vertex 2385: -Vertex 2386: -Vertex 2387: -Vertex 2388: -Vertex 2389: -Vertex 2390: -Vertex 2391: -Vertex 2392: -Vertex 2393: -Vertex 2394: -Vertex 2395: -Vertex 2396: -Vertex 2397: -Vertex 2398: -Vertex 2399: -Vertex 2400: -Vertex 2401: -Vertex 2402: -Vertex 2403: -Vertex 2404: -Vertex 2405: -Vertex 2406: -Vertex 2407: -Vertex 2408: -Vertex 2409: -Vertex 2410: -Vertex 2411: -Vertex 2412: -Vertex 2413: -Vertex 2414: -Vertex 2415: -Vertex 2416: -Vertex 2417: -Vertex 2418: -Vertex 2419: -Vertex 2420: -Vertex 2421: -Vertex 2422: -Vertex 2423: -Vertex 2424: -Vertex 2425: -Vertex 2426: -Vertex 2427: -Vertex 2428: -Vertex 2429: -Vertex 2430: -Vertex 2431: -Vertex 2432: -Vertex 2433: -Vertex 2434: -Vertex 2435: -Vertex 2436: -Vertex 2437: -Vertex 2438: -Vertex 2439: -Vertex 2440: -Vertex 2441: -Vertex 2442: -Vertex 2443: -Vertex 2444: -Vertex 2445: -Vertex 2446: -Vertex 2447: -Vertex 2448: -Vertex 2449: -Vertex 2450: -Vertex 2451: -Vertex 2452: -Vertex 2453: -Vertex 2454: -Vertex 2455: -Vertex 2456: -Vertex 2457: -Vertex 2458: -Vertex 2459: -Vertex 2460: -Vertex 2461: -Vertex 2462: -Vertex 2463: -Vertex 2464: -Vertex 2465: -Vertex 2466: -Vertex 2467: -Vertex 2468: -Vertex 2469: -Vertex 2470: -Vertex 2471: -Vertex 2472: -Vertex 2473: -Vertex 2474: -Vertex 2475: -Vertex 2476: -Vertex 2477: -Vertex 2478: -Vertex 2479: -Vertex 2480: -Vertex 2481: -Vertex 2482: -Vertex 2483: -Vertex 2484: -Vertex 2485: -Vertex 2486: -Vertex 2487: -Vertex 2488: -Vertex 2489: -Vertex 2490: -Vertex 2491: -Vertex 2492: -Vertex 2493: -Vertex 2494: -Vertex 2495: -Vertex 2496: -Vertex 2497: -Vertex 2498: -Vertex 2499: -Vertex 2500: -Vertex 2501: -Vertex 2502: -Vertex 2503: -Vertex 2504: -Vertex 2505: -Vertex 2506: -Vertex 2507: -Vertex 2508: -Vertex 2509: -Vertex 2510: -Vertex 2511: -Vertex 2512: -Vertex 2513: -Vertex 2514: -Vertex 2515: -Vertex 2516: -Vertex 2517: -Vertex 2518: -Vertex 2519: -Vertex 2520: -Vertex 2521: -Vertex 2522: -Vertex 2523: -Vertex 2524: -Vertex 2525: -Vertex 2526: -Vertex 2527: -Vertex 2528: -Vertex 2529: -Vertex 2530: -Vertex 2531: -Vertex 2532: -Vertex 2533: -Vertex 2534: -Vertex 2535: -Vertex 2536: -Vertex 2537: -Vertex 2538: -Vertex 2539: -Vertex 2540: -Vertex 2541: -Vertex 2542: -Vertex 2543: -Vertex 2544: -Vertex 2545: -Vertex 2546: -Vertex 2547: -Vertex 2548: -Vertex 2549: -Vertex 2550: -Vertex 2551: -Vertex 2552: -Vertex 2553: -Vertex 2554: -Vertex 2555: -Vertex 2556: -Vertex 2557: -Vertex 2558: -Vertex 2559: -Vertex 2560: -Vertex 2561: -Vertex 2562: -Vertex 2563: -Vertex 2564: -Vertex 2565: -Vertex 2566: -Vertex 2567: -Vertex 2568: -Vertex 2569: -Vertex 2570: -Vertex 2571: -Vertex 2572: -Vertex 2573: -Vertex 2574: -Vertex 2575: -Vertex 2576: -Vertex 2577: -Vertex 2578: -Vertex 2579: -Vertex 2580: -Vertex 2581: -Vertex 2582: -Vertex 2583: -Vertex 2584: -Vertex 2585: -Vertex 2586: -Vertex 2587: -Vertex 2588: -Vertex 2589: -Vertex 2590: -Vertex 2591: -Vertex 2592: -Vertex 2593: -Vertex 2594: -Vertex 2595: -Vertex 2596: -Vertex 2597: -Vertex 2598: -Vertex 2599: -Vertex 2600: -Vertex 2601: -Vertex 2602: -Vertex 2603: -Vertex 2604: -Vertex 2605: -Vertex 2606: -Vertex 2607: -Vertex 2608: -Vertex 2609: -Vertex 2610: -Vertex 2611: -Vertex 2612: -Vertex 2613: -Vertex 2614: -Vertex 2615: -Vertex 2616: -Vertex 2617: -Vertex 2618: -Vertex 2619: -Vertex 2620: -Vertex 2621: -Vertex 2622: -Vertex 2623: -Vertex 2624: -Vertex 2625: -Vertex 2626: -Vertex 2627: -Vertex 2628: -Vertex 2629: -Vertex 2630: -Vertex 2631: -Vertex 2632: -Vertex 2633: -Vertex 2634: -Vertex 2635: -Vertex 2636: -Vertex 2637: -Vertex 2638: -Vertex 2639: -Vertex 2640: -Vertex 2641: -Vertex 2642: -Vertex 2643: -Vertex 2644: -Vertex 2645: -Vertex 2646: -Vertex 2647: -Vertex 2648: -Vertex 2649: -Vertex 2650: -Vertex 2651: -Vertex 2652: -Vertex 2653: -Vertex 2654: -Vertex 2655: -Vertex 2656: -Vertex 2657: -Vertex 2658: -Vertex 2659: -===UV Coordinates: -Face count: 3974 -Face 0 -UV Count: 3 - UV - UV - UV -Face 1 -UV Count: 3 - UV - UV - UV -Face 2 -UV Count: 3 - UV - UV - UV -Face 3 -UV Count: 3 - UV - UV - UV -Face 4 -UV Count: 3 - UV - UV - UV -Face 5 -UV Count: 3 - UV - UV - UV -Face 6 -UV Count: 3 - UV - UV - UV -Face 7 -UV Count: 3 - UV - UV - UV -Face 8 -UV Count: 3 - UV - UV - UV -Face 9 -UV Count: 3 - UV - UV - UV -Face 10 -UV Count: 3 - UV - UV - UV -Face 11 -UV Count: 3 - UV - UV - UV -Face 12 -UV Count: 3 - UV - UV - UV -Face 13 -UV Count: 3 - UV - UV - UV -Face 14 -UV Count: 3 - UV - UV - UV -Face 15 -UV Count: 3 - UV - UV - UV -Face 16 -UV Count: 3 - UV - UV - UV -Face 17 -UV Count: 3 - UV - UV - UV -Face 18 -UV Count: 3 - UV - UV - UV -Face 19 -UV Count: 3 - UV - UV - UV -Face 20 -UV Count: 3 - UV - UV - UV -Face 21 -UV Count: 3 - UV - UV - UV -Face 22 -UV Count: 3 - UV - UV - UV -Face 23 -UV Count: 3 - UV - UV - UV -Face 24 -UV Count: 3 - UV - UV - UV -Face 25 -UV Count: 3 - UV - UV - UV -Face 26 -UV Count: 3 - UV - UV - UV -Face 27 -UV Count: 3 - UV - UV - UV -Face 28 -UV Count: 3 - UV - UV - UV -Face 29 -UV Count: 3 - UV - UV - UV -Face 30 -UV Count: 3 - UV - UV - UV -Face 31 -UV Count: 3 - UV - UV - UV -Face 32 -UV Count: 3 - UV - UV - UV -Face 33 -UV Count: 3 - UV - UV - UV -Face 34 -UV Count: 3 - UV - UV - UV -Face 35 -UV Count: 3 - UV - UV - UV -Face 36 -UV Count: 3 - UV - UV - UV -Face 37 -UV Count: 3 - UV - UV - UV -Face 38 -UV Count: 3 - UV - UV - UV -Face 39 -UV Count: 3 - UV - UV - UV -Face 40 -UV Count: 3 - UV - UV - UV -Face 41 -UV Count: 3 - UV - UV - UV -Face 42 -UV Count: 3 - UV - UV - UV -Face 43 -UV Count: 3 - UV - UV - UV -Face 44 -UV Count: 3 - UV - UV - UV -Face 45 -UV Count: 3 - UV - UV - UV -Face 46 -UV Count: 3 - UV - UV - UV -Face 47 -UV Count: 3 - UV - UV - UV -Face 48 -UV Count: 3 - UV - UV - UV -Face 49 -UV Count: 3 - UV - UV - UV -Face 50 -UV Count: 3 - UV - UV - UV -Face 51 -UV Count: 3 - UV - UV - UV -Face 52 -UV Count: 3 - UV - UV - UV -Face 53 -UV Count: 3 - UV - UV - UV -Face 54 -UV Count: 3 - UV - UV - UV -Face 55 -UV Count: 3 - UV - UV - UV -Face 56 -UV Count: 3 - UV - UV - UV -Face 57 -UV Count: 3 - UV - UV - UV -Face 58 -UV Count: 3 - UV - UV - UV -Face 59 -UV Count: 3 - UV - UV - UV -Face 60 -UV Count: 3 - UV - UV - UV -Face 61 -UV Count: 3 - UV - UV - UV -Face 62 -UV Count: 3 - UV - UV - UV -Face 63 -UV Count: 3 - UV - UV - UV -Face 64 -UV Count: 3 - UV - UV - UV -Face 65 -UV Count: 3 - UV - UV - UV -Face 66 -UV Count: 3 - UV - UV - UV -Face 67 -UV Count: 3 - UV - UV - UV -Face 68 -UV Count: 3 - UV - UV - UV -Face 69 -UV Count: 3 - UV - UV - UV -Face 70 -UV Count: 3 - UV - UV - UV -Face 71 -UV Count: 3 - UV - UV - UV -Face 72 -UV Count: 3 - UV - UV - UV -Face 73 -UV Count: 3 - UV - UV - UV -Face 74 -UV Count: 3 - UV - UV - UV -Face 75 -UV Count: 3 - UV - UV - UV -Face 76 -UV Count: 3 - UV - UV - UV -Face 77 -UV Count: 3 - UV - UV - UV -Face 78 -UV Count: 3 - UV - UV - UV -Face 79 -UV Count: 3 - UV - UV - UV -Face 80 -UV Count: 3 - UV - UV - UV -Face 81 -UV Count: 3 - UV - UV - UV -Face 82 -UV Count: 3 - UV - UV - UV -Face 83 -UV Count: 3 - UV - UV - UV -Face 84 -UV Count: 3 - UV - UV - UV -Face 85 -UV Count: 3 - UV - UV - UV -Face 86 -UV Count: 3 - UV - UV - UV -Face 87 -UV Count: 3 - UV - UV - UV -Face 88 -UV Count: 3 - UV - UV - UV -Face 89 -UV Count: 3 - UV - UV - UV -Face 90 -UV Count: 3 - UV - UV - UV -Face 91 -UV Count: 3 - UV - UV - UV -Face 92 -UV Count: 3 - UV - UV - UV -Face 93 -UV Count: 3 - UV - UV - UV -Face 94 -UV Count: 3 - UV - UV - UV -Face 95 -UV Count: 3 - UV - UV - UV -Face 96 -UV Count: 3 - UV - UV - UV -Face 97 -UV Count: 3 - UV - UV - UV -Face 98 -UV Count: 3 - UV - UV - UV -Face 99 -UV Count: 3 - UV - UV - UV -Face 100 -UV Count: 3 - UV - UV - UV -Face 101 -UV Count: 3 - UV - UV - UV -Face 102 -UV Count: 3 - UV - UV - UV -Face 103 -UV Count: 3 - UV - UV - UV -Face 104 -UV Count: 3 - UV - UV - UV -Face 105 -UV Count: 3 - UV - UV - UV -Face 106 -UV Count: 3 - UV - UV - UV -Face 107 -UV Count: 3 - UV - UV - UV -Face 108 -UV Count: 3 - UV - UV - UV -Face 109 -UV Count: 3 - UV - UV - UV -Face 110 -UV Count: 3 - UV - UV - UV -Face 111 -UV Count: 3 - UV - UV - UV -Face 112 -UV Count: 3 - UV - UV - UV -Face 113 -UV Count: 3 - UV - UV - UV -Face 114 -UV Count: 3 - UV - UV - UV -Face 115 -UV Count: 3 - UV - UV - UV -Face 116 -UV Count: 3 - UV - UV - UV -Face 117 -UV Count: 3 - UV - UV - UV -Face 118 -UV Count: 3 - UV - UV - UV -Face 119 -UV Count: 3 - UV - UV - UV -Face 120 -UV Count: 3 - UV - UV - UV -Face 121 -UV Count: 3 - UV - UV - UV -Face 122 -UV Count: 3 - UV - UV - UV -Face 123 -UV Count: 3 - UV - UV - UV -Face 124 -UV Count: 3 - UV - UV - UV -Face 125 -UV Count: 3 - UV - UV - UV -Face 126 -UV Count: 3 - UV - UV - UV -Face 127 -UV Count: 3 - UV - UV - UV -Face 128 -UV Count: 3 - UV - UV - UV -Face 129 -UV Count: 3 - UV - UV - UV -Face 130 -UV Count: 3 - UV - UV - UV -Face 131 -UV Count: 3 - UV - UV - UV -Face 132 -UV Count: 3 - UV - UV - UV -Face 133 -UV Count: 3 - UV - UV - UV -Face 134 -UV Count: 3 - UV - UV - UV -Face 135 -UV Count: 3 - UV - UV - UV -Face 136 -UV Count: 3 - UV - UV - UV -Face 137 -UV Count: 3 - UV - UV - UV -Face 138 -UV Count: 3 - UV - UV - UV -Face 139 -UV Count: 3 - UV - UV - UV -Face 140 -UV Count: 3 - UV - UV - UV -Face 141 -UV Count: 3 - UV - UV - UV -Face 142 -UV Count: 3 - UV - UV - UV -Face 143 -UV Count: 3 - UV - UV - UV -Face 144 -UV Count: 3 - UV - UV - UV -Face 145 -UV Count: 3 - UV - UV - UV -Face 146 -UV Count: 3 - UV - UV - UV -Face 147 -UV Count: 3 - UV - UV - UV -Face 148 -UV Count: 3 - UV - UV - UV -Face 149 -UV Count: 3 - UV - UV - UV -Face 150 -UV Count: 3 - UV - UV - UV -Face 151 -UV Count: 3 - UV - UV - UV -Face 152 -UV Count: 3 - UV - UV - UV -Face 153 -UV Count: 3 - UV - UV - UV -Face 154 -UV Count: 3 - UV - UV - UV -Face 155 -UV Count: 3 - UV - UV - UV -Face 156 -UV Count: 3 - UV - UV - UV -Face 157 -UV Count: 3 - UV - UV - UV -Face 158 -UV Count: 3 - UV - UV - UV -Face 159 -UV Count: 3 - UV - UV - UV -Face 160 -UV Count: 3 - UV - UV - UV -Face 161 -UV Count: 3 - UV - UV - UV -Face 162 -UV Count: 3 - UV - UV - UV -Face 163 -UV Count: 3 - UV - UV - UV -Face 164 -UV Count: 3 - UV - UV - UV -Face 165 -UV Count: 3 - UV - UV - UV -Face 166 -UV Count: 3 - UV - UV - UV -Face 167 -UV Count: 3 - UV - UV - UV -Face 168 -UV Count: 3 - UV - UV - UV -Face 169 -UV Count: 3 - UV - UV - UV -Face 170 -UV Count: 3 - UV - UV - UV -Face 171 -UV Count: 3 - UV - UV - UV -Face 172 -UV Count: 3 - UV - UV - UV -Face 173 -UV Count: 3 - UV - UV - UV -Face 174 -UV Count: 3 - UV - UV - UV -Face 175 -UV Count: 3 - UV - UV - UV -Face 176 -UV Count: 3 - UV - UV - UV -Face 177 -UV Count: 3 - UV - UV - UV -Face 178 -UV Count: 3 - UV - UV - UV -Face 179 -UV Count: 3 - UV - UV - UV -Face 180 -UV Count: 3 - UV - UV - UV -Face 181 -UV Count: 3 - UV - UV - UV -Face 182 -UV Count: 3 - UV - UV - UV -Face 183 -UV Count: 3 - UV - UV - UV -Face 184 -UV Count: 3 - UV - UV - UV -Face 185 -UV Count: 3 - UV - UV - UV -Face 186 -UV Count: 3 - UV - UV - UV -Face 187 -UV Count: 3 - UV - UV - UV -Face 188 -UV Count: 3 - UV - UV - UV -Face 189 -UV Count: 3 - UV - UV - UV -Face 190 -UV Count: 3 - UV - UV - UV -Face 191 -UV Count: 3 - UV - UV - UV -Face 192 -UV Count: 3 - UV - UV - UV -Face 193 -UV Count: 3 - UV - UV - UV -Face 194 -UV Count: 3 - UV - UV - UV -Face 195 -UV Count: 3 - UV - UV - UV -Face 196 -UV Count: 3 - UV - UV - UV -Face 197 -UV Count: 3 - UV - UV - UV -Face 198 -UV Count: 3 - UV - UV - UV -Face 199 -UV Count: 3 - UV - UV - UV -Face 200 -UV Count: 3 - UV - UV - UV -Face 201 -UV Count: 3 - UV - UV - UV -Face 202 -UV Count: 3 - UV - UV - UV -Face 203 -UV Count: 3 - UV - UV - UV -Face 204 -UV Count: 3 - UV - UV - UV -Face 205 -UV Count: 3 - UV - UV - UV -Face 206 -UV Count: 3 - UV - UV - UV -Face 207 -UV Count: 3 - UV - UV - UV -Face 208 -UV Count: 3 - UV - UV - UV -Face 209 -UV Count: 3 - UV - UV - UV -Face 210 -UV Count: 3 - UV - UV - UV -Face 211 -UV Count: 3 - UV - UV - UV -Face 212 -UV Count: 3 - UV - UV - UV -Face 213 -UV Count: 3 - UV - UV - UV -Face 214 -UV Count: 3 - UV - UV - UV -Face 215 -UV Count: 3 - UV - UV - UV -Face 216 -UV Count: 3 - UV - UV - UV -Face 217 -UV Count: 3 - UV - UV - UV -Face 218 -UV Count: 3 - UV - UV - UV -Face 219 -UV Count: 3 - UV - UV - UV -Face 220 -UV Count: 3 - UV - UV - UV -Face 221 -UV Count: 3 - UV - UV - UV -Face 222 -UV Count: 3 - UV - UV - UV -Face 223 -UV Count: 3 - UV - UV - UV -Face 224 -UV Count: 3 - UV - UV - UV -Face 225 -UV Count: 3 - UV - UV - UV -Face 226 -UV Count: 3 - UV - UV - UV -Face 227 -UV Count: 3 - UV - UV - UV -Face 228 -UV Count: 3 - UV - UV - UV -Face 229 -UV Count: 3 - UV - UV - UV -Face 230 -UV Count: 3 - UV - UV - UV -Face 231 -UV Count: 3 - UV - UV - UV -Face 232 -UV Count: 3 - UV - UV - UV -Face 233 -UV Count: 3 - UV - UV - UV -Face 234 -UV Count: 3 - UV - UV - UV -Face 235 -UV Count: 3 - UV - UV - UV -Face 236 -UV Count: 3 - UV - UV - UV -Face 237 -UV Count: 3 - UV - UV - UV -Face 238 -UV Count: 3 - UV - UV - UV -Face 239 -UV Count: 3 - UV - UV - UV -Face 240 -UV Count: 3 - UV - UV - UV -Face 241 -UV Count: 3 - UV - UV - UV -Face 242 -UV Count: 3 - UV - UV - UV -Face 243 -UV Count: 3 - UV - UV - UV -Face 244 -UV Count: 3 - UV - UV - UV -Face 245 -UV Count: 3 - UV - UV - UV -Face 246 -UV Count: 3 - UV - UV - UV -Face 247 -UV Count: 3 - UV - UV - UV -Face 248 -UV Count: 3 - UV - UV - UV -Face 249 -UV Count: 3 - UV - UV - UV -Face 250 -UV Count: 3 - UV - UV - UV -Face 251 -UV Count: 3 - UV - UV - UV -Face 252 -UV Count: 3 - UV - UV - UV -Face 253 -UV Count: 3 - UV - UV - UV -Face 254 -UV Count: 3 - UV - UV - UV -Face 255 -UV Count: 3 - UV - UV - UV -Face 256 -UV Count: 3 - UV - UV - UV -Face 257 -UV Count: 3 - UV - UV - UV -Face 258 -UV Count: 3 - UV - UV - UV -Face 259 -UV Count: 3 - UV - UV - UV -Face 260 -UV Count: 3 - UV - UV - UV -Face 261 -UV Count: 3 - UV - UV - UV -Face 262 -UV Count: 3 - UV - UV - UV -Face 263 -UV Count: 3 - UV - UV - UV -Face 264 -UV Count: 3 - UV - UV - UV -Face 265 -UV Count: 3 - UV - UV - UV -Face 266 -UV Count: 3 - UV - UV - UV -Face 267 -UV Count: 3 - UV - UV - UV -Face 268 -UV Count: 3 - UV - UV - UV -Face 269 -UV Count: 3 - UV - UV - UV -Face 270 -UV Count: 3 - UV - UV - UV -Face 271 -UV Count: 3 - UV - UV - UV -Face 272 -UV Count: 3 - UV - UV - UV -Face 273 -UV Count: 3 - UV - UV - UV -Face 274 -UV Count: 3 - UV - UV - UV -Face 275 -UV Count: 3 - UV - UV - UV -Face 276 -UV Count: 3 - UV - UV - UV -Face 277 -UV Count: 3 - UV - UV - UV -Face 278 -UV Count: 3 - UV - UV - UV -Face 279 -UV Count: 3 - UV - UV - UV -Face 280 -UV Count: 3 - UV - UV - UV -Face 281 -UV Count: 3 - UV - UV - UV -Face 282 -UV Count: 3 - UV - UV - UV -Face 283 -UV Count: 3 - UV - UV - UV -Face 284 -UV Count: 3 - UV - UV - UV -Face 285 -UV Count: 3 - UV - UV - UV -Face 286 -UV Count: 3 - UV - UV - UV -Face 287 -UV Count: 3 - UV - UV - UV -Face 288 -UV Count: 3 - UV - UV - UV -Face 289 -UV Count: 3 - UV - UV - UV -Face 290 -UV Count: 3 - UV - UV - UV -Face 291 -UV Count: 3 - UV - UV - UV -Face 292 -UV Count: 3 - UV - UV - UV -Face 293 -UV Count: 3 - UV - UV - UV -Face 294 -UV Count: 3 - UV - UV - UV -Face 295 -UV Count: 3 - UV - UV - UV -Face 296 -UV Count: 3 - UV - UV - UV -Face 297 -UV Count: 3 - UV - UV - UV -Face 298 -UV Count: 3 - UV - UV - UV -Face 299 -UV Count: 3 - UV - UV - UV -Face 300 -UV Count: 3 - UV - UV - UV -Face 301 -UV Count: 3 - UV - UV - UV -Face 302 -UV Count: 3 - UV - UV - UV -Face 303 -UV Count: 3 - UV - UV - UV -Face 304 -UV Count: 3 - UV - UV - UV -Face 305 -UV Count: 3 - UV - UV - UV -Face 306 -UV Count: 3 - UV - UV - UV -Face 307 -UV Count: 3 - UV - UV - UV -Face 308 -UV Count: 3 - UV - UV - UV -Face 309 -UV Count: 3 - UV - UV - UV -Face 310 -UV Count: 3 - UV - UV - UV -Face 311 -UV Count: 3 - UV - UV - UV -Face 312 -UV Count: 3 - UV - UV - UV -Face 313 -UV Count: 3 - UV - UV - UV -Face 314 -UV Count: 3 - UV - UV - UV -Face 315 -UV Count: 3 - UV - UV - UV -Face 316 -UV Count: 3 - UV - UV - UV -Face 317 -UV Count: 3 - UV - UV - UV -Face 318 -UV Count: 3 - UV - UV - UV -Face 319 -UV Count: 3 - UV - UV - UV -Face 320 -UV Count: 3 - UV - UV - UV -Face 321 -UV Count: 3 - UV - UV - UV -Face 322 -UV Count: 3 - UV - UV - UV -Face 323 -UV Count: 3 - UV - UV - UV -Face 324 -UV Count: 3 - UV - UV - UV -Face 325 -UV Count: 3 - UV - UV - UV -Face 326 -UV Count: 3 - UV - UV - UV -Face 327 -UV Count: 3 - UV - UV - UV -Face 328 -UV Count: 3 - UV - UV - UV -Face 329 -UV Count: 3 - UV - UV - UV -Face 330 -UV Count: 3 - UV - UV - UV -Face 331 -UV Count: 3 - UV - UV - UV -Face 332 -UV Count: 3 - UV - UV - UV -Face 333 -UV Count: 3 - UV - UV - UV -Face 334 -UV Count: 3 - UV - UV - UV -Face 335 -UV Count: 3 - UV - UV - UV -Face 336 -UV Count: 3 - UV - UV - UV -Face 337 -UV Count: 3 - UV - UV - UV -Face 338 -UV Count: 3 - UV - UV - UV -Face 339 -UV Count: 3 - UV - UV - UV -Face 340 -UV Count: 3 - UV - UV - UV -Face 341 -UV Count: 3 - UV - UV - UV -Face 342 -UV Count: 3 - UV - UV - UV -Face 343 -UV Count: 3 - UV - UV - UV -Face 344 -UV Count: 3 - UV - UV - UV -Face 345 -UV Count: 3 - UV - UV - UV -Face 346 -UV Count: 3 - UV - UV - UV -Face 347 -UV Count: 3 - UV - UV - UV -Face 348 -UV Count: 3 - UV - UV - UV -Face 349 -UV Count: 3 - UV - UV - UV -Face 350 -UV Count: 3 - UV - UV - UV -Face 351 -UV Count: 3 - UV - UV - UV -Face 352 -UV Count: 3 - UV - UV - UV -Face 353 -UV Count: 3 - UV - UV - UV -Face 354 -UV Count: 3 - UV - UV - UV -Face 355 -UV Count: 3 - UV - UV - UV -Face 356 -UV Count: 3 - UV - UV - UV -Face 357 -UV Count: 3 - UV - UV - UV -Face 358 -UV Count: 3 - UV - UV - UV -Face 359 -UV Count: 3 - UV - UV - UV -Face 360 -UV Count: 3 - UV - UV - UV -Face 361 -UV Count: 3 - UV - UV - UV -Face 362 -UV Count: 3 - UV - UV - UV -Face 363 -UV Count: 3 - UV - UV - UV -Face 364 -UV Count: 3 - UV - UV - UV -Face 365 -UV Count: 3 - UV - UV - UV -Face 366 -UV Count: 3 - UV - UV - UV -Face 367 -UV Count: 3 - UV - UV - UV -Face 368 -UV Count: 3 - UV - UV - UV -Face 369 -UV Count: 3 - UV - UV - UV -Face 370 -UV Count: 3 - UV - UV - UV -Face 371 -UV Count: 3 - UV - UV - UV -Face 372 -UV Count: 3 - UV - UV - UV -Face 373 -UV Count: 3 - UV - UV - UV -Face 374 -UV Count: 3 - UV - UV - UV -Face 375 -UV Count: 3 - UV - UV - UV -Face 376 -UV Count: 3 - UV - UV - UV -Face 377 -UV Count: 3 - UV - UV - UV -Face 378 -UV Count: 3 - UV - UV - UV -Face 379 -UV Count: 3 - UV - UV - UV -Face 380 -UV Count: 3 - UV - UV - UV -Face 381 -UV Count: 3 - UV - UV - UV -Face 382 -UV Count: 3 - UV - UV - UV -Face 383 -UV Count: 3 - UV - UV - UV -Face 384 -UV Count: 3 - UV - UV - UV -Face 385 -UV Count: 3 - UV - UV - UV -Face 386 -UV Count: 3 - UV - UV - UV -Face 387 -UV Count: 3 - UV - UV - UV -Face 388 -UV Count: 3 - UV - UV - UV -Face 389 -UV Count: 3 - UV - UV - UV -Face 390 -UV Count: 3 - UV - UV - UV -Face 391 -UV Count: 3 - UV - UV - UV -Face 392 -UV Count: 3 - UV - UV - UV -Face 393 -UV Count: 3 - UV - UV - UV -Face 394 -UV Count: 3 - UV - UV - UV -Face 395 -UV Count: 3 - UV - UV - UV -Face 396 -UV Count: 3 - UV - UV - UV -Face 397 -UV Count: 3 - UV - UV - UV -Face 398 -UV Count: 3 - UV - UV - UV -Face 399 -UV Count: 3 - UV - UV - UV -Face 400 -UV Count: 3 - UV - UV - UV -Face 401 -UV Count: 3 - UV - UV - UV -Face 402 -UV Count: 3 - UV - UV - UV -Face 403 -UV Count: 3 - UV - UV - UV -Face 404 -UV Count: 3 - UV - UV - UV -Face 405 -UV Count: 3 - UV - UV - UV -Face 406 -UV Count: 3 - UV - UV - UV -Face 407 -UV Count: 3 - UV - UV - UV -Face 408 -UV Count: 3 - UV - UV - UV -Face 409 -UV Count: 3 - UV - UV - UV -Face 410 -UV Count: 3 - UV - UV - UV -Face 411 -UV Count: 3 - UV - UV - UV -Face 412 -UV Count: 3 - UV - UV - UV -Face 413 -UV Count: 3 - UV - UV - UV -Face 414 -UV Count: 3 - UV - UV - UV -Face 415 -UV Count: 3 - UV - UV - UV -Face 416 -UV Count: 3 - UV - UV - UV -Face 417 -UV Count: 3 - UV - UV - UV -Face 418 -UV Count: 3 - UV - UV - UV -Face 419 -UV Count: 3 - UV - UV - UV -Face 420 -UV Count: 3 - UV - UV - UV -Face 421 -UV Count: 3 - UV - UV - UV -Face 422 -UV Count: 3 - UV - UV - UV -Face 423 -UV Count: 3 - UV - UV - UV -Face 424 -UV Count: 3 - UV - UV - UV -Face 425 -UV Count: 3 - UV - UV - UV -Face 426 -UV Count: 3 - UV - UV - UV -Face 427 -UV Count: 3 - UV - UV - UV -Face 428 -UV Count: 3 - UV - UV - UV -Face 429 -UV Count: 3 - UV - UV - UV -Face 430 -UV Count: 3 - UV - UV - UV -Face 431 -UV Count: 3 - UV - UV - UV -Face 432 -UV Count: 3 - UV - UV - UV -Face 433 -UV Count: 3 - UV - UV - UV -Face 434 -UV Count: 3 - UV - UV - UV -Face 435 -UV Count: 3 - UV - UV - UV -Face 436 -UV Count: 3 - UV - UV - UV -Face 437 -UV Count: 3 - UV - UV - UV -Face 438 -UV Count: 3 - UV - UV - UV -Face 439 -UV Count: 3 - UV - UV - UV -Face 440 -UV Count: 3 - UV - UV - UV -Face 441 -UV Count: 3 - UV - UV - UV -Face 442 -UV Count: 3 - UV - UV - UV -Face 443 -UV Count: 3 - UV - UV - UV -Face 444 -UV Count: 3 - UV - UV - UV -Face 445 -UV Count: 3 - UV - UV - UV -Face 446 -UV Count: 3 - UV - UV - UV -Face 447 -UV Count: 3 - UV - UV - UV -Face 448 -UV Count: 3 - UV - UV - UV -Face 449 -UV Count: 3 - UV - UV - UV -Face 450 -UV Count: 3 - UV - UV - UV -Face 451 -UV Count: 3 - UV - UV - UV -Face 452 -UV Count: 3 - UV - UV - UV -Face 453 -UV Count: 3 - UV - UV - UV -Face 454 -UV Count: 3 - UV - UV - UV -Face 455 -UV Count: 3 - UV - UV - UV -Face 456 -UV Count: 3 - UV - UV - UV -Face 457 -UV Count: 3 - UV - UV - UV -Face 458 -UV Count: 3 - UV - UV - UV -Face 459 -UV Count: 3 - UV - UV - UV -Face 460 -UV Count: 3 - UV - UV - UV -Face 461 -UV Count: 3 - UV - UV - UV -Face 462 -UV Count: 3 - UV - UV - UV -Face 463 -UV Count: 3 - UV - UV - UV -Face 464 -UV Count: 3 - UV - UV - UV -Face 465 -UV Count: 3 - UV - UV - UV -Face 466 -UV Count: 3 - UV - UV - UV -Face 467 -UV Count: 3 - UV - UV - UV -Face 468 -UV Count: 3 - UV - UV - UV -Face 469 -UV Count: 3 - UV - UV - UV -Face 470 -UV Count: 3 - UV - UV - UV -Face 471 -UV Count: 3 - UV - UV - UV -Face 472 -UV Count: 3 - UV - UV - UV -Face 473 -UV Count: 3 - UV - UV - UV -Face 474 -UV Count: 3 - UV - UV - UV -Face 475 -UV Count: 3 - UV - UV - UV -Face 476 -UV Count: 3 - UV - UV - UV -Face 477 -UV Count: 3 - UV - UV - UV -Face 478 -UV Count: 3 - UV - UV - UV -Face 479 -UV Count: 3 - UV - UV - UV -Face 480 -UV Count: 3 - UV - UV - UV -Face 481 -UV Count: 3 - UV - UV - UV -Face 482 -UV Count: 3 - UV - UV - UV -Face 483 -UV Count: 3 - UV - UV - UV -Face 484 -UV Count: 3 - UV - UV - UV -Face 485 -UV Count: 3 - UV - UV - UV -Face 486 -UV Count: 3 - UV - UV - UV -Face 487 -UV Count: 3 - UV - UV - UV -Face 488 -UV Count: 3 - UV - UV - UV -Face 489 -UV Count: 3 - UV - UV - UV -Face 490 -UV Count: 3 - UV - UV - UV -Face 491 -UV Count: 3 - UV - UV - UV -Face 492 -UV Count: 3 - UV - UV - UV -Face 493 -UV Count: 3 - UV - UV - UV -Face 494 -UV Count: 3 - UV - UV - UV -Face 495 -UV Count: 3 - UV - UV - UV -Face 496 -UV Count: 3 - UV - UV - UV -Face 497 -UV Count: 3 - UV - UV - UV -Face 498 -UV Count: 3 - UV - UV - UV -Face 499 -UV Count: 3 - UV - UV - UV -Face 500 -UV Count: 3 - UV - UV - UV -Face 501 -UV Count: 3 - UV - UV - UV -Face 502 -UV Count: 3 - UV - UV - UV -Face 503 -UV Count: 3 - UV - UV - UV -Face 504 -UV Count: 3 - UV - UV - UV -Face 505 -UV Count: 3 - UV - UV - UV -Face 506 -UV Count: 3 - UV - UV - UV -Face 507 -UV Count: 3 - UV - UV - UV -Face 508 -UV Count: 3 - UV - UV - UV -Face 509 -UV Count: 3 - UV - UV - UV -Face 510 -UV Count: 3 - UV - UV - UV -Face 511 -UV Count: 3 - UV - UV - UV -Face 512 -UV Count: 3 - UV - UV - UV -Face 513 -UV Count: 3 - UV - UV - UV -Face 514 -UV Count: 3 - UV - UV - UV -Face 515 -UV Count: 3 - UV - UV - UV -Face 516 -UV Count: 3 - UV - UV - UV -Face 517 -UV Count: 3 - UV - UV - UV -Face 518 -UV Count: 3 - UV - UV - UV -Face 519 -UV Count: 3 - UV - UV - UV -Face 520 -UV Count: 3 - UV - UV - UV -Face 521 -UV Count: 3 - UV - UV - UV -Face 522 -UV Count: 3 - UV - UV - UV -Face 523 -UV Count: 3 - UV - UV - UV -Face 524 -UV Count: 3 - UV - UV - UV -Face 525 -UV Count: 3 - UV - UV - UV -Face 526 -UV Count: 3 - UV - UV - UV -Face 527 -UV Count: 3 - UV - UV - UV -Face 528 -UV Count: 3 - UV - UV - UV -Face 529 -UV Count: 3 - UV - UV - UV -Face 530 -UV Count: 3 - UV - UV - UV -Face 531 -UV Count: 3 - UV - UV - UV -Face 532 -UV Count: 3 - UV - UV - UV -Face 533 -UV Count: 3 - UV - UV - UV -Face 534 -UV Count: 3 - UV - UV - UV -Face 535 -UV Count: 3 - UV - UV - UV -Face 536 -UV Count: 3 - UV - UV - UV -Face 537 -UV Count: 3 - UV - UV - UV -Face 538 -UV Count: 3 - UV - UV - UV -Face 539 -UV Count: 3 - UV - UV - UV -Face 540 -UV Count: 3 - UV - UV - UV -Face 541 -UV Count: 3 - UV - UV - UV -Face 542 -UV Count: 3 - UV - UV - UV -Face 543 -UV Count: 3 - UV - UV - UV -Face 544 -UV Count: 3 - UV - UV - UV -Face 545 -UV Count: 3 - UV - UV - UV -Face 546 -UV Count: 3 - UV - UV - UV -Face 547 -UV Count: 3 - UV - UV - UV -Face 548 -UV Count: 3 - UV - UV - UV -Face 549 -UV Count: 3 - UV - UV - UV -Face 550 -UV Count: 3 - UV - UV - UV -Face 551 -UV Count: 3 - UV - UV - UV -Face 552 -UV Count: 3 - UV - UV - UV -Face 553 -UV Count: 3 - UV - UV - UV -Face 554 -UV Count: 3 - UV - UV - UV -Face 555 -UV Count: 3 - UV - UV - UV -Face 556 -UV Count: 3 - UV - UV - UV -Face 557 -UV Count: 3 - UV - UV - UV -Face 558 -UV Count: 3 - UV - UV - UV -Face 559 -UV Count: 3 - UV - UV - UV -Face 560 -UV Count: 3 - UV - UV - UV -Face 561 -UV Count: 3 - UV - UV - UV -Face 562 -UV Count: 3 - UV - UV - UV -Face 563 -UV Count: 3 - UV - UV - UV -Face 564 -UV Count: 3 - UV - UV - UV -Face 565 -UV Count: 3 - UV - UV - UV -Face 566 -UV Count: 3 - UV - UV - UV -Face 567 -UV Count: 3 - UV - UV - UV -Face 568 -UV Count: 3 - UV - UV - UV -Face 569 -UV Count: 3 - UV - UV - UV -Face 570 -UV Count: 3 - UV - UV - UV -Face 571 -UV Count: 3 - UV - UV - UV -Face 572 -UV Count: 3 - UV - UV - UV -Face 573 -UV Count: 3 - UV - UV - UV -Face 574 -UV Count: 3 - UV - UV - UV -Face 575 -UV Count: 3 - UV - UV - UV -Face 576 -UV Count: 3 - UV - UV - UV -Face 577 -UV Count: 3 - UV - UV - UV -Face 578 -UV Count: 3 - UV - UV - UV -Face 579 -UV Count: 3 - UV - UV - UV -Face 580 -UV Count: 3 - UV - UV - UV -Face 581 -UV Count: 3 - UV - UV - UV -Face 582 -UV Count: 3 - UV - UV - UV -Face 583 -UV Count: 3 - UV - UV - UV -Face 584 -UV Count: 3 - UV - UV - UV -Face 585 -UV Count: 3 - UV - UV - UV -Face 586 -UV Count: 3 - UV - UV - UV -Face 587 -UV Count: 3 - UV - UV - UV -Face 588 -UV Count: 3 - UV - UV - UV -Face 589 -UV Count: 3 - UV - UV - UV -Face 590 -UV Count: 3 - UV - UV - UV -Face 591 -UV Count: 3 - UV - UV - UV -Face 592 -UV Count: 3 - UV - UV - UV -Face 593 -UV Count: 3 - UV - UV - UV -Face 594 -UV Count: 3 - UV - UV - UV -Face 595 -UV Count: 3 - UV - UV - UV -Face 596 -UV Count: 3 - UV - UV - UV -Face 597 -UV Count: 3 - UV - UV - UV -Face 598 -UV Count: 3 - UV - UV - UV -Face 599 -UV Count: 3 - UV - UV - UV -Face 600 -UV Count: 3 - UV - UV - UV -Face 601 -UV Count: 3 - UV - UV - UV -Face 602 -UV Count: 3 - UV - UV - UV -Face 603 -UV Count: 3 - UV - UV - UV -Face 604 -UV Count: 3 - UV - UV - UV -Face 605 -UV Count: 3 - UV - UV - UV -Face 606 -UV Count: 3 - UV - UV - UV -Face 607 -UV Count: 3 - UV - UV - UV -Face 608 -UV Count: 3 - UV - UV - UV -Face 609 -UV Count: 3 - UV - UV - UV -Face 610 -UV Count: 3 - UV - UV - UV -Face 611 -UV Count: 3 - UV - UV - UV -Face 612 -UV Count: 3 - UV - UV - UV -Face 613 -UV Count: 3 - UV - UV - UV -Face 614 -UV Count: 3 - UV - UV - UV -Face 615 -UV Count: 3 - UV - UV - UV -Face 616 -UV Count: 3 - UV - UV - UV -Face 617 -UV Count: 3 - UV - UV - UV -Face 618 -UV Count: 3 - UV - UV - UV -Face 619 -UV Count: 3 - UV - UV - UV -Face 620 -UV Count: 3 - UV - UV - UV -Face 621 -UV Count: 3 - UV - UV - UV -Face 622 -UV Count: 3 - UV - UV - UV -Face 623 -UV Count: 3 - UV - UV - UV -Face 624 -UV Count: 3 - UV - UV - UV -Face 625 -UV Count: 3 - UV - UV - UV -Face 626 -UV Count: 3 - UV - UV - UV -Face 627 -UV Count: 3 - UV - UV - UV -Face 628 -UV Count: 3 - UV - UV - UV -Face 629 -UV Count: 3 - UV - UV - UV -Face 630 -UV Count: 3 - UV - UV - UV -Face 631 -UV Count: 3 - UV - UV - UV -Face 632 -UV Count: 3 - UV - UV - UV -Face 633 -UV Count: 3 - UV - UV - UV -Face 634 -UV Count: 3 - UV - UV - UV -Face 635 -UV Count: 3 - UV - UV - UV -Face 636 -UV Count: 3 - UV - UV - UV -Face 637 -UV Count: 3 - UV - UV - UV -Face 638 -UV Count: 3 - UV - UV - UV -Face 639 -UV Count: 3 - UV - UV - UV -Face 640 -UV Count: 3 - UV - UV - UV -Face 641 -UV Count: 3 - UV - UV - UV -Face 642 -UV Count: 3 - UV - UV - UV -Face 643 -UV Count: 3 - UV - UV - UV -Face 644 -UV Count: 3 - UV - UV - UV -Face 645 -UV Count: 3 - UV - UV - UV -Face 646 -UV Count: 3 - UV - UV - UV -Face 647 -UV Count: 3 - UV - UV - UV -Face 648 -UV Count: 3 - UV - UV - UV -Face 649 -UV Count: 3 - UV - UV - UV -Face 650 -UV Count: 3 - UV - UV - UV -Face 651 -UV Count: 3 - UV - UV - UV -Face 652 -UV Count: 3 - UV - UV - UV -Face 653 -UV Count: 3 - UV - UV - UV -Face 654 -UV Count: 3 - UV - UV - UV -Face 655 -UV Count: 3 - UV - UV - UV -Face 656 -UV Count: 3 - UV - UV - UV -Face 657 -UV Count: 3 - UV - UV - UV -Face 658 -UV Count: 3 - UV - UV - UV -Face 659 -UV Count: 3 - UV - UV - UV -Face 660 -UV Count: 3 - UV - UV - UV -Face 661 -UV Count: 3 - UV - UV - UV -Face 662 -UV Count: 3 - UV - UV - UV -Face 663 -UV Count: 3 - UV - UV - UV -Face 664 -UV Count: 3 - UV - UV - UV -Face 665 -UV Count: 3 - UV - UV - UV -Face 666 -UV Count: 3 - UV - UV - UV -Face 667 -UV Count: 3 - UV - UV - UV -Face 668 -UV Count: 3 - UV - UV - UV -Face 669 -UV Count: 3 - UV - UV - UV -Face 670 -UV Count: 3 - UV - UV - UV -Face 671 -UV Count: 3 - UV - UV - UV -Face 672 -UV Count: 3 - UV - UV - UV -Face 673 -UV Count: 3 - UV - UV - UV -Face 674 -UV Count: 3 - UV - UV - UV -Face 675 -UV Count: 3 - UV - UV - UV -Face 676 -UV Count: 3 - UV - UV - UV -Face 677 -UV Count: 3 - UV - UV - UV -Face 678 -UV Count: 3 - UV - UV - UV -Face 679 -UV Count: 3 - UV - UV - UV -Face 680 -UV Count: 3 - UV - UV - UV -Face 681 -UV Count: 3 - UV - UV - UV -Face 682 -UV Count: 3 - UV - UV - UV -Face 683 -UV Count: 3 - UV - UV - UV -Face 684 -UV Count: 3 - UV - UV - UV -Face 685 -UV Count: 3 - UV - UV - UV -Face 686 -UV Count: 3 - UV - UV - UV -Face 687 -UV Count: 3 - UV - UV - UV -Face 688 -UV Count: 3 - UV - UV - UV -Face 689 -UV Count: 3 - UV - UV - UV -Face 690 -UV Count: 3 - UV - UV - UV -Face 691 -UV Count: 3 - UV - UV - UV -Face 692 -UV Count: 3 - UV - UV - UV -Face 693 -UV Count: 3 - UV - UV - UV -Face 694 -UV Count: 3 - UV - UV - UV -Face 695 -UV Count: 3 - UV - UV - UV -Face 696 -UV Count: 3 - UV - UV - UV -Face 697 -UV Count: 3 - UV - UV - UV -Face 698 -UV Count: 3 - UV - UV - UV -Face 699 -UV Count: 3 - UV - UV - UV -Face 700 -UV Count: 3 - UV - UV - UV -Face 701 -UV Count: 3 - UV - UV - UV -Face 702 -UV Count: 3 - UV - UV - UV -Face 703 -UV Count: 3 - UV - UV - UV -Face 704 -UV Count: 3 - UV - UV - UV -Face 705 -UV Count: 3 - UV - UV - UV -Face 706 -UV Count: 3 - UV - UV - UV -Face 707 -UV Count: 3 - UV - UV - UV -Face 708 -UV Count: 3 - UV - UV - UV -Face 709 -UV Count: 3 - UV - UV - UV -Face 710 -UV Count: 3 - UV - UV - UV -Face 711 -UV Count: 3 - UV - UV - UV -Face 712 -UV Count: 3 - UV - UV - UV -Face 713 -UV Count: 3 - UV - UV - UV -Face 714 -UV Count: 3 - UV - UV - UV -Face 715 -UV Count: 3 - UV - UV - UV -Face 716 -UV Count: 3 - UV - UV - UV -Face 717 -UV Count: 3 - UV - UV - UV -Face 718 -UV Count: 3 - UV - UV - UV -Face 719 -UV Count: 3 - UV - UV - UV -Face 720 -UV Count: 3 - UV - UV - UV -Face 721 -UV Count: 3 - UV - UV - UV -Face 722 -UV Count: 3 - UV - UV - UV -Face 723 -UV Count: 3 - UV - UV - UV -Face 724 -UV Count: 3 - UV - UV - UV -Face 725 -UV Count: 3 - UV - UV - UV -Face 726 -UV Count: 3 - UV - UV - UV -Face 727 -UV Count: 3 - UV - UV - UV -Face 728 -UV Count: 3 - UV - UV - UV -Face 729 -UV Count: 3 - UV - UV - UV -Face 730 -UV Count: 3 - UV - UV - UV -Face 731 -UV Count: 3 - UV - UV - UV -Face 732 -UV Count: 3 - UV - UV - UV -Face 733 -UV Count: 3 - UV - UV - UV -Face 734 -UV Count: 3 - UV - UV - UV -Face 735 -UV Count: 3 - UV - UV - UV -Face 736 -UV Count: 3 - UV - UV - UV -Face 737 -UV Count: 3 - UV - UV - UV -Face 738 -UV Count: 3 - UV - UV - UV -Face 739 -UV Count: 3 - UV - UV - UV -Face 740 -UV Count: 3 - UV - UV - UV -Face 741 -UV Count: 3 - UV - UV - UV -Face 742 -UV Count: 3 - UV - UV - UV -Face 743 -UV Count: 3 - UV - UV - UV -Face 744 -UV Count: 3 - UV - UV - UV -Face 745 -UV Count: 3 - UV - UV - UV -Face 746 -UV Count: 3 - UV - UV - UV -Face 747 -UV Count: 3 - UV - UV - UV -Face 748 -UV Count: 3 - UV - UV - UV -Face 749 -UV Count: 3 - UV - UV - UV -Face 750 -UV Count: 3 - UV - UV - UV -Face 751 -UV Count: 3 - UV - UV - UV -Face 752 -UV Count: 3 - UV - UV - UV -Face 753 -UV Count: 3 - UV - UV - UV -Face 754 -UV Count: 3 - UV - UV - UV -Face 755 -UV Count: 3 - UV - UV - UV -Face 756 -UV Count: 3 - UV - UV - UV -Face 757 -UV Count: 3 - UV - UV - UV -Face 758 -UV Count: 3 - UV - UV - UV -Face 759 -UV Count: 3 - UV - UV - UV -Face 760 -UV Count: 3 - UV - UV - UV -Face 761 -UV Count: 3 - UV - UV - UV -Face 762 -UV Count: 3 - UV - UV - UV -Face 763 -UV Count: 3 - UV - UV - UV -Face 764 -UV Count: 3 - UV - UV - UV -Face 765 -UV Count: 3 - UV - UV - UV -Face 766 -UV Count: 3 - UV - UV - UV -Face 767 -UV Count: 3 - UV - UV - UV -Face 768 -UV Count: 3 - UV - UV - UV -Face 769 -UV Count: 3 - UV - UV - UV -Face 770 -UV Count: 3 - UV - UV - UV -Face 771 -UV Count: 3 - UV - UV - UV -Face 772 -UV Count: 3 - UV - UV - UV -Face 773 -UV Count: 3 - UV - UV - UV -Face 774 -UV Count: 3 - UV - UV - UV -Face 775 -UV Count: 3 - UV - UV - UV -Face 776 -UV Count: 3 - UV - UV - UV -Face 777 -UV Count: 3 - UV - UV - UV -Face 778 -UV Count: 3 - UV - UV - UV -Face 779 -UV Count: 3 - UV - UV - UV -Face 780 -UV Count: 3 - UV - UV - UV -Face 781 -UV Count: 3 - UV - UV - UV -Face 782 -UV Count: 3 - UV - UV - UV -Face 783 -UV Count: 3 - UV - UV - UV -Face 784 -UV Count: 3 - UV - UV - UV -Face 785 -UV Count: 3 - UV - UV - UV -Face 786 -UV Count: 3 - UV - UV - UV -Face 787 -UV Count: 3 - UV - UV - UV -Face 788 -UV Count: 3 - UV - UV - UV -Face 789 -UV Count: 3 - UV - UV - UV -Face 790 -UV Count: 3 - UV - UV - UV -Face 791 -UV Count: 3 - UV - UV - UV -Face 792 -UV Count: 3 - UV - UV - UV -Face 793 -UV Count: 3 - UV - UV - UV -Face 794 -UV Count: 3 - UV - UV - UV -Face 795 -UV Count: 3 - UV - UV - UV -Face 796 -UV Count: 3 - UV - UV - UV -Face 797 -UV Count: 3 - UV - UV - UV -Face 798 -UV Count: 3 - UV - UV - UV -Face 799 -UV Count: 3 - UV - UV - UV -Face 800 -UV Count: 3 - UV - UV - UV -Face 801 -UV Count: 3 - UV - UV - UV -Face 802 -UV Count: 3 - UV - UV - UV -Face 803 -UV Count: 3 - UV - UV - UV -Face 804 -UV Count: 3 - UV - UV - UV -Face 805 -UV Count: 3 - UV - UV - UV -Face 806 -UV Count: 3 - UV - UV - UV -Face 807 -UV Count: 3 - UV - UV - UV -Face 808 -UV Count: 3 - UV - UV - UV -Face 809 -UV Count: 3 - UV - UV - UV -Face 810 -UV Count: 3 - UV - UV - UV -Face 811 -UV Count: 3 - UV - UV - UV -Face 812 -UV Count: 3 - UV - UV - UV -Face 813 -UV Count: 3 - UV - UV - UV -Face 814 -UV Count: 3 - UV - UV - UV -Face 815 -UV Count: 3 - UV - UV - UV -Face 816 -UV Count: 3 - UV - UV - UV -Face 817 -UV Count: 3 - UV - UV - UV -Face 818 -UV Count: 3 - UV - UV - UV -Face 819 -UV Count: 3 - UV - UV - UV -Face 820 -UV Count: 3 - UV - UV - UV -Face 821 -UV Count: 3 - UV - UV - UV -Face 822 -UV Count: 3 - UV - UV - UV -Face 823 -UV Count: 3 - UV - UV - UV -Face 824 -UV Count: 3 - UV - UV - UV -Face 825 -UV Count: 3 - UV - UV - UV -Face 826 -UV Count: 3 - UV - UV - UV -Face 827 -UV Count: 3 - UV - UV - UV -Face 828 -UV Count: 3 - UV - UV - UV -Face 829 -UV Count: 3 - UV - UV - UV -Face 830 -UV Count: 3 - UV - UV - UV -Face 831 -UV Count: 3 - UV - UV - UV -Face 832 -UV Count: 3 - UV - UV - UV -Face 833 -UV Count: 3 - UV - UV - UV -Face 834 -UV Count: 3 - UV - UV - UV -Face 835 -UV Count: 3 - UV - UV - UV -Face 836 -UV Count: 3 - UV - UV - UV -Face 837 -UV Count: 3 - UV - UV - UV -Face 838 -UV Count: 3 - UV - UV - UV -Face 839 -UV Count: 3 - UV - UV - UV -Face 840 -UV Count: 3 - UV - UV - UV -Face 841 -UV Count: 3 - UV - UV - UV -Face 842 -UV Count: 3 - UV - UV - UV -Face 843 -UV Count: 3 - UV - UV - UV -Face 844 -UV Count: 3 - UV - UV - UV -Face 845 -UV Count: 3 - UV - UV - UV -Face 846 -UV Count: 3 - UV - UV - UV -Face 847 -UV Count: 3 - UV - UV - UV -Face 848 -UV Count: 3 - UV - UV - UV -Face 849 -UV Count: 3 - UV - UV - UV -Face 850 -UV Count: 3 - UV - UV - UV -Face 851 -UV Count: 3 - UV - UV - UV -Face 852 -UV Count: 3 - UV - UV - UV -Face 853 -UV Count: 3 - UV - UV - UV -Face 854 -UV Count: 3 - UV - UV - UV -Face 855 -UV Count: 3 - UV - UV - UV -Face 856 -UV Count: 3 - UV - UV - UV -Face 857 -UV Count: 3 - UV - UV - UV -Face 858 -UV Count: 3 - UV - UV - UV -Face 859 -UV Count: 3 - UV - UV - UV -Face 860 -UV Count: 3 - UV - UV - UV -Face 861 -UV Count: 3 - UV - UV - UV -Face 862 -UV Count: 3 - UV - UV - UV -Face 863 -UV Count: 3 - UV - UV - UV -Face 864 -UV Count: 3 - UV - UV - UV -Face 865 -UV Count: 3 - UV - UV - UV -Face 866 -UV Count: 3 - UV - UV - UV -Face 867 -UV Count: 3 - UV - UV - UV -Face 868 -UV Count: 3 - UV - UV - UV -Face 869 -UV Count: 3 - UV - UV - UV -Face 870 -UV Count: 3 - UV - UV - UV -Face 871 -UV Count: 3 - UV - UV - UV -Face 872 -UV Count: 3 - UV - UV - UV -Face 873 -UV Count: 3 - UV - UV - UV -Face 874 -UV Count: 3 - UV - UV - UV -Face 875 -UV Count: 3 - UV - UV - UV -Face 876 -UV Count: 3 - UV - UV - UV -Face 877 -UV Count: 3 - UV - UV - UV -Face 878 -UV Count: 3 - UV - UV - UV -Face 879 -UV Count: 3 - UV - UV - UV -Face 880 -UV Count: 3 - UV - UV - UV -Face 881 -UV Count: 3 - UV - UV - UV -Face 882 -UV Count: 3 - UV - UV - UV -Face 883 -UV Count: 3 - UV - UV - UV -Face 884 -UV Count: 3 - UV - UV - UV -Face 885 -UV Count: 3 - UV - UV - UV -Face 886 -UV Count: 3 - UV - UV - UV -Face 887 -UV Count: 3 - UV - UV - UV -Face 888 -UV Count: 3 - UV - UV - UV -Face 889 -UV Count: 3 - UV - UV - UV -Face 890 -UV Count: 3 - UV - UV - UV -Face 891 -UV Count: 3 - UV - UV - UV -Face 892 -UV Count: 3 - UV - UV - UV -Face 893 -UV Count: 3 - UV - UV - UV -Face 894 -UV Count: 3 - UV - UV - UV -Face 895 -UV Count: 3 - UV - UV - UV -Face 896 -UV Count: 3 - UV - UV - UV -Face 897 -UV Count: 3 - UV - UV - UV -Face 898 -UV Count: 3 - UV - UV - UV -Face 899 -UV Count: 3 - UV - UV - UV -Face 900 -UV Count: 3 - UV - UV - UV -Face 901 -UV Count: 3 - UV - UV - UV -Face 902 -UV Count: 3 - UV - UV - UV -Face 903 -UV Count: 3 - UV - UV - UV -Face 904 -UV Count: 3 - UV - UV - UV -Face 905 -UV Count: 3 - UV - UV - UV -Face 906 -UV Count: 3 - UV - UV - UV -Face 907 -UV Count: 3 - UV - UV - UV -Face 908 -UV Count: 3 - UV - UV - UV -Face 909 -UV Count: 3 - UV - UV - UV -Face 910 -UV Count: 3 - UV - UV - UV -Face 911 -UV Count: 3 - UV - UV - UV -Face 912 -UV Count: 3 - UV - UV - UV -Face 913 -UV Count: 3 - UV - UV - UV -Face 914 -UV Count: 3 - UV - UV - UV -Face 915 -UV Count: 3 - UV - UV - UV -Face 916 -UV Count: 3 - UV - UV - UV -Face 917 -UV Count: 3 - UV - UV - UV -Face 918 -UV Count: 3 - UV - UV - UV -Face 919 -UV Count: 3 - UV - UV - UV -Face 920 -UV Count: 3 - UV - UV - UV -Face 921 -UV Count: 3 - UV - UV - UV -Face 922 -UV Count: 3 - UV - UV - UV -Face 923 -UV Count: 3 - UV - UV - UV -Face 924 -UV Count: 3 - UV - UV - UV -Face 925 -UV Count: 3 - UV - UV - UV -Face 926 -UV Count: 3 - UV - UV - UV -Face 927 -UV Count: 3 - UV - UV - UV -Face 928 -UV Count: 3 - UV - UV - UV -Face 929 -UV Count: 3 - UV - UV - UV -Face 930 -UV Count: 3 - UV - UV - UV -Face 931 -UV Count: 3 - UV - UV - UV -Face 932 -UV Count: 3 - UV - UV - UV -Face 933 -UV Count: 3 - UV - UV - UV -Face 934 -UV Count: 3 - UV - UV - UV -Face 935 -UV Count: 3 - UV - UV - UV -Face 936 -UV Count: 3 - UV - UV - UV -Face 937 -UV Count: 3 - UV - UV - UV -Face 938 -UV Count: 3 - UV - UV - UV -Face 939 -UV Count: 3 - UV - UV - UV -Face 940 -UV Count: 3 - UV - UV - UV -Face 941 -UV Count: 3 - UV - UV - UV -Face 942 -UV Count: 3 - UV - UV - UV -Face 943 -UV Count: 3 - UV - UV - UV -Face 944 -UV Count: 3 - UV - UV - UV -Face 945 -UV Count: 3 - UV - UV - UV -Face 946 -UV Count: 3 - UV - UV - UV -Face 947 -UV Count: 3 - UV - UV - UV -Face 948 -UV Count: 3 - UV - UV - UV -Face 949 -UV Count: 3 - UV - UV - UV -Face 950 -UV Count: 3 - UV - UV - UV -Face 951 -UV Count: 3 - UV - UV - UV -Face 952 -UV Count: 3 - UV - UV - UV -Face 953 -UV Count: 3 - UV - UV - UV -Face 954 -UV Count: 3 - UV - UV - UV -Face 955 -UV Count: 3 - UV - UV - UV -Face 956 -UV Count: 3 - UV - UV - UV -Face 957 -UV Count: 3 - UV - UV - UV -Face 958 -UV Count: 3 - UV - UV - UV -Face 959 -UV Count: 3 - UV - UV - UV -Face 960 -UV Count: 3 - UV - UV - UV -Face 961 -UV Count: 3 - UV - UV - UV -Face 962 -UV Count: 3 - UV - UV - UV -Face 963 -UV Count: 3 - UV - UV - UV -Face 964 -UV Count: 3 - UV - UV - UV -Face 965 -UV Count: 3 - UV - UV - UV -Face 966 -UV Count: 3 - UV - UV - UV -Face 967 -UV Count: 3 - UV - UV - UV -Face 968 -UV Count: 3 - UV - UV - UV -Face 969 -UV Count: 3 - UV - UV - UV -Face 970 -UV Count: 3 - UV - UV - UV -Face 971 -UV Count: 3 - UV - UV - UV -Face 972 -UV Count: 3 - UV - UV - UV -Face 973 -UV Count: 3 - UV - UV - UV -Face 974 -UV Count: 3 - UV - UV - UV -Face 975 -UV Count: 3 - UV - UV - UV -Face 976 -UV Count: 3 - UV - UV - UV -Face 977 -UV Count: 3 - UV - UV - UV -Face 978 -UV Count: 3 - UV - UV - UV -Face 979 -UV Count: 3 - UV - UV - UV -Face 980 -UV Count: 3 - UV - UV - UV -Face 981 -UV Count: 3 - UV - UV - UV -Face 982 -UV Count: 3 - UV - UV - UV -Face 983 -UV Count: 3 - UV - UV - UV -Face 984 -UV Count: 3 - UV - UV - UV -Face 985 -UV Count: 3 - UV - UV - UV -Face 986 -UV Count: 3 - UV - UV - UV -Face 987 -UV Count: 3 - UV - UV - UV -Face 988 -UV Count: 3 - UV - UV - UV -Face 989 -UV Count: 3 - UV - UV - UV -Face 990 -UV Count: 3 - UV - UV - UV -Face 991 -UV Count: 3 - UV - UV - UV -Face 992 -UV Count: 3 - UV - UV - UV -Face 993 -UV Count: 3 - UV - UV - UV -Face 994 -UV Count: 3 - UV - UV - UV -Face 995 -UV Count: 3 - UV - UV - UV -Face 996 -UV Count: 3 - UV - UV - UV -Face 997 -UV Count: 3 - UV - UV - UV -Face 998 -UV Count: 3 - UV - UV - UV -Face 999 -UV Count: 3 - UV - UV - UV -Face 1000 -UV Count: 3 - UV - UV - UV -Face 1001 -UV Count: 3 - UV - UV - UV -Face 1002 -UV Count: 3 - UV - UV - UV -Face 1003 -UV Count: 3 - UV - UV - UV -Face 1004 -UV Count: 3 - UV - UV - UV -Face 1005 -UV Count: 3 - UV - UV - UV -Face 1006 -UV Count: 3 - UV - UV - UV -Face 1007 -UV Count: 3 - UV - UV - UV -Face 1008 -UV Count: 3 - UV - UV - UV -Face 1009 -UV Count: 3 - UV - UV - UV -Face 1010 -UV Count: 3 - UV - UV - UV -Face 1011 -UV Count: 3 - UV - UV - UV -Face 1012 -UV Count: 3 - UV - UV - UV -Face 1013 -UV Count: 3 - UV - UV - UV -Face 1014 -UV Count: 3 - UV - UV - UV -Face 1015 -UV Count: 3 - UV - UV - UV -Face 1016 -UV Count: 3 - UV - UV - UV -Face 1017 -UV Count: 3 - UV - UV - UV -Face 1018 -UV Count: 3 - UV - UV - UV -Face 1019 -UV Count: 3 - UV - UV - UV -Face 1020 -UV Count: 3 - UV - UV - UV -Face 1021 -UV Count: 3 - UV - UV - UV -Face 1022 -UV Count: 3 - UV - UV - UV -Face 1023 -UV Count: 3 - UV - UV - UV -Face 1024 -UV Count: 3 - UV - UV - UV -Face 1025 -UV Count: 3 - UV - UV - UV -Face 1026 -UV Count: 3 - UV - UV - UV -Face 1027 -UV Count: 3 - UV - UV - UV -Face 1028 -UV Count: 3 - UV - UV - UV -Face 1029 -UV Count: 3 - UV - UV - UV -Face 1030 -UV Count: 3 - UV - UV - UV -Face 1031 -UV Count: 3 - UV - UV - UV -Face 1032 -UV Count: 3 - UV - UV - UV -Face 1033 -UV Count: 3 - UV - UV - UV -Face 1034 -UV Count: 3 - UV - UV - UV -Face 1035 -UV Count: 3 - UV - UV - UV -Face 1036 -UV Count: 3 - UV - UV - UV -Face 1037 -UV Count: 3 - UV - UV - UV -Face 1038 -UV Count: 3 - UV - UV - UV -Face 1039 -UV Count: 3 - UV - UV - UV -Face 1040 -UV Count: 3 - UV - UV - UV -Face 1041 -UV Count: 3 - UV - UV - UV -Face 1042 -UV Count: 3 - UV - UV - UV -Face 1043 -UV Count: 3 - UV - UV - UV -Face 1044 -UV Count: 3 - UV - UV - UV -Face 1045 -UV Count: 3 - UV - UV - UV -Face 1046 -UV Count: 3 - UV - UV - UV -Face 1047 -UV Count: 3 - UV - UV - UV -Face 1048 -UV Count: 3 - UV - UV - UV -Face 1049 -UV Count: 3 - UV - UV - UV -Face 1050 -UV Count: 3 - UV - UV - UV -Face 1051 -UV Count: 3 - UV - UV - UV -Face 1052 -UV Count: 3 - UV - UV - UV -Face 1053 -UV Count: 3 - UV - UV - UV -Face 1054 -UV Count: 3 - UV - UV - UV -Face 1055 -UV Count: 3 - UV - UV - UV -Face 1056 -UV Count: 3 - UV - UV - UV -Face 1057 -UV Count: 3 - UV - UV - UV -Face 1058 -UV Count: 3 - UV - UV - UV -Face 1059 -UV Count: 3 - UV - UV - UV -Face 1060 -UV Count: 3 - UV - UV - UV -Face 1061 -UV Count: 3 - UV - UV - UV -Face 1062 -UV Count: 3 - UV - UV - UV -Face 1063 -UV Count: 3 - UV - UV - UV -Face 1064 -UV Count: 3 - UV - UV - UV -Face 1065 -UV Count: 3 - UV - UV - UV -Face 1066 -UV Count: 3 - UV - UV - UV -Face 1067 -UV Count: 3 - UV - UV - UV -Face 1068 -UV Count: 3 - UV - UV - UV -Face 1069 -UV Count: 3 - UV - UV - UV -Face 1070 -UV Count: 3 - UV - UV - UV -Face 1071 -UV Count: 3 - UV - UV - UV -Face 1072 -UV Count: 3 - UV - UV - UV -Face 1073 -UV Count: 3 - UV - UV - UV -Face 1074 -UV Count: 3 - UV - UV - UV -Face 1075 -UV Count: 3 - UV - UV - UV -Face 1076 -UV Count: 3 - UV - UV - UV -Face 1077 -UV Count: 3 - UV - UV - UV -Face 1078 -UV Count: 3 - UV - UV - UV -Face 1079 -UV Count: 3 - UV - UV - UV -Face 1080 -UV Count: 3 - UV - UV - UV -Face 1081 -UV Count: 3 - UV - UV - UV -Face 1082 -UV Count: 3 - UV - UV - UV -Face 1083 -UV Count: 3 - UV - UV - UV -Face 1084 -UV Count: 3 - UV - UV - UV -Face 1085 -UV Count: 3 - UV - UV - UV -Face 1086 -UV Count: 3 - UV - UV - UV -Face 1087 -UV Count: 3 - UV - UV - UV -Face 1088 -UV Count: 3 - UV - UV - UV -Face 1089 -UV Count: 3 - UV - UV - UV -Face 1090 -UV Count: 3 - UV - UV - UV -Face 1091 -UV Count: 3 - UV - UV - UV -Face 1092 -UV Count: 3 - UV - UV - UV -Face 1093 -UV Count: 3 - UV - UV - UV -Face 1094 -UV Count: 3 - UV - UV - UV -Face 1095 -UV Count: 3 - UV - UV - UV -Face 1096 -UV Count: 3 - UV - UV - UV -Face 1097 -UV Count: 3 - UV - UV - UV -Face 1098 -UV Count: 3 - UV - UV - UV -Face 1099 -UV Count: 3 - UV - UV - UV -Face 1100 -UV Count: 3 - UV - UV - UV -Face 1101 -UV Count: 3 - UV - UV - UV -Face 1102 -UV Count: 3 - UV - UV - UV -Face 1103 -UV Count: 3 - UV - UV - UV -Face 1104 -UV Count: 3 - UV - UV - UV -Face 1105 -UV Count: 3 - UV - UV - UV -Face 1106 -UV Count: 3 - UV - UV - UV -Face 1107 -UV Count: 3 - UV - UV - UV -Face 1108 -UV Count: 3 - UV - UV - UV -Face 1109 -UV Count: 3 - UV - UV - UV -Face 1110 -UV Count: 3 - UV - UV - UV -Face 1111 -UV Count: 3 - UV - UV - UV -Face 1112 -UV Count: 3 - UV - UV - UV -Face 1113 -UV Count: 3 - UV - UV - UV -Face 1114 -UV Count: 3 - UV - UV - UV -Face 1115 -UV Count: 3 - UV - UV - UV -Face 1116 -UV Count: 3 - UV - UV - UV -Face 1117 -UV Count: 3 - UV - UV - UV -Face 1118 -UV Count: 3 - UV - UV - UV -Face 1119 -UV Count: 3 - UV - UV - UV -Face 1120 -UV Count: 3 - UV - UV - UV -Face 1121 -UV Count: 3 - UV - UV - UV -Face 1122 -UV Count: 3 - UV - UV - UV -Face 1123 -UV Count: 3 - UV - UV - UV -Face 1124 -UV Count: 3 - UV - UV - UV -Face 1125 -UV Count: 3 - UV - UV - UV -Face 1126 -UV Count: 3 - UV - UV - UV -Face 1127 -UV Count: 3 - UV - UV - UV -Face 1128 -UV Count: 3 - UV - UV - UV -Face 1129 -UV Count: 3 - UV - UV - UV -Face 1130 -UV Count: 3 - UV - UV - UV -Face 1131 -UV Count: 3 - UV - UV - UV -Face 1132 -UV Count: 3 - UV - UV - UV -Face 1133 -UV Count: 3 - UV - UV - UV -Face 1134 -UV Count: 3 - UV - UV - UV -Face 1135 -UV Count: 3 - UV - UV - UV -Face 1136 -UV Count: 3 - UV - UV - UV -Face 1137 -UV Count: 3 - UV - UV - UV -Face 1138 -UV Count: 3 - UV - UV - UV -Face 1139 -UV Count: 3 - UV - UV - UV -Face 1140 -UV Count: 3 - UV - UV - UV -Face 1141 -UV Count: 3 - UV - UV - UV -Face 1142 -UV Count: 3 - UV - UV - UV -Face 1143 -UV Count: 3 - UV - UV - UV -Face 1144 -UV Count: 3 - UV - UV - UV -Face 1145 -UV Count: 3 - UV - UV - UV -Face 1146 -UV Count: 3 - UV - UV - UV -Face 1147 -UV Count: 3 - UV - UV - UV -Face 1148 -UV Count: 3 - UV - UV - UV -Face 1149 -UV Count: 3 - UV - UV - UV -Face 1150 -UV Count: 3 - UV - UV - UV -Face 1151 -UV Count: 3 - UV - UV - UV -Face 1152 -UV Count: 3 - UV - UV - UV -Face 1153 -UV Count: 3 - UV - UV - UV -Face 1154 -UV Count: 3 - UV - UV - UV -Face 1155 -UV Count: 3 - UV - UV - UV -Face 1156 -UV Count: 3 - UV - UV - UV -Face 1157 -UV Count: 3 - UV - UV - UV -Face 1158 -UV Count: 3 - UV - UV - UV -Face 1159 -UV Count: 3 - UV - UV - UV -Face 1160 -UV Count: 3 - UV - UV - UV -Face 1161 -UV Count: 3 - UV - UV - UV -Face 1162 -UV Count: 3 - UV - UV - UV -Face 1163 -UV Count: 3 - UV - UV - UV -Face 1164 -UV Count: 3 - UV - UV - UV -Face 1165 -UV Count: 3 - UV - UV - UV -Face 1166 -UV Count: 3 - UV - UV - UV -Face 1167 -UV Count: 3 - UV - UV - UV -Face 1168 -UV Count: 3 - UV - UV - UV -Face 1169 -UV Count: 3 - UV - UV - UV -Face 1170 -UV Count: 3 - UV - UV - UV -Face 1171 -UV Count: 3 - UV - UV - UV -Face 1172 -UV Count: 3 - UV - UV - UV -Face 1173 -UV Count: 3 - UV - UV - UV -Face 1174 -UV Count: 3 - UV - UV - UV -Face 1175 -UV Count: 3 - UV - UV - UV -Face 1176 -UV Count: 3 - UV - UV - UV -Face 1177 -UV Count: 3 - UV - UV - UV -Face 1178 -UV Count: 3 - UV - UV - UV -Face 1179 -UV Count: 3 - UV - UV - UV -Face 1180 -UV Count: 3 - UV - UV - UV -Face 1181 -UV Count: 3 - UV - UV - UV -Face 1182 -UV Count: 3 - UV - UV - UV -Face 1183 -UV Count: 3 - UV - UV - UV -Face 1184 -UV Count: 3 - UV - UV - UV -Face 1185 -UV Count: 3 - UV - UV - UV -Face 1186 -UV Count: 3 - UV - UV - UV -Face 1187 -UV Count: 3 - UV - UV - UV -Face 1188 -UV Count: 3 - UV - UV - UV -Face 1189 -UV Count: 3 - UV - UV - UV -Face 1190 -UV Count: 3 - UV - UV - UV -Face 1191 -UV Count: 3 - UV - UV - UV -Face 1192 -UV Count: 3 - UV - UV - UV -Face 1193 -UV Count: 3 - UV - UV - UV -Face 1194 -UV Count: 3 - UV - UV - UV -Face 1195 -UV Count: 3 - UV - UV - UV -Face 1196 -UV Count: 3 - UV - UV - UV -Face 1197 -UV Count: 3 - UV - UV - UV -Face 1198 -UV Count: 3 - UV - UV - UV -Face 1199 -UV Count: 3 - UV - UV - UV -Face 1200 -UV Count: 3 - UV - UV - UV -Face 1201 -UV Count: 3 - UV - UV - UV -Face 1202 -UV Count: 3 - UV - UV - UV -Face 1203 -UV Count: 3 - UV - UV - UV -Face 1204 -UV Count: 3 - UV - UV - UV -Face 1205 -UV Count: 3 - UV - UV - UV -Face 1206 -UV Count: 3 - UV - UV - UV -Face 1207 -UV Count: 3 - UV - UV - UV -Face 1208 -UV Count: 3 - UV - UV - UV -Face 1209 -UV Count: 3 - UV - UV - UV -Face 1210 -UV Count: 3 - UV - UV - UV -Face 1211 -UV Count: 3 - UV - UV - UV -Face 1212 -UV Count: 3 - UV - UV - UV -Face 1213 -UV Count: 3 - UV - UV - UV -Face 1214 -UV Count: 3 - UV - UV - UV -Face 1215 -UV Count: 3 - UV - UV - UV -Face 1216 -UV Count: 3 - UV - UV - UV -Face 1217 -UV Count: 3 - UV - UV - UV -Face 1218 -UV Count: 3 - UV - UV - UV -Face 1219 -UV Count: 3 - UV - UV - UV -Face 1220 -UV Count: 3 - UV - UV - UV -Face 1221 -UV Count: 3 - UV - UV - UV -Face 1222 -UV Count: 3 - UV - UV - UV -Face 1223 -UV Count: 3 - UV - UV - UV -Face 1224 -UV Count: 3 - UV - UV - UV -Face 1225 -UV Count: 3 - UV - UV - UV -Face 1226 -UV Count: 3 - UV - UV - UV -Face 1227 -UV Count: 3 - UV - UV - UV -Face 1228 -UV Count: 3 - UV - UV - UV -Face 1229 -UV Count: 3 - UV - UV - UV -Face 1230 -UV Count: 3 - UV - UV - UV -Face 1231 -UV Count: 3 - UV - UV - UV -Face 1232 -UV Count: 3 - UV - UV - UV -Face 1233 -UV Count: 3 - UV - UV - UV -Face 1234 -UV Count: 3 - UV - UV - UV -Face 1235 -UV Count: 3 - UV - UV - UV -Face 1236 -UV Count: 3 - UV - UV - UV -Face 1237 -UV Count: 3 - UV - UV - UV -Face 1238 -UV Count: 3 - UV - UV - UV -Face 1239 -UV Count: 3 - UV - UV - UV -Face 1240 -UV Count: 3 - UV - UV - UV -Face 1241 -UV Count: 3 - UV - UV - UV -Face 1242 -UV Count: 3 - UV - UV - UV -Face 1243 -UV Count: 3 - UV - UV - UV -Face 1244 -UV Count: 3 - UV - UV - UV -Face 1245 -UV Count: 3 - UV - UV - UV -Face 1246 -UV Count: 3 - UV - UV - UV -Face 1247 -UV Count: 3 - UV - UV - UV -Face 1248 -UV Count: 3 - UV - UV - UV -Face 1249 -UV Count: 3 - UV - UV - UV -Face 1250 -UV Count: 3 - UV - UV - UV -Face 1251 -UV Count: 3 - UV - UV - UV -Face 1252 -UV Count: 3 - UV - UV - UV -Face 1253 -UV Count: 3 - UV - UV - UV -Face 1254 -UV Count: 3 - UV - UV - UV -Face 1255 -UV Count: 3 - UV - UV - UV -Face 1256 -UV Count: 3 - UV - UV - UV -Face 1257 -UV Count: 3 - UV - UV - UV -Face 1258 -UV Count: 3 - UV - UV - UV -Face 1259 -UV Count: 3 - UV - UV - UV -Face 1260 -UV Count: 3 - UV - UV - UV -Face 1261 -UV Count: 3 - UV - UV - UV -Face 1262 -UV Count: 3 - UV - UV - UV -Face 1263 -UV Count: 3 - UV - UV - UV -Face 1264 -UV Count: 3 - UV - UV - UV -Face 1265 -UV Count: 3 - UV - UV - UV -Face 1266 -UV Count: 3 - UV - UV - UV -Face 1267 -UV Count: 3 - UV - UV - UV -Face 1268 -UV Count: 3 - UV - UV - UV -Face 1269 -UV Count: 3 - UV - UV - UV -Face 1270 -UV Count: 3 - UV - UV - UV -Face 1271 -UV Count: 3 - UV - UV - UV -Face 1272 -UV Count: 3 - UV - UV - UV -Face 1273 -UV Count: 3 - UV - UV - UV -Face 1274 -UV Count: 3 - UV - UV - UV -Face 1275 -UV Count: 3 - UV - UV - UV -Face 1276 -UV Count: 3 - UV - UV - UV -Face 1277 -UV Count: 3 - UV - UV - UV -Face 1278 -UV Count: 3 - UV - UV - UV -Face 1279 -UV Count: 3 - UV - UV - UV -Face 1280 -UV Count: 3 - UV - UV - UV -Face 1281 -UV Count: 3 - UV - UV - UV -Face 1282 -UV Count: 3 - UV - UV - UV -Face 1283 -UV Count: 3 - UV - UV - UV -Face 1284 -UV Count: 3 - UV - UV - UV -Face 1285 -UV Count: 3 - UV - UV - UV -Face 1286 -UV Count: 3 - UV - UV - UV -Face 1287 -UV Count: 3 - UV - UV - UV -Face 1288 -UV Count: 3 - UV - UV - UV -Face 1289 -UV Count: 3 - UV - UV - UV -Face 1290 -UV Count: 3 - UV - UV - UV -Face 1291 -UV Count: 3 - UV - UV - UV -Face 1292 -UV Count: 3 - UV - UV - UV -Face 1293 -UV Count: 3 - UV - UV - UV -Face 1294 -UV Count: 3 - UV - UV - UV -Face 1295 -UV Count: 3 - UV - UV - UV -Face 1296 -UV Count: 3 - UV - UV - UV -Face 1297 -UV Count: 3 - UV - UV - UV -Face 1298 -UV Count: 3 - UV - UV - UV -Face 1299 -UV Count: 3 - UV - UV - UV -Face 1300 -UV Count: 3 - UV - UV - UV -Face 1301 -UV Count: 3 - UV - UV - UV -Face 1302 -UV Count: 3 - UV - UV - UV -Face 1303 -UV Count: 3 - UV - UV - UV -Face 1304 -UV Count: 3 - UV - UV - UV -Face 1305 -UV Count: 3 - UV - UV - UV -Face 1306 -UV Count: 3 - UV - UV - UV -Face 1307 -UV Count: 3 - UV - UV - UV -Face 1308 -UV Count: 3 - UV - UV - UV -Face 1309 -UV Count: 3 - UV - UV - UV -Face 1310 -UV Count: 3 - UV - UV - UV -Face 1311 -UV Count: 3 - UV - UV - UV -Face 1312 -UV Count: 3 - UV - UV - UV -Face 1313 -UV Count: 3 - UV - UV - UV -Face 1314 -UV Count: 3 - UV - UV - UV -Face 1315 -UV Count: 3 - UV - UV - UV -Face 1316 -UV Count: 3 - UV - UV - UV -Face 1317 -UV Count: 3 - UV - UV - UV -Face 1318 -UV Count: 3 - UV - UV - UV -Face 1319 -UV Count: 3 - UV - UV - UV -Face 1320 -UV Count: 3 - UV - UV - UV -Face 1321 -UV Count: 3 - UV - UV - UV -Face 1322 -UV Count: 3 - UV - UV - UV -Face 1323 -UV Count: 3 - UV - UV - UV -Face 1324 -UV Count: 3 - UV - UV - UV -Face 1325 -UV Count: 3 - UV - UV - UV -Face 1326 -UV Count: 3 - UV - UV - UV -Face 1327 -UV Count: 3 - UV - UV - UV -Face 1328 -UV Count: 3 - UV - UV - UV -Face 1329 -UV Count: 3 - UV - UV - UV -Face 1330 -UV Count: 3 - UV - UV - UV -Face 1331 -UV Count: 3 - UV - UV - UV -Face 1332 -UV Count: 3 - UV - UV - UV -Face 1333 -UV Count: 3 - UV - UV - UV -Face 1334 -UV Count: 3 - UV - UV - UV -Face 1335 -UV Count: 3 - UV - UV - UV -Face 1336 -UV Count: 3 - UV - UV - UV -Face 1337 -UV Count: 3 - UV - UV - UV -Face 1338 -UV Count: 3 - UV - UV - UV -Face 1339 -UV Count: 3 - UV - UV - UV -Face 1340 -UV Count: 3 - UV - UV - UV -Face 1341 -UV Count: 3 - UV - UV - UV -Face 1342 -UV Count: 3 - UV - UV - UV -Face 1343 -UV Count: 3 - UV - UV - UV -Face 1344 -UV Count: 3 - UV - UV - UV -Face 1345 -UV Count: 3 - UV - UV - UV -Face 1346 -UV Count: 3 - UV - UV - UV -Face 1347 -UV Count: 3 - UV - UV - UV -Face 1348 -UV Count: 3 - UV - UV - UV -Face 1349 -UV Count: 3 - UV - UV - UV -Face 1350 -UV Count: 3 - UV - UV - UV -Face 1351 -UV Count: 3 - UV - UV - UV -Face 1352 -UV Count: 3 - UV - UV - UV -Face 1353 -UV Count: 3 - UV - UV - UV -Face 1354 -UV Count: 3 - UV - UV - UV -Face 1355 -UV Count: 3 - UV - UV - UV -Face 1356 -UV Count: 3 - UV - UV - UV -Face 1357 -UV Count: 3 - UV - UV - UV -Face 1358 -UV Count: 3 - UV - UV - UV -Face 1359 -UV Count: 3 - UV - UV - UV -Face 1360 -UV Count: 3 - UV - UV - UV -Face 1361 -UV Count: 3 - UV - UV - UV -Face 1362 -UV Count: 3 - UV - UV - UV -Face 1363 -UV Count: 3 - UV - UV - UV -Face 1364 -UV Count: 3 - UV - UV - UV -Face 1365 -UV Count: 3 - UV - UV - UV -Face 1366 -UV Count: 3 - UV - UV - UV -Face 1367 -UV Count: 3 - UV - UV - UV -Face 1368 -UV Count: 3 - UV - UV - UV -Face 1369 -UV Count: 3 - UV - UV - UV -Face 1370 -UV Count: 3 - UV - UV - UV -Face 1371 -UV Count: 3 - UV - UV - UV -Face 1372 -UV Count: 3 - UV - UV - UV -Face 1373 -UV Count: 3 - UV - UV - UV -Face 1374 -UV Count: 3 - UV - UV - UV -Face 1375 -UV Count: 3 - UV - UV - UV -Face 1376 -UV Count: 3 - UV - UV - UV -Face 1377 -UV Count: 3 - UV - UV - UV -Face 1378 -UV Count: 3 - UV - UV - UV -Face 1379 -UV Count: 3 - UV - UV - UV -Face 1380 -UV Count: 3 - UV - UV - UV -Face 1381 -UV Count: 3 - UV - UV - UV -Face 1382 -UV Count: 3 - UV - UV - UV -Face 1383 -UV Count: 3 - UV - UV - UV -Face 1384 -UV Count: 3 - UV - UV - UV -Face 1385 -UV Count: 3 - UV - UV - UV -Face 1386 -UV Count: 3 - UV - UV - UV -Face 1387 -UV Count: 3 - UV - UV - UV -Face 1388 -UV Count: 3 - UV - UV - UV -Face 1389 -UV Count: 3 - UV - UV - UV -Face 1390 -UV Count: 3 - UV - UV - UV -Face 1391 -UV Count: 3 - UV - UV - UV -Face 1392 -UV Count: 3 - UV - UV - UV -Face 1393 -UV Count: 3 - UV - UV - UV -Face 1394 -UV Count: 3 - UV - UV - UV -Face 1395 -UV Count: 3 - UV - UV - UV -Face 1396 -UV Count: 3 - UV - UV - UV -Face 1397 -UV Count: 3 - UV - UV - UV -Face 1398 -UV Count: 3 - UV - UV - UV -Face 1399 -UV Count: 3 - UV - UV - UV -Face 1400 -UV Count: 3 - UV - UV - UV -Face 1401 -UV Count: 3 - UV - UV - UV -Face 1402 -UV Count: 3 - UV - UV - UV -Face 1403 -UV Count: 3 - UV - UV - UV -Face 1404 -UV Count: 3 - UV - UV - UV -Face 1405 -UV Count: 3 - UV - UV - UV -Face 1406 -UV Count: 3 - UV - UV - UV -Face 1407 -UV Count: 3 - UV - UV - UV -Face 1408 -UV Count: 3 - UV - UV - UV -Face 1409 -UV Count: 3 - UV - UV - UV -Face 1410 -UV Count: 3 - UV - UV - UV -Face 1411 -UV Count: 3 - UV - UV - UV -Face 1412 -UV Count: 3 - UV - UV - UV -Face 1413 -UV Count: 3 - UV - UV - UV -Face 1414 -UV Count: 3 - UV - UV - UV -Face 1415 -UV Count: 3 - UV - UV - UV -Face 1416 -UV Count: 3 - UV - UV - UV -Face 1417 -UV Count: 3 - UV - UV - UV -Face 1418 -UV Count: 3 - UV - UV - UV -Face 1419 -UV Count: 3 - UV - UV - UV -Face 1420 -UV Count: 3 - UV - UV - UV -Face 1421 -UV Count: 3 - UV - UV - UV -Face 1422 -UV Count: 3 - UV - UV - UV -Face 1423 -UV Count: 3 - UV - UV - UV -Face 1424 -UV Count: 3 - UV - UV - UV -Face 1425 -UV Count: 3 - UV - UV - UV -Face 1426 -UV Count: 3 - UV - UV - UV -Face 1427 -UV Count: 3 - UV - UV - UV -Face 1428 -UV Count: 3 - UV - UV - UV -Face 1429 -UV Count: 3 - UV - UV - UV -Face 1430 -UV Count: 3 - UV - UV - UV -Face 1431 -UV Count: 3 - UV - UV - UV -Face 1432 -UV Count: 3 - UV - UV - UV -Face 1433 -UV Count: 3 - UV - UV - UV -Face 1434 -UV Count: 3 - UV - UV - UV -Face 1435 -UV Count: 3 - UV - UV - UV -Face 1436 -UV Count: 3 - UV - UV - UV -Face 1437 -UV Count: 3 - UV - UV - UV -Face 1438 -UV Count: 3 - UV - UV - UV -Face 1439 -UV Count: 3 - UV - UV - UV -Face 1440 -UV Count: 3 - UV - UV - UV -Face 1441 -UV Count: 3 - UV - UV - UV -Face 1442 -UV Count: 3 - UV - UV - UV -Face 1443 -UV Count: 3 - UV - UV - UV -Face 1444 -UV Count: 3 - UV - UV - UV -Face 1445 -UV Count: 3 - UV - UV - UV -Face 1446 -UV Count: 3 - UV - UV - UV -Face 1447 -UV Count: 3 - UV - UV - UV -Face 1448 -UV Count: 3 - UV - UV - UV -Face 1449 -UV Count: 3 - UV - UV - UV -Face 1450 -UV Count: 3 - UV - UV - UV -Face 1451 -UV Count: 3 - UV - UV - UV -Face 1452 -UV Count: 3 - UV - UV - UV -Face 1453 -UV Count: 3 - UV - UV - UV -Face 1454 -UV Count: 3 - UV - UV - UV -Face 1455 -UV Count: 3 - UV - UV - UV -Face 1456 -UV Count: 3 - UV - UV - UV -Face 1457 -UV Count: 3 - UV - UV - UV -Face 1458 -UV Count: 3 - UV - UV - UV -Face 1459 -UV Count: 3 - UV - UV - UV -Face 1460 -UV Count: 3 - UV - UV - UV -Face 1461 -UV Count: 3 - UV - UV - UV -Face 1462 -UV Count: 3 - UV - UV - UV -Face 1463 -UV Count: 3 - UV - UV - UV -Face 1464 -UV Count: 3 - UV - UV - UV -Face 1465 -UV Count: 3 - UV - UV - UV -Face 1466 -UV Count: 3 - UV - UV - UV -Face 1467 -UV Count: 3 - UV - UV - UV -Face 1468 -UV Count: 3 - UV - UV - UV -Face 1469 -UV Count: 3 - UV - UV - UV -Face 1470 -UV Count: 3 - UV - UV - UV -Face 1471 -UV Count: 3 - UV - UV - UV -Face 1472 -UV Count: 3 - UV - UV - UV -Face 1473 -UV Count: 3 - UV - UV - UV -Face 1474 -UV Count: 3 - UV - UV - UV -Face 1475 -UV Count: 3 - UV - UV - UV -Face 1476 -UV Count: 3 - UV - UV - UV -Face 1477 -UV Count: 3 - UV - UV - UV -Face 1478 -UV Count: 3 - UV - UV - UV -Face 1479 -UV Count: 3 - UV - UV - UV -Face 1480 -UV Count: 3 - UV - UV - UV -Face 1481 -UV Count: 3 - UV - UV - UV -Face 1482 -UV Count: 3 - UV - UV - UV -Face 1483 -UV Count: 3 - UV - UV - UV -Face 1484 -UV Count: 3 - UV - UV - UV -Face 1485 -UV Count: 3 - UV - UV - UV -Face 1486 -UV Count: 3 - UV - UV - UV -Face 1487 -UV Count: 3 - UV - UV - UV -Face 1488 -UV Count: 3 - UV - UV - UV -Face 1489 -UV Count: 3 - UV - UV - UV -Face 1490 -UV Count: 3 - UV - UV - UV -Face 1491 -UV Count: 3 - UV - UV - UV -Face 1492 -UV Count: 3 - UV - UV - UV -Face 1493 -UV Count: 3 - UV - UV - UV -Face 1494 -UV Count: 3 - UV - UV - UV -Face 1495 -UV Count: 3 - UV - UV - UV -Face 1496 -UV Count: 3 - UV - UV - UV -Face 1497 -UV Count: 3 - UV - UV - UV -Face 1498 -UV Count: 3 - UV - UV - UV -Face 1499 -UV Count: 3 - UV - UV - UV -Face 1500 -UV Count: 3 - UV - UV - UV -Face 1501 -UV Count: 3 - UV - UV - UV -Face 1502 -UV Count: 3 - UV - UV - UV -Face 1503 -UV Count: 3 - UV - UV - UV -Face 1504 -UV Count: 3 - UV - UV - UV -Face 1505 -UV Count: 3 - UV - UV - UV -Face 1506 -UV Count: 3 - UV - UV - UV -Face 1507 -UV Count: 3 - UV - UV - UV -Face 1508 -UV Count: 3 - UV - UV - UV -Face 1509 -UV Count: 3 - UV - UV - UV -Face 1510 -UV Count: 3 - UV - UV - UV -Face 1511 -UV Count: 3 - UV - UV - UV -Face 1512 -UV Count: 3 - UV - UV - UV -Face 1513 -UV Count: 3 - UV - UV - UV -Face 1514 -UV Count: 3 - UV - UV - UV -Face 1515 -UV Count: 3 - UV - UV - UV -Face 1516 -UV Count: 3 - UV - UV - UV -Face 1517 -UV Count: 3 - UV - UV - UV -Face 1518 -UV Count: 3 - UV - UV - UV -Face 1519 -UV Count: 3 - UV - UV - UV -Face 1520 -UV Count: 3 - UV - UV - UV -Face 1521 -UV Count: 3 - UV - UV - UV -Face 1522 -UV Count: 3 - UV - UV - UV -Face 1523 -UV Count: 3 - UV - UV - UV -Face 1524 -UV Count: 3 - UV - UV - UV -Face 1525 -UV Count: 3 - UV - UV - UV -Face 1526 -UV Count: 3 - UV - UV - UV -Face 1527 -UV Count: 3 - UV - UV - UV -Face 1528 -UV Count: 3 - UV - UV - UV -Face 1529 -UV Count: 3 - UV - UV - UV -Face 1530 -UV Count: 3 - UV - UV - UV -Face 1531 -UV Count: 3 - UV - UV - UV -Face 1532 -UV Count: 3 - UV - UV - UV -Face 1533 -UV Count: 3 - UV - UV - UV -Face 1534 -UV Count: 3 - UV - UV - UV -Face 1535 -UV Count: 3 - UV - UV - UV -Face 1536 -UV Count: 3 - UV - UV - UV -Face 1537 -UV Count: 3 - UV - UV - UV -Face 1538 -UV Count: 3 - UV - UV - UV -Face 1539 -UV Count: 3 - UV - UV - UV -Face 1540 -UV Count: 3 - UV - UV - UV -Face 1541 -UV Count: 3 - UV - UV - UV -Face 1542 -UV Count: 3 - UV - UV - UV -Face 1543 -UV Count: 3 - UV - UV - UV -Face 1544 -UV Count: 3 - UV - UV - UV -Face 1545 -UV Count: 3 - UV - UV - UV -Face 1546 -UV Count: 3 - UV - UV - UV -Face 1547 -UV Count: 3 - UV - UV - UV -Face 1548 -UV Count: 3 - UV - UV - UV -Face 1549 -UV Count: 3 - UV - UV - UV -Face 1550 -UV Count: 3 - UV - UV - UV -Face 1551 -UV Count: 3 - UV - UV - UV -Face 1552 -UV Count: 3 - UV - UV - UV -Face 1553 -UV Count: 3 - UV - UV - UV -Face 1554 -UV Count: 3 - UV - UV - UV -Face 1555 -UV Count: 3 - UV - UV - UV -Face 1556 -UV Count: 3 - UV - UV - UV -Face 1557 -UV Count: 3 - UV - UV - UV -Face 1558 -UV Count: 3 - UV - UV - UV -Face 1559 -UV Count: 3 - UV - UV - UV -Face 1560 -UV Count: 3 - UV - UV - UV -Face 1561 -UV Count: 3 - UV - UV - UV -Face 1562 -UV Count: 3 - UV - UV - UV -Face 1563 -UV Count: 3 - UV - UV - UV -Face 1564 -UV Count: 3 - UV - UV - UV -Face 1565 -UV Count: 3 - UV - UV - UV -Face 1566 -UV Count: 3 - UV - UV - UV -Face 1567 -UV Count: 3 - UV - UV - UV -Face 1568 -UV Count: 3 - UV - UV - UV -Face 1569 -UV Count: 3 - UV - UV - UV -Face 1570 -UV Count: 3 - UV - UV - UV -Face 1571 -UV Count: 3 - UV - UV - UV -Face 1572 -UV Count: 3 - UV - UV - UV -Face 1573 -UV Count: 3 - UV - UV - UV -Face 1574 -UV Count: 3 - UV - UV - UV -Face 1575 -UV Count: 3 - UV - UV - UV -Face 1576 -UV Count: 3 - UV - UV - UV -Face 1577 -UV Count: 3 - UV - UV - UV -Face 1578 -UV Count: 3 - UV - UV - UV -Face 1579 -UV Count: 3 - UV - UV - UV -Face 1580 -UV Count: 3 - UV - UV - UV -Face 1581 -UV Count: 3 - UV - UV - UV -Face 1582 -UV Count: 3 - UV - UV - UV -Face 1583 -UV Count: 3 - UV - UV - UV -Face 1584 -UV Count: 3 - UV - UV - UV -Face 1585 -UV Count: 3 - UV - UV - UV -Face 1586 -UV Count: 3 - UV - UV - UV -Face 1587 -UV Count: 3 - UV - UV - UV -Face 1588 -UV Count: 3 - UV - UV - UV -Face 1589 -UV Count: 3 - UV - UV - UV -Face 1590 -UV Count: 3 - UV - UV - UV -Face 1591 -UV Count: 3 - UV - UV - UV -Face 1592 -UV Count: 3 - UV - UV - UV -Face 1593 -UV Count: 3 - UV - UV - UV -Face 1594 -UV Count: 3 - UV - UV - UV -Face 1595 -UV Count: 3 - UV - UV - UV -Face 1596 -UV Count: 3 - UV - UV - UV -Face 1597 -UV Count: 3 - UV - UV - UV -Face 1598 -UV Count: 3 - UV - UV - UV -Face 1599 -UV Count: 3 - UV - UV - UV -Face 1600 -UV Count: 3 - UV - UV - UV -Face 1601 -UV Count: 3 - UV - UV - UV -Face 1602 -UV Count: 3 - UV - UV - UV -Face 1603 -UV Count: 3 - UV - UV - UV -Face 1604 -UV Count: 3 - UV - UV - UV -Face 1605 -UV Count: 3 - UV - UV - UV -Face 1606 -UV Count: 3 - UV - UV - UV -Face 1607 -UV Count: 3 - UV - UV - UV -Face 1608 -UV Count: 3 - UV - UV - UV -Face 1609 -UV Count: 3 - UV - UV - UV -Face 1610 -UV Count: 3 - UV - UV - UV -Face 1611 -UV Count: 3 - UV - UV - UV -Face 1612 -UV Count: 3 - UV - UV - UV -Face 1613 -UV Count: 3 - UV - UV - UV -Face 1614 -UV Count: 3 - UV - UV - UV -Face 1615 -UV Count: 3 - UV - UV - UV -Face 1616 -UV Count: 3 - UV - UV - UV -Face 1617 -UV Count: 3 - UV - UV - UV -Face 1618 -UV Count: 3 - UV - UV - UV -Face 1619 -UV Count: 3 - UV - UV - UV -Face 1620 -UV Count: 3 - UV - UV - UV -Face 1621 -UV Count: 3 - UV - UV - UV -Face 1622 -UV Count: 3 - UV - UV - UV -Face 1623 -UV Count: 3 - UV - UV - UV -Face 1624 -UV Count: 3 - UV - UV - UV -Face 1625 -UV Count: 3 - UV - UV - UV -Face 1626 -UV Count: 3 - UV - UV - UV -Face 1627 -UV Count: 3 - UV - UV - UV -Face 1628 -UV Count: 3 - UV - UV - UV -Face 1629 -UV Count: 3 - UV - UV - UV -Face 1630 -UV Count: 3 - UV - UV - UV -Face 1631 -UV Count: 3 - UV - UV - UV -Face 1632 -UV Count: 3 - UV - UV - UV -Face 1633 -UV Count: 3 - UV - UV - UV -Face 1634 -UV Count: 3 - UV - UV - UV -Face 1635 -UV Count: 3 - UV - UV - UV -Face 1636 -UV Count: 3 - UV - UV - UV -Face 1637 -UV Count: 3 - UV - UV - UV -Face 1638 -UV Count: 3 - UV - UV - UV -Face 1639 -UV Count: 3 - UV - UV - UV -Face 1640 -UV Count: 3 - UV - UV - UV -Face 1641 -UV Count: 3 - UV - UV - UV -Face 1642 -UV Count: 3 - UV - UV - UV -Face 1643 -UV Count: 3 - UV - UV - UV -Face 1644 -UV Count: 3 - UV - UV - UV -Face 1645 -UV Count: 3 - UV - UV - UV -Face 1646 -UV Count: 3 - UV - UV - UV -Face 1647 -UV Count: 3 - UV - UV - UV -Face 1648 -UV Count: 3 - UV - UV - UV -Face 1649 -UV Count: 3 - UV - UV - UV -Face 1650 -UV Count: 3 - UV - UV - UV -Face 1651 -UV Count: 3 - UV - UV - UV -Face 1652 -UV Count: 3 - UV - UV - UV -Face 1653 -UV Count: 3 - UV - UV - UV -Face 1654 -UV Count: 3 - UV - UV - UV -Face 1655 -UV Count: 3 - UV - UV - UV -Face 1656 -UV Count: 3 - UV - UV - UV -Face 1657 -UV Count: 3 - UV - UV - UV -Face 1658 -UV Count: 3 - UV - UV - UV -Face 1659 -UV Count: 3 - UV - UV - UV -Face 1660 -UV Count: 3 - UV - UV - UV -Face 1661 -UV Count: 3 - UV - UV - UV -Face 1662 -UV Count: 3 - UV - UV - UV -Face 1663 -UV Count: 3 - UV - UV - UV -Face 1664 -UV Count: 3 - UV - UV - UV -Face 1665 -UV Count: 3 - UV - UV - UV -Face 1666 -UV Count: 3 - UV - UV - UV -Face 1667 -UV Count: 3 - UV - UV - UV -Face 1668 -UV Count: 3 - UV - UV - UV -Face 1669 -UV Count: 3 - UV - UV - UV -Face 1670 -UV Count: 3 - UV - UV - UV -Face 1671 -UV Count: 3 - UV - UV - UV -Face 1672 -UV Count: 3 - UV - UV - UV -Face 1673 -UV Count: 3 - UV - UV - UV -Face 1674 -UV Count: 3 - UV - UV - UV -Face 1675 -UV Count: 3 - UV - UV - UV -Face 1676 -UV Count: 3 - UV - UV - UV -Face 1677 -UV Count: 3 - UV - UV - UV -Face 1678 -UV Count: 3 - UV - UV - UV -Face 1679 -UV Count: 3 - UV - UV - UV -Face 1680 -UV Count: 3 - UV - UV - UV -Face 1681 -UV Count: 3 - UV - UV - UV -Face 1682 -UV Count: 3 - UV - UV - UV -Face 1683 -UV Count: 3 - UV - UV - UV -Face 1684 -UV Count: 3 - UV - UV - UV -Face 1685 -UV Count: 3 - UV - UV - UV -Face 1686 -UV Count: 3 - UV - UV - UV -Face 1687 -UV Count: 3 - UV - UV - UV -Face 1688 -UV Count: 3 - UV - UV - UV -Face 1689 -UV Count: 3 - UV - UV - UV -Face 1690 -UV Count: 3 - UV - UV - UV -Face 1691 -UV Count: 3 - UV - UV - UV -Face 1692 -UV Count: 3 - UV - UV - UV -Face 1693 -UV Count: 3 - UV - UV - UV -Face 1694 -UV Count: 3 - UV - UV - UV -Face 1695 -UV Count: 3 - UV - UV - UV -Face 1696 -UV Count: 3 - UV - UV - UV -Face 1697 -UV Count: 3 - UV - UV - UV -Face 1698 -UV Count: 3 - UV - UV - UV -Face 1699 -UV Count: 3 - UV - UV - UV -Face 1700 -UV Count: 3 - UV - UV - UV -Face 1701 -UV Count: 3 - UV - UV - UV -Face 1702 -UV Count: 3 - UV - UV - UV -Face 1703 -UV Count: 3 - UV - UV - UV -Face 1704 -UV Count: 3 - UV - UV - UV -Face 1705 -UV Count: 3 - UV - UV - UV -Face 1706 -UV Count: 3 - UV - UV - UV -Face 1707 -UV Count: 3 - UV - UV - UV -Face 1708 -UV Count: 3 - UV - UV - UV -Face 1709 -UV Count: 3 - UV - UV - UV -Face 1710 -UV Count: 3 - UV - UV - UV -Face 1711 -UV Count: 3 - UV - UV - UV -Face 1712 -UV Count: 3 - UV - UV - UV -Face 1713 -UV Count: 3 - UV - UV - UV -Face 1714 -UV Count: 3 - UV - UV - UV -Face 1715 -UV Count: 3 - UV - UV - UV -Face 1716 -UV Count: 3 - UV - UV - UV -Face 1717 -UV Count: 3 - UV - UV - UV -Face 1718 -UV Count: 3 - UV - UV - UV -Face 1719 -UV Count: 3 - UV - UV - UV -Face 1720 -UV Count: 3 - UV - UV - UV -Face 1721 -UV Count: 3 - UV - UV - UV -Face 1722 -UV Count: 3 - UV - UV - UV -Face 1723 -UV Count: 3 - UV - UV - UV -Face 1724 -UV Count: 3 - UV - UV - UV -Face 1725 -UV Count: 3 - UV - UV - UV -Face 1726 -UV Count: 3 - UV - UV - UV -Face 1727 -UV Count: 3 - UV - UV - UV -Face 1728 -UV Count: 3 - UV - UV - UV -Face 1729 -UV Count: 3 - UV - UV - UV -Face 1730 -UV Count: 3 - UV - UV - UV -Face 1731 -UV Count: 3 - UV - UV - UV -Face 1732 -UV Count: 3 - UV - UV - UV -Face 1733 -UV Count: 3 - UV - UV - UV -Face 1734 -UV Count: 3 - UV - UV - UV -Face 1735 -UV Count: 3 - UV - UV - UV -Face 1736 -UV Count: 3 - UV - UV - UV -Face 1737 -UV Count: 3 - UV - UV - UV -Face 1738 -UV Count: 3 - UV - UV - UV -Face 1739 -UV Count: 3 - UV - UV - UV -Face 1740 -UV Count: 3 - UV - UV - UV -Face 1741 -UV Count: 3 - UV - UV - UV -Face 1742 -UV Count: 3 - UV - UV - UV -Face 1743 -UV Count: 3 - UV - UV - UV -Face 1744 -UV Count: 3 - UV - UV - UV -Face 1745 -UV Count: 3 - UV - UV - UV -Face 1746 -UV Count: 3 - UV - UV - UV -Face 1747 -UV Count: 3 - UV - UV - UV -Face 1748 -UV Count: 3 - UV - UV - UV -Face 1749 -UV Count: 3 - UV - UV - UV -Face 1750 -UV Count: 3 - UV - UV - UV -Face 1751 -UV Count: 3 - UV - UV - UV -Face 1752 -UV Count: 3 - UV - UV - UV -Face 1753 -UV Count: 3 - UV - UV - UV -Face 1754 -UV Count: 3 - UV - UV - UV -Face 1755 -UV Count: 3 - UV - UV - UV -Face 1756 -UV Count: 3 - UV - UV - UV -Face 1757 -UV Count: 3 - UV - UV - UV -Face 1758 -UV Count: 3 - UV - UV - UV -Face 1759 -UV Count: 3 - UV - UV - UV -Face 1760 -UV Count: 3 - UV - UV - UV -Face 1761 -UV Count: 3 - UV - UV - UV -Face 1762 -UV Count: 3 - UV - UV - UV -Face 1763 -UV Count: 3 - UV - UV - UV -Face 1764 -UV Count: 3 - UV - UV - UV -Face 1765 -UV Count: 3 - UV - UV - UV -Face 1766 -UV Count: 3 - UV - UV - UV -Face 1767 -UV Count: 3 - UV - UV - UV -Face 1768 -UV Count: 3 - UV - UV - UV -Face 1769 -UV Count: 3 - UV - UV - UV -Face 1770 -UV Count: 3 - UV - UV - UV -Face 1771 -UV Count: 3 - UV - UV - UV -Face 1772 -UV Count: 3 - UV - UV - UV -Face 1773 -UV Count: 3 - UV - UV - UV -Face 1774 -UV Count: 3 - UV - UV - UV -Face 1775 -UV Count: 3 - UV - UV - UV -Face 1776 -UV Count: 3 - UV - UV - UV -Face 1777 -UV Count: 3 - UV - UV - UV -Face 1778 -UV Count: 3 - UV - UV - UV -Face 1779 -UV Count: 3 - UV - UV - UV -Face 1780 -UV Count: 3 - UV - UV - UV -Face 1781 -UV Count: 3 - UV - UV - UV -Face 1782 -UV Count: 3 - UV - UV - UV -Face 1783 -UV Count: 3 - UV - UV - UV -Face 1784 -UV Count: 3 - UV - UV - UV -Face 1785 -UV Count: 3 - UV - UV - UV -Face 1786 -UV Count: 3 - UV - UV - UV -Face 1787 -UV Count: 3 - UV - UV - UV -Face 1788 -UV Count: 3 - UV - UV - UV -Face 1789 -UV Count: 3 - UV - UV - UV -Face 1790 -UV Count: 3 - UV - UV - UV -Face 1791 -UV Count: 3 - UV - UV - UV -Face 1792 -UV Count: 3 - UV - UV - UV -Face 1793 -UV Count: 3 - UV - UV - UV -Face 1794 -UV Count: 3 - UV - UV - UV -Face 1795 -UV Count: 3 - UV - UV - UV -Face 1796 -UV Count: 3 - UV - UV - UV -Face 1797 -UV Count: 3 - UV - UV - UV -Face 1798 -UV Count: 3 - UV - UV - UV -Face 1799 -UV Count: 3 - UV - UV - UV -Face 1800 -UV Count: 3 - UV - UV - UV -Face 1801 -UV Count: 3 - UV - UV - UV -Face 1802 -UV Count: 3 - UV - UV - UV -Face 1803 -UV Count: 3 - UV - UV - UV -Face 1804 -UV Count: 3 - UV - UV - UV -Face 1805 -UV Count: 3 - UV - UV - UV -Face 1806 -UV Count: 3 - UV - UV - UV -Face 1807 -UV Count: 3 - UV - UV - UV -Face 1808 -UV Count: 3 - UV - UV - UV -Face 1809 -UV Count: 3 - UV - UV - UV -Face 1810 -UV Count: 3 - UV - UV - UV -Face 1811 -UV Count: 3 - UV - UV - UV -Face 1812 -UV Count: 3 - UV - UV - UV -Face 1813 -UV Count: 3 - UV - UV - UV -Face 1814 -UV Count: 3 - UV - UV - UV -Face 1815 -UV Count: 3 - UV - UV - UV -Face 1816 -UV Count: 3 - UV - UV - UV -Face 1817 -UV Count: 3 - UV - UV - UV -Face 1818 -UV Count: 3 - UV - UV - UV -Face 1819 -UV Count: 3 - UV - UV - UV -Face 1820 -UV Count: 3 - UV - UV - UV -Face 1821 -UV Count: 3 - UV - UV - UV -Face 1822 -UV Count: 3 - UV - UV - UV -Face 1823 -UV Count: 3 - UV - UV - UV -Face 1824 -UV Count: 3 - UV - UV - UV -Face 1825 -UV Count: 3 - UV - UV - UV -Face 1826 -UV Count: 3 - UV - UV - UV -Face 1827 -UV Count: 3 - UV - UV - UV -Face 1828 -UV Count: 3 - UV - UV - UV -Face 1829 -UV Count: 3 - UV - UV - UV -Face 1830 -UV Count: 3 - UV - UV - UV -Face 1831 -UV Count: 3 - UV - UV - UV -Face 1832 -UV Count: 3 - UV - UV - UV -Face 1833 -UV Count: 3 - UV - UV - UV -Face 1834 -UV Count: 3 - UV - UV - UV -Face 1835 -UV Count: 3 - UV - UV - UV -Face 1836 -UV Count: 3 - UV - UV - UV -Face 1837 -UV Count: 3 - UV - UV - UV -Face 1838 -UV Count: 3 - UV - UV - UV -Face 1839 -UV Count: 3 - UV - UV - UV -Face 1840 -UV Count: 3 - UV - UV - UV -Face 1841 -UV Count: 3 - UV - UV - UV -Face 1842 -UV Count: 3 - UV - UV - UV -Face 1843 -UV Count: 3 - UV - UV - UV -Face 1844 -UV Count: 3 - UV - UV - UV -Face 1845 -UV Count: 3 - UV - UV - UV -Face 1846 -UV Count: 3 - UV - UV - UV -Face 1847 -UV Count: 3 - UV - UV - UV -Face 1848 -UV Count: 3 - UV - UV - UV -Face 1849 -UV Count: 3 - UV - UV - UV -Face 1850 -UV Count: 3 - UV - UV - UV -Face 1851 -UV Count: 3 - UV - UV - UV -Face 1852 -UV Count: 3 - UV - UV - UV -Face 1853 -UV Count: 3 - UV - UV - UV -Face 1854 -UV Count: 3 - UV - UV - UV -Face 1855 -UV Count: 3 - UV - UV - UV -Face 1856 -UV Count: 3 - UV - UV - UV -Face 1857 -UV Count: 3 - UV - UV - UV -Face 1858 -UV Count: 3 - UV - UV - UV -Face 1859 -UV Count: 3 - UV - UV - UV -Face 1860 -UV Count: 3 - UV - UV - UV -Face 1861 -UV Count: 3 - UV - UV - UV -Face 1862 -UV Count: 3 - UV - UV - UV -Face 1863 -UV Count: 3 - UV - UV - UV -Face 1864 -UV Count: 3 - UV - UV - UV -Face 1865 -UV Count: 3 - UV - UV - UV -Face 1866 -UV Count: 3 - UV - UV - UV -Face 1867 -UV Count: 3 - UV - UV - UV -Face 1868 -UV Count: 3 - UV - UV - UV -Face 1869 -UV Count: 3 - UV - UV - UV -Face 1870 -UV Count: 3 - UV - UV - UV -Face 1871 -UV Count: 3 - UV - UV - UV -Face 1872 -UV Count: 3 - UV - UV - UV -Face 1873 -UV Count: 3 - UV - UV - UV -Face 1874 -UV Count: 3 - UV - UV - UV -Face 1875 -UV Count: 3 - UV - UV - UV -Face 1876 -UV Count: 3 - UV - UV - UV -Face 1877 -UV Count: 3 - UV - UV - UV -Face 1878 -UV Count: 3 - UV - UV - UV -Face 1879 -UV Count: 3 - UV - UV - UV -Face 1880 -UV Count: 3 - UV - UV - UV -Face 1881 -UV Count: 3 - UV - UV - UV -Face 1882 -UV Count: 3 - UV - UV - UV -Face 1883 -UV Count: 3 - UV - UV - UV -Face 1884 -UV Count: 3 - UV - UV - UV -Face 1885 -UV Count: 3 - UV - UV - UV -Face 1886 -UV Count: 3 - UV - UV - UV -Face 1887 -UV Count: 3 - UV - UV - UV -Face 1888 -UV Count: 3 - UV - UV - UV -Face 1889 -UV Count: 3 - UV - UV - UV -Face 1890 -UV Count: 3 - UV - UV - UV -Face 1891 -UV Count: 3 - UV - UV - UV -Face 1892 -UV Count: 3 - UV - UV - UV -Face 1893 -UV Count: 3 - UV - UV - UV -Face 1894 -UV Count: 3 - UV - UV - UV -Face 1895 -UV Count: 3 - UV - UV - UV -Face 1896 -UV Count: 3 - UV - UV - UV -Face 1897 -UV Count: 3 - UV - UV - UV -Face 1898 -UV Count: 3 - UV - UV - UV -Face 1899 -UV Count: 3 - UV - UV - UV -Face 1900 -UV Count: 3 - UV - UV - UV -Face 1901 -UV Count: 3 - UV - UV - UV -Face 1902 -UV Count: 3 - UV - UV - UV -Face 1903 -UV Count: 3 - UV - UV - UV -Face 1904 -UV Count: 3 - UV - UV - UV -Face 1905 -UV Count: 3 - UV - UV - UV -Face 1906 -UV Count: 3 - UV - UV - UV -Face 1907 -UV Count: 3 - UV - UV - UV -Face 1908 -UV Count: 3 - UV - UV - UV -Face 1909 -UV Count: 3 - UV - UV - UV -Face 1910 -UV Count: 3 - UV - UV - UV -Face 1911 -UV Count: 3 - UV - UV - UV -Face 1912 -UV Count: 3 - UV - UV - UV -Face 1913 -UV Count: 3 - UV - UV - UV -Face 1914 -UV Count: 3 - UV - UV - UV -Face 1915 -UV Count: 3 - UV - UV - UV -Face 1916 -UV Count: 3 - UV - UV - UV -Face 1917 -UV Count: 3 - UV - UV - UV -Face 1918 -UV Count: 3 - UV - UV - UV -Face 1919 -UV Count: 3 - UV - UV - UV -Face 1920 -UV Count: 3 - UV - UV - UV -Face 1921 -UV Count: 3 - UV - UV - UV -Face 1922 -UV Count: 3 - UV - UV - UV -Face 1923 -UV Count: 3 - UV - UV - UV -Face 1924 -UV Count: 3 - UV - UV - UV -Face 1925 -UV Count: 3 - UV - UV - UV -Face 1926 -UV Count: 3 - UV - UV - UV -Face 1927 -UV Count: 3 - UV - UV - UV -Face 1928 -UV Count: 3 - UV - UV - UV -Face 1929 -UV Count: 3 - UV - UV - UV -Face 1930 -UV Count: 3 - UV - UV - UV -Face 1931 -UV Count: 3 - UV - UV - UV -Face 1932 -UV Count: 3 - UV - UV - UV -Face 1933 -UV Count: 3 - UV - UV - UV -Face 1934 -UV Count: 3 - UV - UV - UV -Face 1935 -UV Count: 3 - UV - UV - UV -Face 1936 -UV Count: 3 - UV - UV - UV -Face 1937 -UV Count: 3 - UV - UV - UV -Face 1938 -UV Count: 3 - UV - UV - UV -Face 1939 -UV Count: 3 - UV - UV - UV -Face 1940 -UV Count: 3 - UV - UV - UV -Face 1941 -UV Count: 3 - UV - UV - UV -Face 1942 -UV Count: 3 - UV - UV - UV -Face 1943 -UV Count: 3 - UV - UV - UV -Face 1944 -UV Count: 3 - UV - UV - UV -Face 1945 -UV Count: 3 - UV - UV - UV -Face 1946 -UV Count: 3 - UV - UV - UV -Face 1947 -UV Count: 3 - UV - UV - UV -Face 1948 -UV Count: 3 - UV - UV - UV -Face 1949 -UV Count: 3 - UV - UV - UV -Face 1950 -UV Count: 3 - UV - UV - UV -Face 1951 -UV Count: 3 - UV - UV - UV -Face 1952 -UV Count: 3 - UV - UV - UV -Face 1953 -UV Count: 3 - UV - UV - UV -Face 1954 -UV Count: 3 - UV - UV - UV -Face 1955 -UV Count: 3 - UV - UV - UV -Face 1956 -UV Count: 3 - UV - UV - UV -Face 1957 -UV Count: 3 - UV - UV - UV -Face 1958 -UV Count: 3 - UV - UV - UV -Face 1959 -UV Count: 3 - UV - UV - UV -Face 1960 -UV Count: 3 - UV - UV - UV -Face 1961 -UV Count: 3 - UV - UV - UV -Face 1962 -UV Count: 3 - UV - UV - UV -Face 1963 -UV Count: 3 - UV - UV - UV -Face 1964 -UV Count: 3 - UV - UV - UV -Face 1965 -UV Count: 3 - UV - UV - UV -Face 1966 -UV Count: 3 - UV - UV - UV -Face 1967 -UV Count: 3 - UV - UV - UV -Face 1968 -UV Count: 3 - UV - UV - UV -Face 1969 -UV Count: 3 - UV - UV - UV -Face 1970 -UV Count: 3 - UV - UV - UV -Face 1971 -UV Count: 3 - UV - UV - UV -Face 1972 -UV Count: 3 - UV - UV - UV -Face 1973 -UV Count: 3 - UV - UV - UV -Face 1974 -UV Count: 3 - UV - UV - UV -Face 1975 -UV Count: 3 - UV - UV - UV -Face 1976 -UV Count: 3 - UV - UV - UV -Face 1977 -UV Count: 3 - UV - UV - UV -Face 1978 -UV Count: 3 - UV - UV - UV -Face 1979 -UV Count: 3 - UV - UV - UV -Face 1980 -UV Count: 3 - UV - UV - UV -Face 1981 -UV Count: 3 - UV - UV - UV -Face 1982 -UV Count: 3 - UV - UV - UV -Face 1983 -UV Count: 3 - UV - UV - UV -Face 1984 -UV Count: 3 - UV - UV - UV -Face 1985 -UV Count: 3 - UV - UV - UV -Face 1986 -UV Count: 3 - UV - UV - UV -Face 1987 -UV Count: 3 - UV - UV - UV -Face 1988 -UV Count: 3 - UV - UV - UV -Face 1989 -UV Count: 3 - UV - UV - UV -Face 1990 -UV Count: 3 - UV - UV - UV -Face 1991 -UV Count: 3 - UV - UV - UV -Face 1992 -UV Count: 3 - UV - UV - UV -Face 1993 -UV Count: 3 - UV - UV - UV -Face 1994 -UV Count: 3 - UV - UV - UV -Face 1995 -UV Count: 3 - UV - UV - UV -Face 1996 -UV Count: 3 - UV - UV - UV -Face 1997 -UV Count: 3 - UV - UV - UV -Face 1998 -UV Count: 3 - UV - UV - UV -Face 1999 -UV Count: 3 - UV - UV - UV -Face 2000 -UV Count: 3 - UV - UV - UV -Face 2001 -UV Count: 3 - UV - UV - UV -Face 2002 -UV Count: 3 - UV - UV - UV -Face 2003 -UV Count: 3 - UV - UV - UV -Face 2004 -UV Count: 3 - UV - UV - UV -Face 2005 -UV Count: 3 - UV - UV - UV -Face 2006 -UV Count: 3 - UV - UV - UV -Face 2007 -UV Count: 3 - UV - UV - UV -Face 2008 -UV Count: 3 - UV - UV - UV -Face 2009 -UV Count: 3 - UV - UV - UV -Face 2010 -UV Count: 3 - UV - UV - UV -Face 2011 -UV Count: 3 - UV - UV - UV -Face 2012 -UV Count: 3 - UV - UV - UV -Face 2013 -UV Count: 3 - UV - UV - UV -Face 2014 -UV Count: 3 - UV - UV - UV -Face 2015 -UV Count: 3 - UV - UV - UV -Face 2016 -UV Count: 3 - UV - UV - UV -Face 2017 -UV Count: 3 - UV - UV - UV -Face 2018 -UV Count: 3 - UV - UV - UV -Face 2019 -UV Count: 3 - UV - UV - UV -Face 2020 -UV Count: 3 - UV - UV - UV -Face 2021 -UV Count: 3 - UV - UV - UV -Face 2022 -UV Count: 3 - UV - UV - UV -Face 2023 -UV Count: 3 - UV - UV - UV -Face 2024 -UV Count: 3 - UV - UV - UV -Face 2025 -UV Count: 3 - UV - UV - UV -Face 2026 -UV Count: 3 - UV - UV - UV -Face 2027 -UV Count: 3 - UV - UV - UV -Face 2028 -UV Count: 3 - UV - UV - UV -Face 2029 -UV Count: 3 - UV - UV - UV -Face 2030 -UV Count: 3 - UV - UV - UV -Face 2031 -UV Count: 3 - UV - UV - UV -Face 2032 -UV Count: 3 - UV - UV - UV -Face 2033 -UV Count: 3 - UV - UV - UV -Face 2034 -UV Count: 3 - UV - UV - UV -Face 2035 -UV Count: 3 - UV - UV - UV -Face 2036 -UV Count: 3 - UV - UV - UV -Face 2037 -UV Count: 3 - UV - UV - UV -Face 2038 -UV Count: 3 - UV - UV - UV -Face 2039 -UV Count: 3 - UV - UV - UV -Face 2040 -UV Count: 3 - UV - UV - UV -Face 2041 -UV Count: 3 - UV - UV - UV -Face 2042 -UV Count: 3 - UV - UV - UV -Face 2043 -UV Count: 3 - UV - UV - UV -Face 2044 -UV Count: 3 - UV - UV - UV -Face 2045 -UV Count: 3 - UV - UV - UV -Face 2046 -UV Count: 3 - UV - UV - UV -Face 2047 -UV Count: 3 - UV - UV - UV -Face 2048 -UV Count: 3 - UV - UV - UV -Face 2049 -UV Count: 3 - UV - UV - UV -Face 2050 -UV Count: 3 - UV - UV - UV -Face 2051 -UV Count: 3 - UV - UV - UV -Face 2052 -UV Count: 3 - UV - UV - UV -Face 2053 -UV Count: 3 - UV - UV - UV -Face 2054 -UV Count: 3 - UV - UV - UV -Face 2055 -UV Count: 3 - UV - UV - UV -Face 2056 -UV Count: 3 - UV - UV - UV -Face 2057 -UV Count: 3 - UV - UV - UV -Face 2058 -UV Count: 3 - UV - UV - UV -Face 2059 -UV Count: 3 - UV - UV - UV -Face 2060 -UV Count: 3 - UV - UV - UV -Face 2061 -UV Count: 3 - UV - UV - UV -Face 2062 -UV Count: 3 - UV - UV - UV -Face 2063 -UV Count: 3 - UV - UV - UV -Face 2064 -UV Count: 3 - UV - UV - UV -Face 2065 -UV Count: 3 - UV - UV - UV -Face 2066 -UV Count: 3 - UV - UV - UV -Face 2067 -UV Count: 3 - UV - UV - UV -Face 2068 -UV Count: 3 - UV - UV - UV -Face 2069 -UV Count: 3 - UV - UV - UV -Face 2070 -UV Count: 3 - UV - UV - UV -Face 2071 -UV Count: 3 - UV - UV - UV -Face 2072 -UV Count: 3 - UV - UV - UV -Face 2073 -UV Count: 3 - UV - UV - UV -Face 2074 -UV Count: 3 - UV - UV - UV -Face 2075 -UV Count: 3 - UV - UV - UV -Face 2076 -UV Count: 3 - UV - UV - UV -Face 2077 -UV Count: 3 - UV - UV - UV -Face 2078 -UV Count: 3 - UV - UV - UV -Face 2079 -UV Count: 3 - UV - UV - UV -Face 2080 -UV Count: 3 - UV - UV - UV -Face 2081 -UV Count: 3 - UV - UV - UV -Face 2082 -UV Count: 3 - UV - UV - UV -Face 2083 -UV Count: 3 - UV - UV - UV -Face 2084 -UV Count: 3 - UV - UV - UV -Face 2085 -UV Count: 3 - UV - UV - UV -Face 2086 -UV Count: 3 - UV - UV - UV -Face 2087 -UV Count: 3 - UV - UV - UV -Face 2088 -UV Count: 3 - UV - UV - UV -Face 2089 -UV Count: 3 - UV - UV - UV -Face 2090 -UV Count: 3 - UV - UV - UV -Face 2091 -UV Count: 3 - UV - UV - UV -Face 2092 -UV Count: 3 - UV - UV - UV -Face 2093 -UV Count: 3 - UV - UV - UV -Face 2094 -UV Count: 3 - UV - UV - UV -Face 2095 -UV Count: 3 - UV - UV - UV -Face 2096 -UV Count: 3 - UV - UV - UV -Face 2097 -UV Count: 3 - UV - UV - UV -Face 2098 -UV Count: 3 - UV - UV - UV -Face 2099 -UV Count: 3 - UV - UV - UV -Face 2100 -UV Count: 3 - UV - UV - UV -Face 2101 -UV Count: 3 - UV - UV - UV -Face 2102 -UV Count: 3 - UV - UV - UV -Face 2103 -UV Count: 3 - UV - UV - UV -Face 2104 -UV Count: 3 - UV - UV - UV -Face 2105 -UV Count: 3 - UV - UV - UV -Face 2106 -UV Count: 3 - UV - UV - UV -Face 2107 -UV Count: 3 - UV - UV - UV -Face 2108 -UV Count: 3 - UV - UV - UV -Face 2109 -UV Count: 3 - UV - UV - UV -Face 2110 -UV Count: 3 - UV - UV - UV -Face 2111 -UV Count: 3 - UV - UV - UV -Face 2112 -UV Count: 3 - UV - UV - UV -Face 2113 -UV Count: 3 - UV - UV - UV -Face 2114 -UV Count: 3 - UV - UV - UV -Face 2115 -UV Count: 3 - UV - UV - UV -Face 2116 -UV Count: 3 - UV - UV - UV -Face 2117 -UV Count: 3 - UV - UV - UV -Face 2118 -UV Count: 3 - UV - UV - UV -Face 2119 -UV Count: 3 - UV - UV - UV -Face 2120 -UV Count: 3 - UV - UV - UV -Face 2121 -UV Count: 3 - UV - UV - UV -Face 2122 -UV Count: 3 - UV - UV - UV -Face 2123 -UV Count: 3 - UV - UV - UV -Face 2124 -UV Count: 3 - UV - UV - UV -Face 2125 -UV Count: 3 - UV - UV - UV -Face 2126 -UV Count: 3 - UV - UV - UV -Face 2127 -UV Count: 3 - UV - UV - UV -Face 2128 -UV Count: 3 - UV - UV - UV -Face 2129 -UV Count: 3 - UV - UV - UV -Face 2130 -UV Count: 3 - UV - UV - UV -Face 2131 -UV Count: 3 - UV - UV - UV -Face 2132 -UV Count: 3 - UV - UV - UV -Face 2133 -UV Count: 3 - UV - UV - UV -Face 2134 -UV Count: 3 - UV - UV - UV -Face 2135 -UV Count: 3 - UV - UV - UV -Face 2136 -UV Count: 3 - UV - UV - UV -Face 2137 -UV Count: 3 - UV - UV - UV -Face 2138 -UV Count: 3 - UV - UV - UV -Face 2139 -UV Count: 3 - UV - UV - UV -Face 2140 -UV Count: 3 - UV - UV - UV -Face 2141 -UV Count: 3 - UV - UV - UV -Face 2142 -UV Count: 3 - UV - UV - UV -Face 2143 -UV Count: 3 - UV - UV - UV -Face 2144 -UV Count: 3 - UV - UV - UV -Face 2145 -UV Count: 3 - UV - UV - UV -Face 2146 -UV Count: 3 - UV - UV - UV -Face 2147 -UV Count: 3 - UV - UV - UV -Face 2148 -UV Count: 3 - UV - UV - UV -Face 2149 -UV Count: 3 - UV - UV - UV -Face 2150 -UV Count: 3 - UV - UV - UV -Face 2151 -UV Count: 3 - UV - UV - UV -Face 2152 -UV Count: 3 - UV - UV - UV -Face 2153 -UV Count: 3 - UV - UV - UV -Face 2154 -UV Count: 3 - UV - UV - UV -Face 2155 -UV Count: 3 - UV - UV - UV -Face 2156 -UV Count: 3 - UV - UV - UV -Face 2157 -UV Count: 3 - UV - UV - UV -Face 2158 -UV Count: 3 - UV - UV - UV -Face 2159 -UV Count: 3 - UV - UV - UV -Face 2160 -UV Count: 3 - UV - UV - UV -Face 2161 -UV Count: 3 - UV - UV - UV -Face 2162 -UV Count: 3 - UV - UV - UV -Face 2163 -UV Count: 3 - UV - UV - UV -Face 2164 -UV Count: 3 - UV - UV - UV -Face 2165 -UV Count: 3 - UV - UV - UV -Face 2166 -UV Count: 3 - UV - UV - UV -Face 2167 -UV Count: 3 - UV - UV - UV -Face 2168 -UV Count: 3 - UV - UV - UV -Face 2169 -UV Count: 3 - UV - UV - UV -Face 2170 -UV Count: 3 - UV - UV - UV -Face 2171 -UV Count: 3 - UV - UV - UV -Face 2172 -UV Count: 3 - UV - UV - UV -Face 2173 -UV Count: 3 - UV - UV - UV -Face 2174 -UV Count: 3 - UV - UV - UV -Face 2175 -UV Count: 3 - UV - UV - UV -Face 2176 -UV Count: 3 - UV - UV - UV -Face 2177 -UV Count: 3 - UV - UV - UV -Face 2178 -UV Count: 3 - UV - UV - UV -Face 2179 -UV Count: 3 - UV - UV - UV -Face 2180 -UV Count: 3 - UV - UV - UV -Face 2181 -UV Count: 3 - UV - UV - UV -Face 2182 -UV Count: 3 - UV - UV - UV -Face 2183 -UV Count: 3 - UV - UV - UV -Face 2184 -UV Count: 3 - UV - UV - UV -Face 2185 -UV Count: 3 - UV - UV - UV -Face 2186 -UV Count: 3 - UV - UV - UV -Face 2187 -UV Count: 3 - UV - UV - UV -Face 2188 -UV Count: 3 - UV - UV - UV -Face 2189 -UV Count: 3 - UV - UV - UV -Face 2190 -UV Count: 3 - UV - UV - UV -Face 2191 -UV Count: 3 - UV - UV - UV -Face 2192 -UV Count: 3 - UV - UV - UV -Face 2193 -UV Count: 3 - UV - UV - UV -Face 2194 -UV Count: 3 - UV - UV - UV -Face 2195 -UV Count: 3 - UV - UV - UV -Face 2196 -UV Count: 3 - UV - UV - UV -Face 2197 -UV Count: 3 - UV - UV - UV -Face 2198 -UV Count: 3 - UV - UV - UV -Face 2199 -UV Count: 3 - UV - UV - UV -Face 2200 -UV Count: 3 - UV - UV - UV -Face 2201 -UV Count: 3 - UV - UV - UV -Face 2202 -UV Count: 3 - UV - UV - UV -Face 2203 -UV Count: 3 - UV - UV - UV -Face 2204 -UV Count: 3 - UV - UV - UV -Face 2205 -UV Count: 3 - UV - UV - UV -Face 2206 -UV Count: 3 - UV - UV - UV -Face 2207 -UV Count: 3 - UV - UV - UV -Face 2208 -UV Count: 3 - UV - UV - UV -Face 2209 -UV Count: 3 - UV - UV - UV -Face 2210 -UV Count: 3 - UV - UV - UV -Face 2211 -UV Count: 3 - UV - UV - UV -Face 2212 -UV Count: 3 - UV - UV - UV -Face 2213 -UV Count: 3 - UV - UV - UV -Face 2214 -UV Count: 3 - UV - UV - UV -Face 2215 -UV Count: 3 - UV - UV - UV -Face 2216 -UV Count: 3 - UV - UV - UV -Face 2217 -UV Count: 3 - UV - UV - UV -Face 2218 -UV Count: 3 - UV - UV - UV -Face 2219 -UV Count: 3 - UV - UV - UV -Face 2220 -UV Count: 3 - UV - UV - UV -Face 2221 -UV Count: 3 - UV - UV - UV -Face 2222 -UV Count: 3 - UV - UV - UV -Face 2223 -UV Count: 3 - UV - UV - UV -Face 2224 -UV Count: 3 - UV - UV - UV -Face 2225 -UV Count: 3 - UV - UV - UV -Face 2226 -UV Count: 3 - UV - UV - UV -Face 2227 -UV Count: 3 - UV - UV - UV -Face 2228 -UV Count: 3 - UV - UV - UV -Face 2229 -UV Count: 3 - UV - UV - UV -Face 2230 -UV Count: 3 - UV - UV - UV -Face 2231 -UV Count: 3 - UV - UV - UV -Face 2232 -UV Count: 3 - UV - UV - UV -Face 2233 -UV Count: 3 - UV - UV - UV -Face 2234 -UV Count: 3 - UV - UV - UV -Face 2235 -UV Count: 3 - UV - UV - UV -Face 2236 -UV Count: 3 - UV - UV - UV -Face 2237 -UV Count: 3 - UV - UV - UV -Face 2238 -UV Count: 3 - UV - UV - UV -Face 2239 -UV Count: 3 - UV - UV - UV -Face 2240 -UV Count: 3 - UV - UV - UV -Face 2241 -UV Count: 3 - UV - UV - UV -Face 2242 -UV Count: 3 - UV - UV - UV -Face 2243 -UV Count: 3 - UV - UV - UV -Face 2244 -UV Count: 3 - UV - UV - UV -Face 2245 -UV Count: 3 - UV - UV - UV -Face 2246 -UV Count: 3 - UV - UV - UV -Face 2247 -UV Count: 3 - UV - UV - UV -Face 2248 -UV Count: 3 - UV - UV - UV -Face 2249 -UV Count: 3 - UV - UV - UV -Face 2250 -UV Count: 3 - UV - UV - UV -Face 2251 -UV Count: 3 - UV - UV - UV -Face 2252 -UV Count: 3 - UV - UV - UV -Face 2253 -UV Count: 3 - UV - UV - UV -Face 2254 -UV Count: 3 - UV - UV - UV -Face 2255 -UV Count: 3 - UV - UV - UV -Face 2256 -UV Count: 3 - UV - UV - UV -Face 2257 -UV Count: 3 - UV - UV - UV -Face 2258 -UV Count: 3 - UV - UV - UV -Face 2259 -UV Count: 3 - UV - UV - UV -Face 2260 -UV Count: 3 - UV - UV - UV -Face 2261 -UV Count: 3 - UV - UV - UV -Face 2262 -UV Count: 3 - UV - UV - UV -Face 2263 -UV Count: 3 - UV - UV - UV -Face 2264 -UV Count: 3 - UV - UV - UV -Face 2265 -UV Count: 3 - UV - UV - UV -Face 2266 -UV Count: 3 - UV - UV - UV -Face 2267 -UV Count: 3 - UV - UV - UV -Face 2268 -UV Count: 3 - UV - UV - UV -Face 2269 -UV Count: 3 - UV - UV - UV -Face 2270 -UV Count: 3 - UV - UV - UV -Face 2271 -UV Count: 3 - UV - UV - UV -Face 2272 -UV Count: 3 - UV - UV - UV -Face 2273 -UV Count: 3 - UV - UV - UV -Face 2274 -UV Count: 3 - UV - UV - UV -Face 2275 -UV Count: 3 - UV - UV - UV -Face 2276 -UV Count: 3 - UV - UV - UV -Face 2277 -UV Count: 3 - UV - UV - UV -Face 2278 -UV Count: 3 - UV - UV - UV -Face 2279 -UV Count: 3 - UV - UV - UV -Face 2280 -UV Count: 3 - UV - UV - UV -Face 2281 -UV Count: 3 - UV - UV - UV -Face 2282 -UV Count: 3 - UV - UV - UV -Face 2283 -UV Count: 3 - UV - UV - UV -Face 2284 -UV Count: 3 - UV - UV - UV -Face 2285 -UV Count: 3 - UV - UV - UV -Face 2286 -UV Count: 3 - UV - UV - UV -Face 2287 -UV Count: 3 - UV - UV - UV -Face 2288 -UV Count: 3 - UV - UV - UV -Face 2289 -UV Count: 3 - UV - UV - UV -Face 2290 -UV Count: 3 - UV - UV - UV -Face 2291 -UV Count: 3 - UV - UV - UV -Face 2292 -UV Count: 3 - UV - UV - UV -Face 2293 -UV Count: 3 - UV - UV - UV -Face 2294 -UV Count: 3 - UV - UV - UV -Face 2295 -UV Count: 3 - UV - UV - UV -Face 2296 -UV Count: 3 - UV - UV - UV -Face 2297 -UV Count: 3 - UV - UV - UV -Face 2298 -UV Count: 3 - UV - UV - UV -Face 2299 -UV Count: 3 - UV - UV - UV -Face 2300 -UV Count: 3 - UV - UV - UV -Face 2301 -UV Count: 3 - UV - UV - UV -Face 2302 -UV Count: 3 - UV - UV - UV -Face 2303 -UV Count: 3 - UV - UV - UV -Face 2304 -UV Count: 3 - UV - UV - UV -Face 2305 -UV Count: 3 - UV - UV - UV -Face 2306 -UV Count: 3 - UV - UV - UV -Face 2307 -UV Count: 3 - UV - UV - UV -Face 2308 -UV Count: 3 - UV - UV - UV -Face 2309 -UV Count: 3 - UV - UV - UV -Face 2310 -UV Count: 3 - UV - UV - UV -Face 2311 -UV Count: 3 - UV - UV - UV -Face 2312 -UV Count: 3 - UV - UV - UV -Face 2313 -UV Count: 3 - UV - UV - UV -Face 2314 -UV Count: 3 - UV - UV - UV -Face 2315 -UV Count: 3 - UV - UV - UV -Face 2316 -UV Count: 3 - UV - UV - UV -Face 2317 -UV Count: 3 - UV - UV - UV -Face 2318 -UV Count: 3 - UV - UV - UV -Face 2319 -UV Count: 3 - UV - UV - UV -Face 2320 -UV Count: 3 - UV - UV - UV -Face 2321 -UV Count: 3 - UV - UV - UV -Face 2322 -UV Count: 3 - UV - UV - UV -Face 2323 -UV Count: 3 - UV - UV - UV -Face 2324 -UV Count: 3 - UV - UV - UV -Face 2325 -UV Count: 3 - UV - UV - UV -Face 2326 -UV Count: 3 - UV - UV - UV -Face 2327 -UV Count: 3 - UV - UV - UV -Face 2328 -UV Count: 3 - UV - UV - UV -Face 2329 -UV Count: 3 - UV - UV - UV -Face 2330 -UV Count: 3 - UV - UV - UV -Face 2331 -UV Count: 3 - UV - UV - UV -Face 2332 -UV Count: 3 - UV - UV - UV -Face 2333 -UV Count: 3 - UV - UV - UV -Face 2334 -UV Count: 3 - UV - UV - UV -Face 2335 -UV Count: 3 - UV - UV - UV -Face 2336 -UV Count: 3 - UV - UV - UV -Face 2337 -UV Count: 3 - UV - UV - UV -Face 2338 -UV Count: 3 - UV - UV - UV -Face 2339 -UV Count: 3 - UV - UV - UV -Face 2340 -UV Count: 3 - UV - UV - UV -Face 2341 -UV Count: 3 - UV - UV - UV -Face 2342 -UV Count: 3 - UV - UV - UV -Face 2343 -UV Count: 3 - UV - UV - UV -Face 2344 -UV Count: 3 - UV - UV - UV -Face 2345 -UV Count: 3 - UV - UV - UV -Face 2346 -UV Count: 3 - UV - UV - UV -Face 2347 -UV Count: 3 - UV - UV - UV -Face 2348 -UV Count: 3 - UV - UV - UV -Face 2349 -UV Count: 3 - UV - UV - UV -Face 2350 -UV Count: 3 - UV - UV - UV -Face 2351 -UV Count: 3 - UV - UV - UV -Face 2352 -UV Count: 3 - UV - UV - UV -Face 2353 -UV Count: 3 - UV - UV - UV -Face 2354 -UV Count: 3 - UV - UV - UV -Face 2355 -UV Count: 3 - UV - UV - UV -Face 2356 -UV Count: 3 - UV - UV - UV -Face 2357 -UV Count: 3 - UV - UV - UV -Face 2358 -UV Count: 3 - UV - UV - UV -Face 2359 -UV Count: 3 - UV - UV - UV -Face 2360 -UV Count: 3 - UV - UV - UV -Face 2361 -UV Count: 3 - UV - UV - UV -Face 2362 -UV Count: 3 - UV - UV - UV -Face 2363 -UV Count: 3 - UV - UV - UV -Face 2364 -UV Count: 3 - UV - UV - UV -Face 2365 -UV Count: 3 - UV - UV - UV -Face 2366 -UV Count: 3 - UV - UV - UV -Face 2367 -UV Count: 3 - UV - UV - UV -Face 2368 -UV Count: 3 - UV - UV - UV -Face 2369 -UV Count: 3 - UV - UV - UV -Face 2370 -UV Count: 3 - UV - UV - UV -Face 2371 -UV Count: 3 - UV - UV - UV -Face 2372 -UV Count: 3 - UV - UV - UV -Face 2373 -UV Count: 3 - UV - UV - UV -Face 2374 -UV Count: 3 - UV - UV - UV -Face 2375 -UV Count: 3 - UV - UV - UV -Face 2376 -UV Count: 3 - UV - UV - UV -Face 2377 -UV Count: 3 - UV - UV - UV -Face 2378 -UV Count: 3 - UV - UV - UV -Face 2379 -UV Count: 3 - UV - UV - UV -Face 2380 -UV Count: 3 - UV - UV - UV -Face 2381 -UV Count: 3 - UV - UV - UV -Face 2382 -UV Count: 3 - UV - UV - UV -Face 2383 -UV Count: 3 - UV - UV - UV -Face 2384 -UV Count: 3 - UV - UV - UV -Face 2385 -UV Count: 3 - UV - UV - UV -Face 2386 -UV Count: 3 - UV - UV - UV -Face 2387 -UV Count: 3 - UV - UV - UV -Face 2388 -UV Count: 3 - UV - UV - UV -Face 2389 -UV Count: 3 - UV - UV - UV -Face 2390 -UV Count: 3 - UV - UV - UV -Face 2391 -UV Count: 3 - UV - UV - UV -Face 2392 -UV Count: 3 - UV - UV - UV -Face 2393 -UV Count: 3 - UV - UV - UV -Face 2394 -UV Count: 3 - UV - UV - UV -Face 2395 -UV Count: 3 - UV - UV - UV -Face 2396 -UV Count: 3 - UV - UV - UV -Face 2397 -UV Count: 3 - UV - UV - UV -Face 2398 -UV Count: 3 - UV - UV - UV -Face 2399 -UV Count: 3 - UV - UV - UV -Face 2400 -UV Count: 3 - UV - UV - UV -Face 2401 -UV Count: 3 - UV - UV - UV -Face 2402 -UV Count: 3 - UV - UV - UV -Face 2403 -UV Count: 3 - UV - UV - UV -Face 2404 -UV Count: 3 - UV - UV - UV -Face 2405 -UV Count: 3 - UV - UV - UV -Face 2406 -UV Count: 3 - UV - UV - UV -Face 2407 -UV Count: 3 - UV - UV - UV -Face 2408 -UV Count: 3 - UV - UV - UV -Face 2409 -UV Count: 3 - UV - UV - UV -Face 2410 -UV Count: 3 - UV - UV - UV -Face 2411 -UV Count: 3 - UV - UV - UV -Face 2412 -UV Count: 3 - UV - UV - UV -Face 2413 -UV Count: 3 - UV - UV - UV -Face 2414 -UV Count: 3 - UV - UV - UV -Face 2415 -UV Count: 3 - UV - UV - UV -Face 2416 -UV Count: 3 - UV - UV - UV -Face 2417 -UV Count: 3 - UV - UV - UV -Face 2418 -UV Count: 3 - UV - UV - UV -Face 2419 -UV Count: 3 - UV - UV - UV -Face 2420 -UV Count: 3 - UV - UV - UV -Face 2421 -UV Count: 3 - UV - UV - UV -Face 2422 -UV Count: 3 - UV - UV - UV -Face 2423 -UV Count: 3 - UV - UV - UV -Face 2424 -UV Count: 3 - UV - UV - UV -Face 2425 -UV Count: 3 - UV - UV - UV -Face 2426 -UV Count: 3 - UV - UV - UV -Face 2427 -UV Count: 3 - UV - UV - UV -Face 2428 -UV Count: 3 - UV - UV - UV -Face 2429 -UV Count: 3 - UV - UV - UV -Face 2430 -UV Count: 3 - UV - UV - UV -Face 2431 -UV Count: 3 - UV - UV - UV -Face 2432 -UV Count: 3 - UV - UV - UV -Face 2433 -UV Count: 3 - UV - UV - UV -Face 2434 -UV Count: 3 - UV - UV - UV -Face 2435 -UV Count: 3 - UV - UV - UV -Face 2436 -UV Count: 3 - UV - UV - UV -Face 2437 -UV Count: 3 - UV - UV - UV -Face 2438 -UV Count: 3 - UV - UV - UV -Face 2439 -UV Count: 3 - UV - UV - UV -Face 2440 -UV Count: 3 - UV - UV - UV -Face 2441 -UV Count: 3 - UV - UV - UV -Face 2442 -UV Count: 3 - UV - UV - UV -Face 2443 -UV Count: 3 - UV - UV - UV -Face 2444 -UV Count: 3 - UV - UV - UV -Face 2445 -UV Count: 3 - UV - UV - UV -Face 2446 -UV Count: 3 - UV - UV - UV -Face 2447 -UV Count: 3 - UV - UV - UV -Face 2448 -UV Count: 3 - UV - UV - UV -Face 2449 -UV Count: 3 - UV - UV - UV -Face 2450 -UV Count: 3 - UV - UV - UV -Face 2451 -UV Count: 3 - UV - UV - UV -Face 2452 -UV Count: 3 - UV - UV - UV -Face 2453 -UV Count: 3 - UV - UV - UV -Face 2454 -UV Count: 3 - UV - UV - UV -Face 2455 -UV Count: 3 - UV - UV - UV -Face 2456 -UV Count: 3 - UV - UV - UV -Face 2457 -UV Count: 3 - UV - UV - UV -Face 2458 -UV Count: 3 - UV - UV - UV -Face 2459 -UV Count: 3 - UV - UV - UV -Face 2460 -UV Count: 3 - UV - UV - UV -Face 2461 -UV Count: 3 - UV - UV - UV -Face 2462 -UV Count: 3 - UV - UV - UV -Face 2463 -UV Count: 3 - UV - UV - UV -Face 2464 -UV Count: 3 - UV - UV - UV -Face 2465 -UV Count: 3 - UV - UV - UV -Face 2466 -UV Count: 3 - UV - UV - UV -Face 2467 -UV Count: 3 - UV - UV - UV -Face 2468 -UV Count: 3 - UV - UV - UV -Face 2469 -UV Count: 3 - UV - UV - UV -Face 2470 -UV Count: 3 - UV - UV - UV -Face 2471 -UV Count: 3 - UV - UV - UV -Face 2472 -UV Count: 3 - UV - UV - UV -Face 2473 -UV Count: 3 - UV - UV - UV -Face 2474 -UV Count: 3 - UV - UV - UV -Face 2475 -UV Count: 3 - UV - UV - UV -Face 2476 -UV Count: 3 - UV - UV - UV -Face 2477 -UV Count: 3 - UV - UV - UV -Face 2478 -UV Count: 3 - UV - UV - UV -Face 2479 -UV Count: 3 - UV - UV - UV -Face 2480 -UV Count: 3 - UV - UV - UV -Face 2481 -UV Count: 3 - UV - UV - UV -Face 2482 -UV Count: 3 - UV - UV - UV -Face 2483 -UV Count: 3 - UV - UV - UV -Face 2484 -UV Count: 3 - UV - UV - UV -Face 2485 -UV Count: 3 - UV - UV - UV -Face 2486 -UV Count: 3 - UV - UV - UV -Face 2487 -UV Count: 3 - UV - UV - UV -Face 2488 -UV Count: 3 - UV - UV - UV -Face 2489 -UV Count: 3 - UV - UV - UV -Face 2490 -UV Count: 3 - UV - UV - UV -Face 2491 -UV Count: 3 - UV - UV - UV -Face 2492 -UV Count: 3 - UV - UV - UV -Face 2493 -UV Count: 3 - UV - UV - UV -Face 2494 -UV Count: 3 - UV - UV - UV -Face 2495 -UV Count: 3 - UV - UV - UV -Face 2496 -UV Count: 3 - UV - UV - UV -Face 2497 -UV Count: 3 - UV - UV - UV -Face 2498 -UV Count: 3 - UV - UV - UV -Face 2499 -UV Count: 3 - UV - UV - UV -Face 2500 -UV Count: 3 - UV - UV - UV -Face 2501 -UV Count: 3 - UV - UV - UV -Face 2502 -UV Count: 3 - UV - UV - UV -Face 2503 -UV Count: 3 - UV - UV - UV -Face 2504 -UV Count: 3 - UV - UV - UV -Face 2505 -UV Count: 3 - UV - UV - UV -Face 2506 -UV Count: 3 - UV - UV - UV -Face 2507 -UV Count: 3 - UV - UV - UV -Face 2508 -UV Count: 3 - UV - UV - UV -Face 2509 -UV Count: 3 - UV - UV - UV -Face 2510 -UV Count: 3 - UV - UV - UV -Face 2511 -UV Count: 3 - UV - UV - UV -Face 2512 -UV Count: 3 - UV - UV - UV -Face 2513 -UV Count: 3 - UV - UV - UV -Face 2514 -UV Count: 3 - UV - UV - UV -Face 2515 -UV Count: 3 - UV - UV - UV -Face 2516 -UV Count: 3 - UV - UV - UV -Face 2517 -UV Count: 3 - UV - UV - UV -Face 2518 -UV Count: 3 - UV - UV - UV -Face 2519 -UV Count: 3 - UV - UV - UV -Face 2520 -UV Count: 3 - UV - UV - UV -Face 2521 -UV Count: 3 - UV - UV - UV -Face 2522 -UV Count: 3 - UV - UV - UV -Face 2523 -UV Count: 3 - UV - UV - UV -Face 2524 -UV Count: 3 - UV - UV - UV -Face 2525 -UV Count: 3 - UV - UV - UV -Face 2526 -UV Count: 3 - UV - UV - UV -Face 2527 -UV Count: 3 - UV - UV - UV -Face 2528 -UV Count: 3 - UV - UV - UV -Face 2529 -UV Count: 3 - UV - UV - UV -Face 2530 -UV Count: 3 - UV - UV - UV -Face 2531 -UV Count: 3 - UV - UV - UV -Face 2532 -UV Count: 3 - UV - UV - UV -Face 2533 -UV Count: 3 - UV - UV - UV -Face 2534 -UV Count: 3 - UV - UV - UV -Face 2535 -UV Count: 3 - UV - UV - UV -Face 2536 -UV Count: 3 - UV - UV - UV -Face 2537 -UV Count: 3 - UV - UV - UV -Face 2538 -UV Count: 3 - UV - UV - UV -Face 2539 -UV Count: 3 - UV - UV - UV -Face 2540 -UV Count: 3 - UV - UV - UV -Face 2541 -UV Count: 3 - UV - UV - UV -Face 2542 -UV Count: 3 - UV - UV - UV -Face 2543 -UV Count: 3 - UV - UV - UV -Face 2544 -UV Count: 3 - UV - UV - UV -Face 2545 -UV Count: 3 - UV - UV - UV -Face 2546 -UV Count: 3 - UV - UV - UV -Face 2547 -UV Count: 3 - UV - UV - UV -Face 2548 -UV Count: 3 - UV - UV - UV -Face 2549 -UV Count: 3 - UV - UV - UV -Face 2550 -UV Count: 3 - UV - UV - UV -Face 2551 -UV Count: 3 - UV - UV - UV -Face 2552 -UV Count: 3 - UV - UV - UV -Face 2553 -UV Count: 3 - UV - UV - UV -Face 2554 -UV Count: 3 - UV - UV - UV -Face 2555 -UV Count: 3 - UV - UV - UV -Face 2556 -UV Count: 3 - UV - UV - UV -Face 2557 -UV Count: 3 - UV - UV - UV -Face 2558 -UV Count: 3 - UV - UV - UV -Face 2559 -UV Count: 3 - UV - UV - UV -Face 2560 -UV Count: 3 - UV - UV - UV -Face 2561 -UV Count: 3 - UV - UV - UV -Face 2562 -UV Count: 3 - UV - UV - UV -Face 2563 -UV Count: 3 - UV - UV - UV -Face 2564 -UV Count: 3 - UV - UV - UV -Face 2565 -UV Count: 3 - UV - UV - UV -Face 2566 -UV Count: 3 - UV - UV - UV -Face 2567 -UV Count: 3 - UV - UV - UV -Face 2568 -UV Count: 3 - UV - UV - UV -Face 2569 -UV Count: 3 - UV - UV - UV -Face 2570 -UV Count: 3 - UV - UV - UV -Face 2571 -UV Count: 3 - UV - UV - UV -Face 2572 -UV Count: 3 - UV - UV - UV -Face 2573 -UV Count: 3 - UV - UV - UV -Face 2574 -UV Count: 3 - UV - UV - UV -Face 2575 -UV Count: 3 - UV - UV - UV -Face 2576 -UV Count: 3 - UV - UV - UV -Face 2577 -UV Count: 3 - UV - UV - UV -Face 2578 -UV Count: 3 - UV - UV - UV -Face 2579 -UV Count: 3 - UV - UV - UV -Face 2580 -UV Count: 3 - UV - UV - UV -Face 2581 -UV Count: 3 - UV - UV - UV -Face 2582 -UV Count: 3 - UV - UV - UV -Face 2583 -UV Count: 3 - UV - UV - UV -Face 2584 -UV Count: 3 - UV - UV - UV -Face 2585 -UV Count: 3 - UV - UV - UV -Face 2586 -UV Count: 3 - UV - UV - UV -Face 2587 -UV Count: 3 - UV - UV - UV -Face 2588 -UV Count: 3 - UV - UV - UV -Face 2589 -UV Count: 3 - UV - UV - UV -Face 2590 -UV Count: 3 - UV - UV - UV -Face 2591 -UV Count: 3 - UV - UV - UV -Face 2592 -UV Count: 3 - UV - UV - UV -Face 2593 -UV Count: 3 - UV - UV - UV -Face 2594 -UV Count: 3 - UV - UV - UV -Face 2595 -UV Count: 3 - UV - UV - UV -Face 2596 -UV Count: 3 - UV - UV - UV -Face 2597 -UV Count: 3 - UV - UV - UV -Face 2598 -UV Count: 3 - UV - UV - UV -Face 2599 -UV Count: 3 - UV - UV - UV -Face 2600 -UV Count: 3 - UV - UV - UV -Face 2601 -UV Count: 3 - UV - UV - UV -Face 2602 -UV Count: 3 - UV - UV - UV -Face 2603 -UV Count: 3 - UV - UV - UV -Face 2604 -UV Count: 3 - UV - UV - UV -Face 2605 -UV Count: 3 - UV - UV - UV -Face 2606 -UV Count: 3 - UV - UV - UV -Face 2607 -UV Count: 3 - UV - UV - UV -Face 2608 -UV Count: 3 - UV - UV - UV -Face 2609 -UV Count: 3 - UV - UV - UV -Face 2610 -UV Count: 3 - UV - UV - UV -Face 2611 -UV Count: 3 - UV - UV - UV -Face 2612 -UV Count: 3 - UV - UV - UV -Face 2613 -UV Count: 3 - UV - UV - UV -Face 2614 -UV Count: 3 - UV - UV - UV -Face 2615 -UV Count: 3 - UV - UV - UV -Face 2616 -UV Count: 3 - UV - UV - UV -Face 2617 -UV Count: 3 - UV - UV - UV -Face 2618 -UV Count: 3 - UV - UV - UV -Face 2619 -UV Count: 3 - UV - UV - UV -Face 2620 -UV Count: 3 - UV - UV - UV -Face 2621 -UV Count: 3 - UV - UV - UV -Face 2622 -UV Count: 3 - UV - UV - UV -Face 2623 -UV Count: 3 - UV - UV - UV -Face 2624 -UV Count: 3 - UV - UV - UV -Face 2625 -UV Count: 3 - UV - UV - UV -Face 2626 -UV Count: 3 - UV - UV - UV -Face 2627 -UV Count: 3 - UV - UV - UV -Face 2628 -UV Count: 3 - UV - UV - UV -Face 2629 -UV Count: 3 - UV - UV - UV -Face 2630 -UV Count: 3 - UV - UV - UV -Face 2631 -UV Count: 3 - UV - UV - UV -Face 2632 -UV Count: 3 - UV - UV - UV -Face 2633 -UV Count: 3 - UV - UV - UV -Face 2634 -UV Count: 3 - UV - UV - UV -Face 2635 -UV Count: 3 - UV - UV - UV -Face 2636 -UV Count: 3 - UV - UV - UV -Face 2637 -UV Count: 3 - UV - UV - UV -Face 2638 -UV Count: 3 - UV - UV - UV -Face 2639 -UV Count: 3 - UV - UV - UV -Face 2640 -UV Count: 3 - UV - UV - UV -Face 2641 -UV Count: 3 - UV - UV - UV -Face 2642 -UV Count: 3 - UV - UV - UV -Face 2643 -UV Count: 3 - UV - UV - UV -Face 2644 -UV Count: 3 - UV - UV - UV -Face 2645 -UV Count: 3 - UV - UV - UV -Face 2646 -UV Count: 3 - UV - UV - UV -Face 2647 -UV Count: 3 - UV - UV - UV -Face 2648 -UV Count: 3 - UV - UV - UV -Face 2649 -UV Count: 3 - UV - UV - UV -Face 2650 -UV Count: 3 - UV - UV - UV -Face 2651 -UV Count: 3 - UV - UV - UV -Face 2652 -UV Count: 3 - UV - UV - UV -Face 2653 -UV Count: 3 - UV - UV - UV -Face 2654 -UV Count: 3 - UV - UV - UV -Face 2655 -UV Count: 3 - UV - UV - UV -Face 2656 -UV Count: 3 - UV - UV - UV -Face 2657 -UV Count: 3 - UV - UV - UV -Face 2658 -UV Count: 3 - UV - UV - UV -Face 2659 -UV Count: 3 - UV - UV - UV -Face 2660 -UV Count: 3 - UV - UV - UV -Face 2661 -UV Count: 3 - UV - UV - UV -Face 2662 -UV Count: 3 - UV - UV - UV -Face 2663 -UV Count: 3 - UV - UV - UV -Face 2664 -UV Count: 3 - UV - UV - UV -Face 2665 -UV Count: 3 - UV - UV - UV -Face 2666 -UV Count: 3 - UV - UV - UV -Face 2667 -UV Count: 3 - UV - UV - UV -Face 2668 -UV Count: 3 - UV - UV - UV -Face 2669 -UV Count: 3 - UV - UV - UV -Face 2670 -UV Count: 3 - UV - UV - UV -Face 2671 -UV Count: 3 - UV - UV - UV -Face 2672 -UV Count: 3 - UV - UV - UV -Face 2673 -UV Count: 3 - UV - UV - UV -Face 2674 -UV Count: 3 - UV - UV - UV -Face 2675 -UV Count: 3 - UV - UV - UV -Face 2676 -UV Count: 3 - UV - UV - UV -Face 2677 -UV Count: 3 - UV - UV - UV -Face 2678 -UV Count: 3 - UV - UV - UV -Face 2679 -UV Count: 3 - UV - UV - UV -Face 2680 -UV Count: 3 - UV - UV - UV -Face 2681 -UV Count: 3 - UV - UV - UV -Face 2682 -UV Count: 3 - UV - UV - UV -Face 2683 -UV Count: 3 - UV - UV - UV -Face 2684 -UV Count: 3 - UV - UV - UV -Face 2685 -UV Count: 3 - UV - UV - UV -Face 2686 -UV Count: 3 - UV - UV - UV -Face 2687 -UV Count: 3 - UV - UV - UV -Face 2688 -UV Count: 3 - UV - UV - UV -Face 2689 -UV Count: 3 - UV - UV - UV -Face 2690 -UV Count: 3 - UV - UV - UV -Face 2691 -UV Count: 3 - UV - UV - UV -Face 2692 -UV Count: 3 - UV - UV - UV -Face 2693 -UV Count: 3 - UV - UV - UV -Face 2694 -UV Count: 3 - UV - UV - UV -Face 2695 -UV Count: 3 - UV - UV - UV -Face 2696 -UV Count: 3 - UV - UV - UV -Face 2697 -UV Count: 3 - UV - UV - UV -Face 2698 -UV Count: 3 - UV - UV - UV -Face 2699 -UV Count: 3 - UV - UV - UV -Face 2700 -UV Count: 3 - UV - UV - UV -Face 2701 -UV Count: 3 - UV - UV - UV -Face 2702 -UV Count: 3 - UV - UV - UV -Face 2703 -UV Count: 3 - UV - UV - UV -Face 2704 -UV Count: 3 - UV - UV - UV -Face 2705 -UV Count: 3 - UV - UV - UV -Face 2706 -UV Count: 3 - UV - UV - UV -Face 2707 -UV Count: 3 - UV - UV - UV -Face 2708 -UV Count: 3 - UV - UV - UV -Face 2709 -UV Count: 3 - UV - UV - UV -Face 2710 -UV Count: 3 - UV - UV - UV -Face 2711 -UV Count: 3 - UV - UV - UV -Face 2712 -UV Count: 3 - UV - UV - UV -Face 2713 -UV Count: 3 - UV - UV - UV -Face 2714 -UV Count: 3 - UV - UV - UV -Face 2715 -UV Count: 3 - UV - UV - UV -Face 2716 -UV Count: 3 - UV - UV - UV -Face 2717 -UV Count: 3 - UV - UV - UV -Face 2718 -UV Count: 3 - UV - UV - UV -Face 2719 -UV Count: 3 - UV - UV - UV -Face 2720 -UV Count: 3 - UV - UV - UV -Face 2721 -UV Count: 3 - UV - UV - UV -Face 2722 -UV Count: 3 - UV - UV - UV -Face 2723 -UV Count: 3 - UV - UV - UV -Face 2724 -UV Count: 3 - UV - UV - UV -Face 2725 -UV Count: 3 - UV - UV - UV -Face 2726 -UV Count: 3 - UV - UV - UV -Face 2727 -UV Count: 3 - UV - UV - UV -Face 2728 -UV Count: 3 - UV - UV - UV -Face 2729 -UV Count: 3 - UV - UV - UV -Face 2730 -UV Count: 3 - UV - UV - UV -Face 2731 -UV Count: 3 - UV - UV - UV -Face 2732 -UV Count: 3 - UV - UV - UV -Face 2733 -UV Count: 3 - UV - UV - UV -Face 2734 -UV Count: 3 - UV - UV - UV -Face 2735 -UV Count: 3 - UV - UV - UV -Face 2736 -UV Count: 3 - UV - UV - UV -Face 2737 -UV Count: 3 - UV - UV - UV -Face 2738 -UV Count: 3 - UV - UV - UV -Face 2739 -UV Count: 3 - UV - UV - UV -Face 2740 -UV Count: 3 - UV - UV - UV -Face 2741 -UV Count: 3 - UV - UV - UV -Face 2742 -UV Count: 3 - UV - UV - UV -Face 2743 -UV Count: 3 - UV - UV - UV -Face 2744 -UV Count: 3 - UV - UV - UV -Face 2745 -UV Count: 3 - UV - UV - UV -Face 2746 -UV Count: 3 - UV - UV - UV -Face 2747 -UV Count: 3 - UV - UV - UV -Face 2748 -UV Count: 3 - UV - UV - UV -Face 2749 -UV Count: 3 - UV - UV - UV -Face 2750 -UV Count: 3 - UV - UV - UV -Face 2751 -UV Count: 3 - UV - UV - UV -Face 2752 -UV Count: 3 - UV - UV - UV -Face 2753 -UV Count: 3 - UV - UV - UV -Face 2754 -UV Count: 3 - UV - UV - UV -Face 2755 -UV Count: 3 - UV - UV - UV -Face 2756 -UV Count: 3 - UV - UV - UV -Face 2757 -UV Count: 3 - UV - UV - UV -Face 2758 -UV Count: 3 - UV - UV - UV -Face 2759 -UV Count: 3 - UV - UV - UV -Face 2760 -UV Count: 3 - UV - UV - UV -Face 2761 -UV Count: 3 - UV - UV - UV -Face 2762 -UV Count: 3 - UV - UV - UV -Face 2763 -UV Count: 3 - UV - UV - UV -Face 2764 -UV Count: 3 - UV - UV - UV -Face 2765 -UV Count: 3 - UV - UV - UV -Face 2766 -UV Count: 3 - UV - UV - UV -Face 2767 -UV Count: 3 - UV - UV - UV -Face 2768 -UV Count: 3 - UV - UV - UV -Face 2769 -UV Count: 3 - UV - UV - UV -Face 2770 -UV Count: 3 - UV - UV - UV -Face 2771 -UV Count: 3 - UV - UV - UV -Face 2772 -UV Count: 3 - UV - UV - UV -Face 2773 -UV Count: 3 - UV - UV - UV -Face 2774 -UV Count: 3 - UV - UV - UV -Face 2775 -UV Count: 3 - UV - UV - UV -Face 2776 -UV Count: 3 - UV - UV - UV -Face 2777 -UV Count: 3 - UV - UV - UV -Face 2778 -UV Count: 3 - UV - UV - UV -Face 2779 -UV Count: 3 - UV - UV - UV -Face 2780 -UV Count: 3 - UV - UV - UV -Face 2781 -UV Count: 3 - UV - UV - UV -Face 2782 -UV Count: 3 - UV - UV - UV -Face 2783 -UV Count: 3 - UV - UV - UV -Face 2784 -UV Count: 3 - UV - UV - UV -Face 2785 -UV Count: 3 - UV - UV - UV -Face 2786 -UV Count: 3 - UV - UV - UV -Face 2787 -UV Count: 3 - UV - UV - UV -Face 2788 -UV Count: 3 - UV - UV - UV -Face 2789 -UV Count: 3 - UV - UV - UV -Face 2790 -UV Count: 3 - UV - UV - UV -Face 2791 -UV Count: 3 - UV - UV - UV -Face 2792 -UV Count: 3 - UV - UV - UV -Face 2793 -UV Count: 3 - UV - UV - UV -Face 2794 -UV Count: 3 - UV - UV - UV -Face 2795 -UV Count: 3 - UV - UV - UV -Face 2796 -UV Count: 3 - UV - UV - UV -Face 2797 -UV Count: 3 - UV - UV - UV -Face 2798 -UV Count: 3 - UV - UV - UV -Face 2799 -UV Count: 3 - UV - UV - UV -Face 2800 -UV Count: 3 - UV - UV - UV -Face 2801 -UV Count: 3 - UV - UV - UV -Face 2802 -UV Count: 3 - UV - UV - UV -Face 2803 -UV Count: 3 - UV - UV - UV -Face 2804 -UV Count: 3 - UV - UV - UV -Face 2805 -UV Count: 3 - UV - UV - UV -Face 2806 -UV Count: 3 - UV - UV - UV -Face 2807 -UV Count: 3 - UV - UV - UV -Face 2808 -UV Count: 3 - UV - UV - UV -Face 2809 -UV Count: 3 - UV - UV - UV -Face 2810 -UV Count: 3 - UV - UV - UV -Face 2811 -UV Count: 3 - UV - UV - UV -Face 2812 -UV Count: 3 - UV - UV - UV -Face 2813 -UV Count: 3 - UV - UV - UV -Face 2814 -UV Count: 3 - UV - UV - UV -Face 2815 -UV Count: 3 - UV - UV - UV -Face 2816 -UV Count: 3 - UV - UV - UV -Face 2817 -UV Count: 3 - UV - UV - UV -Face 2818 -UV Count: 3 - UV - UV - UV -Face 2819 -UV Count: 3 - UV - UV - UV -Face 2820 -UV Count: 3 - UV - UV - UV -Face 2821 -UV Count: 3 - UV - UV - UV -Face 2822 -UV Count: 3 - UV - UV - UV -Face 2823 -UV Count: 3 - UV - UV - UV -Face 2824 -UV Count: 3 - UV - UV - UV -Face 2825 -UV Count: 3 - UV - UV - UV -Face 2826 -UV Count: 3 - UV - UV - UV -Face 2827 -UV Count: 3 - UV - UV - UV -Face 2828 -UV Count: 3 - UV - UV - UV -Face 2829 -UV Count: 3 - UV - UV - UV -Face 2830 -UV Count: 3 - UV - UV - UV -Face 2831 -UV Count: 3 - UV - UV - UV -Face 2832 -UV Count: 3 - UV - UV - UV -Face 2833 -UV Count: 3 - UV - UV - UV -Face 2834 -UV Count: 3 - UV - UV - UV -Face 2835 -UV Count: 3 - UV - UV - UV -Face 2836 -UV Count: 3 - UV - UV - UV -Face 2837 -UV Count: 3 - UV - UV - UV -Face 2838 -UV Count: 3 - UV - UV - UV -Face 2839 -UV Count: 3 - UV - UV - UV -Face 2840 -UV Count: 3 - UV - UV - UV -Face 2841 -UV Count: 3 - UV - UV - UV -Face 2842 -UV Count: 3 - UV - UV - UV -Face 2843 -UV Count: 3 - UV - UV - UV -Face 2844 -UV Count: 3 - UV - UV - UV -Face 2845 -UV Count: 3 - UV - UV - UV -Face 2846 -UV Count: 3 - UV - UV - UV -Face 2847 -UV Count: 3 - UV - UV - UV -Face 2848 -UV Count: 3 - UV - UV - UV -Face 2849 -UV Count: 3 - UV - UV - UV -Face 2850 -UV Count: 3 - UV - UV - UV -Face 2851 -UV Count: 3 - UV - UV - UV -Face 2852 -UV Count: 3 - UV - UV - UV -Face 2853 -UV Count: 3 - UV - UV - UV -Face 2854 -UV Count: 3 - UV - UV - UV -Face 2855 -UV Count: 3 - UV - UV - UV -Face 2856 -UV Count: 3 - UV - UV - UV -Face 2857 -UV Count: 3 - UV - UV - UV -Face 2858 -UV Count: 3 - UV - UV - UV -Face 2859 -UV Count: 3 - UV - UV - UV -Face 2860 -UV Count: 3 - UV - UV - UV -Face 2861 -UV Count: 3 - UV - UV - UV -Face 2862 -UV Count: 3 - UV - UV - UV -Face 2863 -UV Count: 3 - UV - UV - UV -Face 2864 -UV Count: 3 - UV - UV - UV -Face 2865 -UV Count: 3 - UV - UV - UV -Face 2866 -UV Count: 3 - UV - UV - UV -Face 2867 -UV Count: 3 - UV - UV - UV -Face 2868 -UV Count: 3 - UV - UV - UV -Face 2869 -UV Count: 3 - UV - UV - UV -Face 2870 -UV Count: 3 - UV - UV - UV -Face 2871 -UV Count: 3 - UV - UV - UV -Face 2872 -UV Count: 3 - UV - UV - UV -Face 2873 -UV Count: 3 - UV - UV - UV -Face 2874 -UV Count: 3 - UV - UV - UV -Face 2875 -UV Count: 3 - UV - UV - UV -Face 2876 -UV Count: 3 - UV - UV - UV -Face 2877 -UV Count: 3 - UV - UV - UV -Face 2878 -UV Count: 3 - UV - UV - UV -Face 2879 -UV Count: 3 - UV - UV - UV -Face 2880 -UV Count: 3 - UV - UV - UV -Face 2881 -UV Count: 3 - UV - UV - UV -Face 2882 -UV Count: 3 - UV - UV - UV -Face 2883 -UV Count: 3 - UV - UV - UV -Face 2884 -UV Count: 3 - UV - UV - UV -Face 2885 -UV Count: 3 - UV - UV - UV -Face 2886 -UV Count: 3 - UV - UV - UV -Face 2887 -UV Count: 3 - UV - UV - UV -Face 2888 -UV Count: 3 - UV - UV - UV -Face 2889 -UV Count: 3 - UV - UV - UV -Face 2890 -UV Count: 3 - UV - UV - UV -Face 2891 -UV Count: 3 - UV - UV - UV -Face 2892 -UV Count: 3 - UV - UV - UV -Face 2893 -UV Count: 3 - UV - UV - UV -Face 2894 -UV Count: 3 - UV - UV - UV -Face 2895 -UV Count: 3 - UV - UV - UV -Face 2896 -UV Count: 3 - UV - UV - UV -Face 2897 -UV Count: 3 - UV - UV - UV -Face 2898 -UV Count: 3 - UV - UV - UV -Face 2899 -UV Count: 3 - UV - UV - UV -Face 2900 -UV Count: 3 - UV - UV - UV -Face 2901 -UV Count: 3 - UV - UV - UV -Face 2902 -UV Count: 3 - UV - UV - UV -Face 2903 -UV Count: 3 - UV - UV - UV -Face 2904 -UV Count: 3 - UV - UV - UV -Face 2905 -UV Count: 3 - UV - UV - UV -Face 2906 -UV Count: 3 - UV - UV - UV -Face 2907 -UV Count: 3 - UV - UV - UV -Face 2908 -UV Count: 3 - UV - UV - UV -Face 2909 -UV Count: 3 - UV - UV - UV -Face 2910 -UV Count: 3 - UV - UV - UV -Face 2911 -UV Count: 3 - UV - UV - UV -Face 2912 -UV Count: 3 - UV - UV - UV -Face 2913 -UV Count: 3 - UV - UV - UV -Face 2914 -UV Count: 3 - UV - UV - UV -Face 2915 -UV Count: 3 - UV - UV - UV -Face 2916 -UV Count: 3 - UV - UV - UV -Face 2917 -UV Count: 3 - UV - UV - UV -Face 2918 -UV Count: 3 - UV - UV - UV -Face 2919 -UV Count: 3 - UV - UV - UV -Face 2920 -UV Count: 3 - UV - UV - UV -Face 2921 -UV Count: 3 - UV - UV - UV -Face 2922 -UV Count: 3 - UV - UV - UV -Face 2923 -UV Count: 3 - UV - UV - UV -Face 2924 -UV Count: 3 - UV - UV - UV -Face 2925 -UV Count: 3 - UV - UV - UV -Face 2926 -UV Count: 3 - UV - UV - UV -Face 2927 -UV Count: 3 - UV - UV - UV -Face 2928 -UV Count: 3 - UV - UV - UV -Face 2929 -UV Count: 3 - UV - UV - UV -Face 2930 -UV Count: 3 - UV - UV - UV -Face 2931 -UV Count: 3 - UV - UV - UV -Face 2932 -UV Count: 3 - UV - UV - UV -Face 2933 -UV Count: 3 - UV - UV - UV -Face 2934 -UV Count: 3 - UV - UV - UV -Face 2935 -UV Count: 3 - UV - UV - UV -Face 2936 -UV Count: 3 - UV - UV - UV -Face 2937 -UV Count: 3 - UV - UV - UV -Face 2938 -UV Count: 3 - UV - UV - UV -Face 2939 -UV Count: 3 - UV - UV - UV -Face 2940 -UV Count: 3 - UV - UV - UV -Face 2941 -UV Count: 3 - UV - UV - UV -Face 2942 -UV Count: 3 - UV - UV - UV -Face 2943 -UV Count: 3 - UV - UV - UV -Face 2944 -UV Count: 3 - UV - UV - UV -Face 2945 -UV Count: 3 - UV - UV - UV -Face 2946 -UV Count: 3 - UV - UV - UV -Face 2947 -UV Count: 3 - UV - UV - UV -Face 2948 -UV Count: 3 - UV - UV - UV -Face 2949 -UV Count: 3 - UV - UV - UV -Face 2950 -UV Count: 3 - UV - UV - UV -Face 2951 -UV Count: 3 - UV - UV - UV -Face 2952 -UV Count: 3 - UV - UV - UV -Face 2953 -UV Count: 3 - UV - UV - UV -Face 2954 -UV Count: 3 - UV - UV - UV -Face 2955 -UV Count: 3 - UV - UV - UV -Face 2956 -UV Count: 3 - UV - UV - UV -Face 2957 -UV Count: 3 - UV - UV - UV -Face 2958 -UV Count: 3 - UV - UV - UV -Face 2959 -UV Count: 3 - UV - UV - UV -Face 2960 -UV Count: 3 - UV - UV - UV -Face 2961 -UV Count: 3 - UV - UV - UV -Face 2962 -UV Count: 3 - UV - UV - UV -Face 2963 -UV Count: 3 - UV - UV - UV -Face 2964 -UV Count: 3 - UV - UV - UV -Face 2965 -UV Count: 3 - UV - UV - UV -Face 2966 -UV Count: 3 - UV - UV - UV -Face 2967 -UV Count: 3 - UV - UV - UV -Face 2968 -UV Count: 3 - UV - UV - UV -Face 2969 -UV Count: 3 - UV - UV - UV -Face 2970 -UV Count: 3 - UV - UV - UV -Face 2971 -UV Count: 3 - UV - UV - UV -Face 2972 -UV Count: 3 - UV - UV - UV -Face 2973 -UV Count: 3 - UV - UV - UV -Face 2974 -UV Count: 3 - UV - UV - UV -Face 2975 -UV Count: 3 - UV - UV - UV -Face 2976 -UV Count: 3 - UV - UV - UV -Face 2977 -UV Count: 3 - UV - UV - UV -Face 2978 -UV Count: 3 - UV - UV - UV -Face 2979 -UV Count: 3 - UV - UV - UV -Face 2980 -UV Count: 3 - UV - UV - UV -Face 2981 -UV Count: 3 - UV - UV - UV -Face 2982 -UV Count: 3 - UV - UV - UV -Face 2983 -UV Count: 3 - UV - UV - UV -Face 2984 -UV Count: 3 - UV - UV - UV -Face 2985 -UV Count: 3 - UV - UV - UV -Face 2986 -UV Count: 3 - UV - UV - UV -Face 2987 -UV Count: 3 - UV - UV - UV -Face 2988 -UV Count: 3 - UV - UV - UV -Face 2989 -UV Count: 3 - UV - UV - UV -Face 2990 -UV Count: 3 - UV - UV - UV -Face 2991 -UV Count: 3 - UV - UV - UV -Face 2992 -UV Count: 3 - UV - UV - UV -Face 2993 -UV Count: 3 - UV - UV - UV -Face 2994 -UV Count: 3 - UV - UV - UV -Face 2995 -UV Count: 3 - UV - UV - UV -Face 2996 -UV Count: 3 - UV - UV - UV -Face 2997 -UV Count: 3 - UV - UV - UV -Face 2998 -UV Count: 3 - UV - UV - UV -Face 2999 -UV Count: 3 - UV - UV - UV -Face 3000 -UV Count: 3 - UV - UV - UV -Face 3001 -UV Count: 3 - UV - UV - UV -Face 3002 -UV Count: 3 - UV - UV - UV -Face 3003 -UV Count: 3 - UV - UV - UV -Face 3004 -UV Count: 3 - UV - UV - UV -Face 3005 -UV Count: 3 - UV - UV - UV -Face 3006 -UV Count: 3 - UV - UV - UV -Face 3007 -UV Count: 3 - UV - UV - UV -Face 3008 -UV Count: 3 - UV - UV - UV -Face 3009 -UV Count: 3 - UV - UV - UV -Face 3010 -UV Count: 3 - UV - UV - UV -Face 3011 -UV Count: 3 - UV - UV - UV -Face 3012 -UV Count: 3 - UV - UV - UV -Face 3013 -UV Count: 3 - UV - UV - UV -Face 3014 -UV Count: 3 - UV - UV - UV -Face 3015 -UV Count: 3 - UV - UV - UV -Face 3016 -UV Count: 3 - UV - UV - UV -Face 3017 -UV Count: 3 - UV - UV - UV -Face 3018 -UV Count: 3 - UV - UV - UV -Face 3019 -UV Count: 3 - UV - UV - UV -Face 3020 -UV Count: 3 - UV - UV - UV -Face 3021 -UV Count: 3 - UV - UV - UV -Face 3022 -UV Count: 3 - UV - UV - UV -Face 3023 -UV Count: 3 - UV - UV - UV -Face 3024 -UV Count: 3 - UV - UV - UV -Face 3025 -UV Count: 3 - UV - UV - UV -Face 3026 -UV Count: 3 - UV - UV - UV -Face 3027 -UV Count: 3 - UV - UV - UV -Face 3028 -UV Count: 3 - UV - UV - UV -Face 3029 -UV Count: 3 - UV - UV - UV -Face 3030 -UV Count: 3 - UV - UV - UV -Face 3031 -UV Count: 3 - UV - UV - UV -Face 3032 -UV Count: 3 - UV - UV - UV -Face 3033 -UV Count: 3 - UV - UV - UV -Face 3034 -UV Count: 3 - UV - UV - UV -Face 3035 -UV Count: 3 - UV - UV - UV -Face 3036 -UV Count: 3 - UV - UV - UV -Face 3037 -UV Count: 3 - UV - UV - UV -Face 3038 -UV Count: 3 - UV - UV - UV -Face 3039 -UV Count: 3 - UV - UV - UV -Face 3040 -UV Count: 3 - UV - UV - UV -Face 3041 -UV Count: 3 - UV - UV - UV -Face 3042 -UV Count: 3 - UV - UV - UV -Face 3043 -UV Count: 3 - UV - UV - UV -Face 3044 -UV Count: 3 - UV - UV - UV -Face 3045 -UV Count: 3 - UV - UV - UV -Face 3046 -UV Count: 3 - UV - UV - UV -Face 3047 -UV Count: 3 - UV - UV - UV -Face 3048 -UV Count: 3 - UV - UV - UV -Face 3049 -UV Count: 3 - UV - UV - UV -Face 3050 -UV Count: 3 - UV - UV - UV -Face 3051 -UV Count: 3 - UV - UV - UV -Face 3052 -UV Count: 3 - UV - UV - UV -Face 3053 -UV Count: 3 - UV - UV - UV -Face 3054 -UV Count: 3 - UV - UV - UV -Face 3055 -UV Count: 3 - UV - UV - UV -Face 3056 -UV Count: 3 - UV - UV - UV -Face 3057 -UV Count: 3 - UV - UV - UV -Face 3058 -UV Count: 3 - UV - UV - UV -Face 3059 -UV Count: 3 - UV - UV - UV -Face 3060 -UV Count: 3 - UV - UV - UV -Face 3061 -UV Count: 3 - UV - UV - UV -Face 3062 -UV Count: 3 - UV - UV - UV -Face 3063 -UV Count: 3 - UV - UV - UV -Face 3064 -UV Count: 3 - UV - UV - UV -Face 3065 -UV Count: 3 - UV - UV - UV -Face 3066 -UV Count: 3 - UV - UV - UV -Face 3067 -UV Count: 3 - UV - UV - UV -Face 3068 -UV Count: 3 - UV - UV - UV -Face 3069 -UV Count: 3 - UV - UV - UV -Face 3070 -UV Count: 3 - UV - UV - UV -Face 3071 -UV Count: 3 - UV - UV - UV -Face 3072 -UV Count: 3 - UV - UV - UV -Face 3073 -UV Count: 3 - UV - UV - UV -Face 3074 -UV Count: 3 - UV - UV - UV -Face 3075 -UV Count: 3 - UV - UV - UV -Face 3076 -UV Count: 3 - UV - UV - UV -Face 3077 -UV Count: 3 - UV - UV - UV -Face 3078 -UV Count: 3 - UV - UV - UV -Face 3079 -UV Count: 3 - UV - UV - UV -Face 3080 -UV Count: 3 - UV - UV - UV -Face 3081 -UV Count: 3 - UV - UV - UV -Face 3082 -UV Count: 3 - UV - UV - UV -Face 3083 -UV Count: 3 - UV - UV - UV -Face 3084 -UV Count: 3 - UV - UV - UV -Face 3085 -UV Count: 3 - UV - UV - UV -Face 3086 -UV Count: 3 - UV - UV - UV -Face 3087 -UV Count: 3 - UV - UV - UV -Face 3088 -UV Count: 3 - UV - UV - UV -Face 3089 -UV Count: 3 - UV - UV - UV -Face 3090 -UV Count: 3 - UV - UV - UV -Face 3091 -UV Count: 3 - UV - UV - UV -Face 3092 -UV Count: 3 - UV - UV - UV -Face 3093 -UV Count: 3 - UV - UV - UV -Face 3094 -UV Count: 3 - UV - UV - UV -Face 3095 -UV Count: 3 - UV - UV - UV -Face 3096 -UV Count: 3 - UV - UV - UV -Face 3097 -UV Count: 3 - UV - UV - UV -Face 3098 -UV Count: 3 - UV - UV - UV -Face 3099 -UV Count: 3 - UV - UV - UV -Face 3100 -UV Count: 3 - UV - UV - UV -Face 3101 -UV Count: 3 - UV - UV - UV -Face 3102 -UV Count: 3 - UV - UV - UV -Face 3103 -UV Count: 3 - UV - UV - UV -Face 3104 -UV Count: 3 - UV - UV - UV -Face 3105 -UV Count: 3 - UV - UV - UV -Face 3106 -UV Count: 3 - UV - UV - UV -Face 3107 -UV Count: 3 - UV - UV - UV -Face 3108 -UV Count: 3 - UV - UV - UV -Face 3109 -UV Count: 3 - UV - UV - UV -Face 3110 -UV Count: 3 - UV - UV - UV -Face 3111 -UV Count: 3 - UV - UV - UV -Face 3112 -UV Count: 3 - UV - UV - UV -Face 3113 -UV Count: 3 - UV - UV - UV -Face 3114 -UV Count: 3 - UV - UV - UV -Face 3115 -UV Count: 3 - UV - UV - UV -Face 3116 -UV Count: 3 - UV - UV - UV -Face 3117 -UV Count: 3 - UV - UV - UV -Face 3118 -UV Count: 3 - UV - UV - UV -Face 3119 -UV Count: 3 - UV - UV - UV -Face 3120 -UV Count: 3 - UV - UV - UV -Face 3121 -UV Count: 3 - UV - UV - UV -Face 3122 -UV Count: 3 - UV - UV - UV -Face 3123 -UV Count: 3 - UV - UV - UV -Face 3124 -UV Count: 3 - UV - UV - UV -Face 3125 -UV Count: 3 - UV - UV - UV -Face 3126 -UV Count: 3 - UV - UV - UV -Face 3127 -UV Count: 3 - UV - UV - UV -Face 3128 -UV Count: 3 - UV - UV - UV -Face 3129 -UV Count: 3 - UV - UV - UV -Face 3130 -UV Count: 3 - UV - UV - UV -Face 3131 -UV Count: 3 - UV - UV - UV -Face 3132 -UV Count: 3 - UV - UV - UV -Face 3133 -UV Count: 3 - UV - UV - UV -Face 3134 -UV Count: 3 - UV - UV - UV -Face 3135 -UV Count: 3 - UV - UV - UV -Face 3136 -UV Count: 3 - UV - UV - UV -Face 3137 -UV Count: 3 - UV - UV - UV -Face 3138 -UV Count: 3 - UV - UV - UV -Face 3139 -UV Count: 3 - UV - UV - UV -Face 3140 -UV Count: 3 - UV - UV - UV -Face 3141 -UV Count: 3 - UV - UV - UV -Face 3142 -UV Count: 3 - UV - UV - UV -Face 3143 -UV Count: 3 - UV - UV - UV -Face 3144 -UV Count: 3 - UV - UV - UV -Face 3145 -UV Count: 3 - UV - UV - UV -Face 3146 -UV Count: 3 - UV - UV - UV -Face 3147 -UV Count: 3 - UV - UV - UV -Face 3148 -UV Count: 3 - UV - UV - UV -Face 3149 -UV Count: 3 - UV - UV - UV -Face 3150 -UV Count: 3 - UV - UV - UV -Face 3151 -UV Count: 3 - UV - UV - UV -Face 3152 -UV Count: 3 - UV - UV - UV -Face 3153 -UV Count: 3 - UV - UV - UV -Face 3154 -UV Count: 3 - UV - UV - UV -Face 3155 -UV Count: 3 - UV - UV - UV -Face 3156 -UV Count: 3 - UV - UV - UV -Face 3157 -UV Count: 3 - UV - UV - UV -Face 3158 -UV Count: 3 - UV - UV - UV -Face 3159 -UV Count: 3 - UV - UV - UV -Face 3160 -UV Count: 3 - UV - UV - UV -Face 3161 -UV Count: 3 - UV - UV - UV -Face 3162 -UV Count: 3 - UV - UV - UV -Face 3163 -UV Count: 3 - UV - UV - UV -Face 3164 -UV Count: 3 - UV - UV - UV -Face 3165 -UV Count: 3 - UV - UV - UV -Face 3166 -UV Count: 3 - UV - UV - UV -Face 3167 -UV Count: 3 - UV - UV - UV -Face 3168 -UV Count: 3 - UV - UV - UV -Face 3169 -UV Count: 3 - UV - UV - UV -Face 3170 -UV Count: 3 - UV - UV - UV -Face 3171 -UV Count: 3 - UV - UV - UV -Face 3172 -UV Count: 3 - UV - UV - UV -Face 3173 -UV Count: 3 - UV - UV - UV -Face 3174 -UV Count: 3 - UV - UV - UV -Face 3175 -UV Count: 3 - UV - UV - UV -Face 3176 -UV Count: 3 - UV - UV - UV -Face 3177 -UV Count: 3 - UV - UV - UV -Face 3178 -UV Count: 3 - UV - UV - UV -Face 3179 -UV Count: 3 - UV - UV - UV -Face 3180 -UV Count: 3 - UV - UV - UV -Face 3181 -UV Count: 3 - UV - UV - UV -Face 3182 -UV Count: 3 - UV - UV - UV -Face 3183 -UV Count: 3 - UV - UV - UV -Face 3184 -UV Count: 3 - UV - UV - UV -Face 3185 -UV Count: 3 - UV - UV - UV -Face 3186 -UV Count: 3 - UV - UV - UV -Face 3187 -UV Count: 3 - UV - UV - UV -Face 3188 -UV Count: 3 - UV - UV - UV -Face 3189 -UV Count: 3 - UV - UV - UV -Face 3190 -UV Count: 3 - UV - UV - UV -Face 3191 -UV Count: 3 - UV - UV - UV -Face 3192 -UV Count: 3 - UV - UV - UV -Face 3193 -UV Count: 3 - UV - UV - UV -Face 3194 -UV Count: 3 - UV - UV - UV -Face 3195 -UV Count: 3 - UV - UV - UV -Face 3196 -UV Count: 3 - UV - UV - UV -Face 3197 -UV Count: 3 - UV - UV - UV -Face 3198 -UV Count: 3 - UV - UV - UV -Face 3199 -UV Count: 3 - UV - UV - UV -Face 3200 -UV Count: 3 - UV - UV - UV -Face 3201 -UV Count: 3 - UV - UV - UV -Face 3202 -UV Count: 3 - UV - UV - UV -Face 3203 -UV Count: 3 - UV - UV - UV -Face 3204 -UV Count: 3 - UV - UV - UV -Face 3205 -UV Count: 3 - UV - UV - UV -Face 3206 -UV Count: 3 - UV - UV - UV -Face 3207 -UV Count: 3 - UV - UV - UV -Face 3208 -UV Count: 3 - UV - UV - UV -Face 3209 -UV Count: 3 - UV - UV - UV -Face 3210 -UV Count: 3 - UV - UV - UV -Face 3211 -UV Count: 3 - UV - UV - UV -Face 3212 -UV Count: 3 - UV - UV - UV -Face 3213 -UV Count: 3 - UV - UV - UV -Face 3214 -UV Count: 3 - UV - UV - UV -Face 3215 -UV Count: 3 - UV - UV - UV -Face 3216 -UV Count: 3 - UV - UV - UV -Face 3217 -UV Count: 3 - UV - UV - UV -Face 3218 -UV Count: 3 - UV - UV - UV -Face 3219 -UV Count: 3 - UV - UV - UV -Face 3220 -UV Count: 3 - UV - UV - UV -Face 3221 -UV Count: 3 - UV - UV - UV -Face 3222 -UV Count: 3 - UV - UV - UV -Face 3223 -UV Count: 3 - UV - UV - UV -Face 3224 -UV Count: 3 - UV - UV - UV -Face 3225 -UV Count: 3 - UV - UV - UV -Face 3226 -UV Count: 3 - UV - UV - UV -Face 3227 -UV Count: 3 - UV - UV - UV -Face 3228 -UV Count: 3 - UV - UV - UV -Face 3229 -UV Count: 3 - UV - UV - UV -Face 3230 -UV Count: 3 - UV - UV - UV -Face 3231 -UV Count: 3 - UV - UV - UV -Face 3232 -UV Count: 3 - UV - UV - UV -Face 3233 -UV Count: 3 - UV - UV - UV -Face 3234 -UV Count: 3 - UV - UV - UV -Face 3235 -UV Count: 3 - UV - UV - UV -Face 3236 -UV Count: 3 - UV - UV - UV -Face 3237 -UV Count: 3 - UV - UV - UV -Face 3238 -UV Count: 3 - UV - UV - UV -Face 3239 -UV Count: 3 - UV - UV - UV -Face 3240 -UV Count: 3 - UV - UV - UV -Face 3241 -UV Count: 3 - UV - UV - UV -Face 3242 -UV Count: 3 - UV - UV - UV -Face 3243 -UV Count: 3 - UV - UV - UV -Face 3244 -UV Count: 3 - UV - UV - UV -Face 3245 -UV Count: 3 - UV - UV - UV -Face 3246 -UV Count: 3 - UV - UV - UV -Face 3247 -UV Count: 3 - UV - UV - UV -Face 3248 -UV Count: 3 - UV - UV - UV -Face 3249 -UV Count: 3 - UV - UV - UV -Face 3250 -UV Count: 3 - UV - UV - UV -Face 3251 -UV Count: 3 - UV - UV - UV -Face 3252 -UV Count: 3 - UV - UV - UV -Face 3253 -UV Count: 3 - UV - UV - UV -Face 3254 -UV Count: 3 - UV - UV - UV -Face 3255 -UV Count: 3 - UV - UV - UV -Face 3256 -UV Count: 3 - UV - UV - UV -Face 3257 -UV Count: 3 - UV - UV - UV -Face 3258 -UV Count: 3 - UV - UV - UV -Face 3259 -UV Count: 3 - UV - UV - UV -Face 3260 -UV Count: 3 - UV - UV - UV -Face 3261 -UV Count: 3 - UV - UV - UV -Face 3262 -UV Count: 3 - UV - UV - UV -Face 3263 -UV Count: 3 - UV - UV - UV -Face 3264 -UV Count: 3 - UV - UV - UV -Face 3265 -UV Count: 3 - UV - UV - UV -Face 3266 -UV Count: 3 - UV - UV - UV -Face 3267 -UV Count: 3 - UV - UV - UV -Face 3268 -UV Count: 3 - UV - UV - UV -Face 3269 -UV Count: 3 - UV - UV - UV -Face 3270 -UV Count: 3 - UV - UV - UV -Face 3271 -UV Count: 3 - UV - UV - UV -Face 3272 -UV Count: 3 - UV - UV - UV -Face 3273 -UV Count: 3 - UV - UV - UV -Face 3274 -UV Count: 3 - UV - UV - UV -Face 3275 -UV Count: 3 - UV - UV - UV -Face 3276 -UV Count: 3 - UV - UV - UV -Face 3277 -UV Count: 3 - UV - UV - UV -Face 3278 -UV Count: 3 - UV - UV - UV -Face 3279 -UV Count: 3 - UV - UV - UV -Face 3280 -UV Count: 3 - UV - UV - UV -Face 3281 -UV Count: 3 - UV - UV - UV -Face 3282 -UV Count: 3 - UV - UV - UV -Face 3283 -UV Count: 3 - UV - UV - UV -Face 3284 -UV Count: 3 - UV - UV - UV -Face 3285 -UV Count: 3 - UV - UV - UV -Face 3286 -UV Count: 3 - UV - UV - UV -Face 3287 -UV Count: 3 - UV - UV - UV -Face 3288 -UV Count: 3 - UV - UV - UV -Face 3289 -UV Count: 3 - UV - UV - UV -Face 3290 -UV Count: 3 - UV - UV - UV -Face 3291 -UV Count: 3 - UV - UV - UV -Face 3292 -UV Count: 3 - UV - UV - UV -Face 3293 -UV Count: 3 - UV - UV - UV -Face 3294 -UV Count: 3 - UV - UV - UV -Face 3295 -UV Count: 3 - UV - UV - UV -Face 3296 -UV Count: 3 - UV - UV - UV -Face 3297 -UV Count: 3 - UV - UV - UV -Face 3298 -UV Count: 3 - UV - UV - UV -Face 3299 -UV Count: 3 - UV - UV - UV -Face 3300 -UV Count: 3 - UV - UV - UV -Face 3301 -UV Count: 3 - UV - UV - UV -Face 3302 -UV Count: 3 - UV - UV - UV -Face 3303 -UV Count: 3 - UV - UV - UV -Face 3304 -UV Count: 3 - UV - UV - UV -Face 3305 -UV Count: 3 - UV - UV - UV -Face 3306 -UV Count: 3 - UV - UV - UV -Face 3307 -UV Count: 3 - UV - UV - UV -Face 3308 -UV Count: 3 - UV - UV - UV -Face 3309 -UV Count: 3 - UV - UV - UV -Face 3310 -UV Count: 3 - UV - UV - UV -Face 3311 -UV Count: 3 - UV - UV - UV -Face 3312 -UV Count: 3 - UV - UV - UV -Face 3313 -UV Count: 3 - UV - UV - UV -Face 3314 -UV Count: 3 - UV - UV - UV -Face 3315 -UV Count: 3 - UV - UV - UV -Face 3316 -UV Count: 3 - UV - UV - UV -Face 3317 -UV Count: 3 - UV - UV - UV -Face 3318 -UV Count: 3 - UV - UV - UV -Face 3319 -UV Count: 3 - UV - UV - UV -Face 3320 -UV Count: 3 - UV - UV - UV -Face 3321 -UV Count: 3 - UV - UV - UV -Face 3322 -UV Count: 3 - UV - UV - UV -Face 3323 -UV Count: 3 - UV - UV - UV -Face 3324 -UV Count: 3 - UV - UV - UV -Face 3325 -UV Count: 3 - UV - UV - UV -Face 3326 -UV Count: 3 - UV - UV - UV -Face 3327 -UV Count: 3 - UV - UV - UV -Face 3328 -UV Count: 3 - UV - UV - UV -Face 3329 -UV Count: 3 - UV - UV - UV -Face 3330 -UV Count: 3 - UV - UV - UV -Face 3331 -UV Count: 3 - UV - UV - UV -Face 3332 -UV Count: 3 - UV - UV - UV -Face 3333 -UV Count: 3 - UV - UV - UV -Face 3334 -UV Count: 3 - UV - UV - UV -Face 3335 -UV Count: 3 - UV - UV - UV -Face 3336 -UV Count: 3 - UV - UV - UV -Face 3337 -UV Count: 3 - UV - UV - UV -Face 3338 -UV Count: 3 - UV - UV - UV -Face 3339 -UV Count: 3 - UV - UV - UV -Face 3340 -UV Count: 3 - UV - UV - UV -Face 3341 -UV Count: 3 - UV - UV - UV -Face 3342 -UV Count: 3 - UV - UV - UV -Face 3343 -UV Count: 3 - UV - UV - UV -Face 3344 -UV Count: 3 - UV - UV - UV -Face 3345 -UV Count: 3 - UV - UV - UV -Face 3346 -UV Count: 3 - UV - UV - UV -Face 3347 -UV Count: 3 - UV - UV - UV -Face 3348 -UV Count: 3 - UV - UV - UV -Face 3349 -UV Count: 3 - UV - UV - UV -Face 3350 -UV Count: 3 - UV - UV - UV -Face 3351 -UV Count: 3 - UV - UV - UV -Face 3352 -UV Count: 3 - UV - UV - UV -Face 3353 -UV Count: 3 - UV - UV - UV -Face 3354 -UV Count: 3 - UV - UV - UV -Face 3355 -UV Count: 3 - UV - UV - UV -Face 3356 -UV Count: 3 - UV - UV - UV -Face 3357 -UV Count: 3 - UV - UV - UV -Face 3358 -UV Count: 3 - UV - UV - UV -Face 3359 -UV Count: 3 - UV - UV - UV -Face 3360 -UV Count: 3 - UV - UV - UV -Face 3361 -UV Count: 3 - UV - UV - UV -Face 3362 -UV Count: 3 - UV - UV - UV -Face 3363 -UV Count: 3 - UV - UV - UV -Face 3364 -UV Count: 3 - UV - UV - UV -Face 3365 -UV Count: 3 - UV - UV - UV -Face 3366 -UV Count: 3 - UV - UV - UV -Face 3367 -UV Count: 3 - UV - UV - UV -Face 3368 -UV Count: 3 - UV - UV - UV -Face 3369 -UV Count: 3 - UV - UV - UV -Face 3370 -UV Count: 3 - UV - UV - UV -Face 3371 -UV Count: 3 - UV - UV - UV -Face 3372 -UV Count: 3 - UV - UV - UV -Face 3373 -UV Count: 3 - UV - UV - UV -Face 3374 -UV Count: 3 - UV - UV - UV -Face 3375 -UV Count: 3 - UV - UV - UV -Face 3376 -UV Count: 3 - UV - UV - UV -Face 3377 -UV Count: 3 - UV - UV - UV -Face 3378 -UV Count: 3 - UV - UV - UV -Face 3379 -UV Count: 3 - UV - UV - UV -Face 3380 -UV Count: 3 - UV - UV - UV -Face 3381 -UV Count: 3 - UV - UV - UV -Face 3382 -UV Count: 3 - UV - UV - UV -Face 3383 -UV Count: 3 - UV - UV - UV -Face 3384 -UV Count: 3 - UV - UV - UV -Face 3385 -UV Count: 3 - UV - UV - UV -Face 3386 -UV Count: 3 - UV - UV - UV -Face 3387 -UV Count: 3 - UV - UV - UV -Face 3388 -UV Count: 3 - UV - UV - UV -Face 3389 -UV Count: 3 - UV - UV - UV -Face 3390 -UV Count: 3 - UV - UV - UV -Face 3391 -UV Count: 3 - UV - UV - UV -Face 3392 -UV Count: 3 - UV - UV - UV -Face 3393 -UV Count: 3 - UV - UV - UV -Face 3394 -UV Count: 3 - UV - UV - UV -Face 3395 -UV Count: 3 - UV - UV - UV -Face 3396 -UV Count: 3 - UV - UV - UV -Face 3397 -UV Count: 3 - UV - UV - UV -Face 3398 -UV Count: 3 - UV - UV - UV -Face 3399 -UV Count: 3 - UV - UV - UV -Face 3400 -UV Count: 3 - UV - UV - UV -Face 3401 -UV Count: 3 - UV - UV - UV -Face 3402 -UV Count: 3 - UV - UV - UV -Face 3403 -UV Count: 3 - UV - UV - UV -Face 3404 -UV Count: 3 - UV - UV - UV -Face 3405 -UV Count: 3 - UV - UV - UV -Face 3406 -UV Count: 3 - UV - UV - UV -Face 3407 -UV Count: 3 - UV - UV - UV -Face 3408 -UV Count: 3 - UV - UV - UV -Face 3409 -UV Count: 3 - UV - UV - UV -Face 3410 -UV Count: 3 - UV - UV - UV -Face 3411 -UV Count: 3 - UV - UV - UV -Face 3412 -UV Count: 3 - UV - UV - UV -Face 3413 -UV Count: 3 - UV - UV - UV -Face 3414 -UV Count: 3 - UV - UV - UV -Face 3415 -UV Count: 3 - UV - UV - UV -Face 3416 -UV Count: 3 - UV - UV - UV -Face 3417 -UV Count: 3 - UV - UV - UV -Face 3418 -UV Count: 3 - UV - UV - UV -Face 3419 -UV Count: 3 - UV - UV - UV -Face 3420 -UV Count: 3 - UV - UV - UV -Face 3421 -UV Count: 3 - UV - UV - UV -Face 3422 -UV Count: 3 - UV - UV - UV -Face 3423 -UV Count: 3 - UV - UV - UV -Face 3424 -UV Count: 3 - UV - UV - UV -Face 3425 -UV Count: 3 - UV - UV - UV -Face 3426 -UV Count: 3 - UV - UV - UV -Face 3427 -UV Count: 3 - UV - UV - UV -Face 3428 -UV Count: 3 - UV - UV - UV -Face 3429 -UV Count: 3 - UV - UV - UV -Face 3430 -UV Count: 3 - UV - UV - UV -Face 3431 -UV Count: 3 - UV - UV - UV -Face 3432 -UV Count: 3 - UV - UV - UV -Face 3433 -UV Count: 3 - UV - UV - UV -Face 3434 -UV Count: 3 - UV - UV - UV -Face 3435 -UV Count: 3 - UV - UV - UV -Face 3436 -UV Count: 3 - UV - UV - UV -Face 3437 -UV Count: 3 - UV - UV - UV -Face 3438 -UV Count: 3 - UV - UV - UV -Face 3439 -UV Count: 3 - UV - UV - UV -Face 3440 -UV Count: 3 - UV - UV - UV -Face 3441 -UV Count: 3 - UV - UV - UV -Face 3442 -UV Count: 3 - UV - UV - UV -Face 3443 -UV Count: 3 - UV - UV - UV -Face 3444 -UV Count: 3 - UV - UV - UV -Face 3445 -UV Count: 3 - UV - UV - UV -Face 3446 -UV Count: 3 - UV - UV - UV -Face 3447 -UV Count: 3 - UV - UV - UV -Face 3448 -UV Count: 3 - UV - UV - UV -Face 3449 -UV Count: 3 - UV - UV - UV -Face 3450 -UV Count: 3 - UV - UV - UV -Face 3451 -UV Count: 3 - UV - UV - UV -Face 3452 -UV Count: 3 - UV - UV - UV -Face 3453 -UV Count: 3 - UV - UV - UV -Face 3454 -UV Count: 3 - UV - UV - UV -Face 3455 -UV Count: 3 - UV - UV - UV -Face 3456 -UV Count: 3 - UV - UV - UV -Face 3457 -UV Count: 3 - UV - UV - UV -Face 3458 -UV Count: 3 - UV - UV - UV -Face 3459 -UV Count: 3 - UV - UV - UV -Face 3460 -UV Count: 3 - UV - UV - UV -Face 3461 -UV Count: 3 - UV - UV - UV -Face 3462 -UV Count: 3 - UV - UV - UV -Face 3463 -UV Count: 3 - UV - UV - UV -Face 3464 -UV Count: 3 - UV - UV - UV -Face 3465 -UV Count: 3 - UV - UV - UV -Face 3466 -UV Count: 3 - UV - UV - UV -Face 3467 -UV Count: 3 - UV - UV - UV -Face 3468 -UV Count: 3 - UV - UV - UV -Face 3469 -UV Count: 3 - UV - UV - UV -Face 3470 -UV Count: 3 - UV - UV - UV -Face 3471 -UV Count: 3 - UV - UV - UV -Face 3472 -UV Count: 3 - UV - UV - UV -Face 3473 -UV Count: 3 - UV - UV - UV -Face 3474 -UV Count: 3 - UV - UV - UV -Face 3475 -UV Count: 3 - UV - UV - UV -Face 3476 -UV Count: 3 - UV - UV - UV -Face 3477 -UV Count: 3 - UV - UV - UV -Face 3478 -UV Count: 3 - UV - UV - UV -Face 3479 -UV Count: 3 - UV - UV - UV -Face 3480 -UV Count: 3 - UV - UV - UV -Face 3481 -UV Count: 3 - UV - UV - UV -Face 3482 -UV Count: 3 - UV - UV - UV -Face 3483 -UV Count: 3 - UV - UV - UV -Face 3484 -UV Count: 3 - UV - UV - UV -Face 3485 -UV Count: 3 - UV - UV - UV -Face 3486 -UV Count: 3 - UV - UV - UV -Face 3487 -UV Count: 3 - UV - UV - UV -Face 3488 -UV Count: 3 - UV - UV - UV -Face 3489 -UV Count: 3 - UV - UV - UV -Face 3490 -UV Count: 3 - UV - UV - UV -Face 3491 -UV Count: 3 - UV - UV - UV -Face 3492 -UV Count: 3 - UV - UV - UV -Face 3493 -UV Count: 3 - UV - UV - UV -Face 3494 -UV Count: 3 - UV - UV - UV -Face 3495 -UV Count: 3 - UV - UV - UV -Face 3496 -UV Count: 3 - UV - UV - UV -Face 3497 -UV Count: 3 - UV - UV - UV -Face 3498 -UV Count: 3 - UV - UV - UV -Face 3499 -UV Count: 3 - UV - UV - UV -Face 3500 -UV Count: 3 - UV - UV - UV -Face 3501 -UV Count: 3 - UV - UV - UV -Face 3502 -UV Count: 3 - UV - UV - UV -Face 3503 -UV Count: 3 - UV - UV - UV -Face 3504 -UV Count: 3 - UV - UV - UV -Face 3505 -UV Count: 3 - UV - UV - UV -Face 3506 -UV Count: 3 - UV - UV - UV -Face 3507 -UV Count: 3 - UV - UV - UV -Face 3508 -UV Count: 3 - UV - UV - UV -Face 3509 -UV Count: 3 - UV - UV - UV -Face 3510 -UV Count: 3 - UV - UV - UV -Face 3511 -UV Count: 3 - UV - UV - UV -Face 3512 -UV Count: 3 - UV - UV - UV -Face 3513 -UV Count: 3 - UV - UV - UV -Face 3514 -UV Count: 3 - UV - UV - UV -Face 3515 -UV Count: 3 - UV - UV - UV -Face 3516 -UV Count: 3 - UV - UV - UV -Face 3517 -UV Count: 3 - UV - UV - UV -Face 3518 -UV Count: 3 - UV - UV - UV -Face 3519 -UV Count: 3 - UV - UV - UV -Face 3520 -UV Count: 3 - UV - UV - UV -Face 3521 -UV Count: 3 - UV - UV - UV -Face 3522 -UV Count: 3 - UV - UV - UV -Face 3523 -UV Count: 3 - UV - UV - UV -Face 3524 -UV Count: 3 - UV - UV - UV -Face 3525 -UV Count: 3 - UV - UV - UV -Face 3526 -UV Count: 3 - UV - UV - UV -Face 3527 -UV Count: 3 - UV - UV - UV -Face 3528 -UV Count: 3 - UV - UV - UV -Face 3529 -UV Count: 3 - UV - UV - UV -Face 3530 -UV Count: 3 - UV - UV - UV -Face 3531 -UV Count: 3 - UV - UV - UV -Face 3532 -UV Count: 3 - UV - UV - UV -Face 3533 -UV Count: 3 - UV - UV - UV -Face 3534 -UV Count: 3 - UV - UV - UV -Face 3535 -UV Count: 3 - UV - UV - UV -Face 3536 -UV Count: 3 - UV - UV - UV -Face 3537 -UV Count: 3 - UV - UV - UV -Face 3538 -UV Count: 3 - UV - UV - UV -Face 3539 -UV Count: 3 - UV - UV - UV -Face 3540 -UV Count: 3 - UV - UV - UV -Face 3541 -UV Count: 3 - UV - UV - UV -Face 3542 -UV Count: 3 - UV - UV - UV -Face 3543 -UV Count: 3 - UV - UV - UV -Face 3544 -UV Count: 3 - UV - UV - UV -Face 3545 -UV Count: 3 - UV - UV - UV -Face 3546 -UV Count: 3 - UV - UV - UV -Face 3547 -UV Count: 3 - UV - UV - UV -Face 3548 -UV Count: 3 - UV - UV - UV -Face 3549 -UV Count: 3 - UV - UV - UV -Face 3550 -UV Count: 3 - UV - UV - UV -Face 3551 -UV Count: 3 - UV - UV - UV -Face 3552 -UV Count: 3 - UV - UV - UV -Face 3553 -UV Count: 3 - UV - UV - UV -Face 3554 -UV Count: 3 - UV - UV - UV -Face 3555 -UV Count: 3 - UV - UV - UV -Face 3556 -UV Count: 3 - UV - UV - UV -Face 3557 -UV Count: 3 - UV - UV - UV -Face 3558 -UV Count: 3 - UV - UV - UV -Face 3559 -UV Count: 3 - UV - UV - UV -Face 3560 -UV Count: 3 - UV - UV - UV -Face 3561 -UV Count: 3 - UV - UV - UV -Face 3562 -UV Count: 3 - UV - UV - UV -Face 3563 -UV Count: 3 - UV - UV - UV -Face 3564 -UV Count: 3 - UV - UV - UV -Face 3565 -UV Count: 3 - UV - UV - UV -Face 3566 -UV Count: 3 - UV - UV - UV -Face 3567 -UV Count: 3 - UV - UV - UV -Face 3568 -UV Count: 3 - UV - UV - UV -Face 3569 -UV Count: 3 - UV - UV - UV -Face 3570 -UV Count: 3 - UV - UV - UV -Face 3571 -UV Count: 3 - UV - UV - UV -Face 3572 -UV Count: 3 - UV - UV - UV -Face 3573 -UV Count: 3 - UV - UV - UV -Face 3574 -UV Count: 3 - UV - UV - UV -Face 3575 -UV Count: 3 - UV - UV - UV -Face 3576 -UV Count: 3 - UV - UV - UV -Face 3577 -UV Count: 3 - UV - UV - UV -Face 3578 -UV Count: 3 - UV - UV - UV -Face 3579 -UV Count: 3 - UV - UV - UV -Face 3580 -UV Count: 3 - UV - UV - UV -Face 3581 -UV Count: 3 - UV - UV - UV -Face 3582 -UV Count: 3 - UV - UV - UV -Face 3583 -UV Count: 3 - UV - UV - UV -Face 3584 -UV Count: 3 - UV - UV - UV -Face 3585 -UV Count: 3 - UV - UV - UV -Face 3586 -UV Count: 3 - UV - UV - UV -Face 3587 -UV Count: 3 - UV - UV - UV -Face 3588 -UV Count: 3 - UV - UV - UV -Face 3589 -UV Count: 3 - UV - UV - UV -Face 3590 -UV Count: 3 - UV - UV - UV -Face 3591 -UV Count: 3 - UV - UV - UV -Face 3592 -UV Count: 3 - UV - UV - UV -Face 3593 -UV Count: 3 - UV - UV - UV -Face 3594 -UV Count: 3 - UV - UV - UV -Face 3595 -UV Count: 3 - UV - UV - UV -Face 3596 -UV Count: 3 - UV - UV - UV -Face 3597 -UV Count: 3 - UV - UV - UV -Face 3598 -UV Count: 3 - UV - UV - UV -Face 3599 -UV Count: 3 - UV - UV - UV -Face 3600 -UV Count: 3 - UV - UV - UV -Face 3601 -UV Count: 3 - UV - UV - UV -Face 3602 -UV Count: 3 - UV - UV - UV -Face 3603 -UV Count: 3 - UV - UV - UV -Face 3604 -UV Count: 3 - UV - UV - UV -Face 3605 -UV Count: 3 - UV - UV - UV -Face 3606 -UV Count: 3 - UV - UV - UV -Face 3607 -UV Count: 3 - UV - UV - UV -Face 3608 -UV Count: 3 - UV - UV - UV -Face 3609 -UV Count: 3 - UV - UV - UV -Face 3610 -UV Count: 3 - UV - UV - UV -Face 3611 -UV Count: 3 - UV - UV - UV -Face 3612 -UV Count: 3 - UV - UV - UV -Face 3613 -UV Count: 3 - UV - UV - UV -Face 3614 -UV Count: 3 - UV - UV - UV -Face 3615 -UV Count: 3 - UV - UV - UV -Face 3616 -UV Count: 3 - UV - UV - UV -Face 3617 -UV Count: 3 - UV - UV - UV -Face 3618 -UV Count: 3 - UV - UV - UV -Face 3619 -UV Count: 3 - UV - UV - UV -Face 3620 -UV Count: 3 - UV - UV - UV -Face 3621 -UV Count: 3 - UV - UV - UV -Face 3622 -UV Count: 3 - UV - UV - UV -Face 3623 -UV Count: 3 - UV - UV - UV -Face 3624 -UV Count: 3 - UV - UV - UV -Face 3625 -UV Count: 3 - UV - UV - UV -Face 3626 -UV Count: 3 - UV - UV - UV -Face 3627 -UV Count: 3 - UV - UV - UV -Face 3628 -UV Count: 3 - UV - UV - UV -Face 3629 -UV Count: 3 - UV - UV - UV -Face 3630 -UV Count: 3 - UV - UV - UV -Face 3631 -UV Count: 3 - UV - UV - UV -Face 3632 -UV Count: 3 - UV - UV - UV -Face 3633 -UV Count: 3 - UV - UV - UV -Face 3634 -UV Count: 3 - UV - UV - UV -Face 3635 -UV Count: 3 - UV - UV - UV -Face 3636 -UV Count: 3 - UV - UV - UV -Face 3637 -UV Count: 3 - UV - UV - UV -Face 3638 -UV Count: 3 - UV - UV - UV -Face 3639 -UV Count: 3 - UV - UV - UV -Face 3640 -UV Count: 3 - UV - UV - UV -Face 3641 -UV Count: 3 - UV - UV - UV -Face 3642 -UV Count: 3 - UV - UV - UV -Face 3643 -UV Count: 3 - UV - UV - UV -Face 3644 -UV Count: 3 - UV - UV - UV -Face 3645 -UV Count: 3 - UV - UV - UV -Face 3646 -UV Count: 3 - UV - UV - UV -Face 3647 -UV Count: 3 - UV - UV - UV -Face 3648 -UV Count: 3 - UV - UV - UV -Face 3649 -UV Count: 3 - UV - UV - UV -Face 3650 -UV Count: 3 - UV - UV - UV -Face 3651 -UV Count: 3 - UV - UV - UV -Face 3652 -UV Count: 3 - UV - UV - UV -Face 3653 -UV Count: 3 - UV - UV - UV -Face 3654 -UV Count: 3 - UV - UV - UV -Face 3655 -UV Count: 3 - UV - UV - UV -Face 3656 -UV Count: 3 - UV - UV - UV -Face 3657 -UV Count: 3 - UV - UV - UV -Face 3658 -UV Count: 3 - UV - UV - UV -Face 3659 -UV Count: 3 - UV - UV - UV -Face 3660 -UV Count: 3 - UV - UV - UV -Face 3661 -UV Count: 3 - UV - UV - UV -Face 3662 -UV Count: 3 - UV - UV - UV -Face 3663 -UV Count: 3 - UV - UV - UV -Face 3664 -UV Count: 3 - UV - UV - UV -Face 3665 -UV Count: 3 - UV - UV - UV -Face 3666 -UV Count: 3 - UV - UV - UV -Face 3667 -UV Count: 3 - UV - UV - UV -Face 3668 -UV Count: 3 - UV - UV - UV -Face 3669 -UV Count: 3 - UV - UV - UV -Face 3670 -UV Count: 3 - UV - UV - UV -Face 3671 -UV Count: 3 - UV - UV - UV -Face 3672 -UV Count: 3 - UV - UV - UV -Face 3673 -UV Count: 3 - UV - UV - UV -Face 3674 -UV Count: 3 - UV - UV - UV -Face 3675 -UV Count: 3 - UV - UV - UV -Face 3676 -UV Count: 3 - UV - UV - UV -Face 3677 -UV Count: 3 - UV - UV - UV -Face 3678 -UV Count: 3 - UV - UV - UV -Face 3679 -UV Count: 3 - UV - UV - UV -Face 3680 -UV Count: 3 - UV - UV - UV -Face 3681 -UV Count: 3 - UV - UV - UV -Face 3682 -UV Count: 3 - UV - UV - UV -Face 3683 -UV Count: 3 - UV - UV - UV -Face 3684 -UV Count: 3 - UV - UV - UV -Face 3685 -UV Count: 3 - UV - UV - UV -Face 3686 -UV Count: 3 - UV - UV - UV -Face 3687 -UV Count: 3 - UV - UV - UV -Face 3688 -UV Count: 3 - UV - UV - UV -Face 3689 -UV Count: 3 - UV - UV - UV -Face 3690 -UV Count: 3 - UV - UV - UV -Face 3691 -UV Count: 3 - UV - UV - UV -Face 3692 -UV Count: 3 - UV - UV - UV -Face 3693 -UV Count: 3 - UV - UV - UV -Face 3694 -UV Count: 3 - UV - UV - UV -Face 3695 -UV Count: 3 - UV - UV - UV -Face 3696 -UV Count: 3 - UV - UV - UV -Face 3697 -UV Count: 3 - UV - UV - UV -Face 3698 -UV Count: 3 - UV - UV - UV -Face 3699 -UV Count: 3 - UV - UV - UV -Face 3700 -UV Count: 3 - UV - UV - UV -Face 3701 -UV Count: 3 - UV - UV - UV -Face 3702 -UV Count: 3 - UV - UV - UV -Face 3703 -UV Count: 3 - UV - UV - UV -Face 3704 -UV Count: 3 - UV - UV - UV -Face 3705 -UV Count: 3 - UV - UV - UV -Face 3706 -UV Count: 3 - UV - UV - UV -Face 3707 -UV Count: 3 - UV - UV - UV -Face 3708 -UV Count: 3 - UV - UV - UV -Face 3709 -UV Count: 3 - UV - UV - UV -Face 3710 -UV Count: 3 - UV - UV - UV -Face 3711 -UV Count: 3 - UV - UV - UV -Face 3712 -UV Count: 3 - UV - UV - UV -Face 3713 -UV Count: 3 - UV - UV - UV -Face 3714 -UV Count: 3 - UV - UV - UV -Face 3715 -UV Count: 3 - UV - UV - UV -Face 3716 -UV Count: 3 - UV - UV - UV -Face 3717 -UV Count: 3 - UV - UV - UV -Face 3718 -UV Count: 3 - UV - UV - UV -Face 3719 -UV Count: 3 - UV - UV - UV -Face 3720 -UV Count: 3 - UV - UV - UV -Face 3721 -UV Count: 3 - UV - UV - UV -Face 3722 -UV Count: 3 - UV - UV - UV -Face 3723 -UV Count: 3 - UV - UV - UV -Face 3724 -UV Count: 3 - UV - UV - UV -Face 3725 -UV Count: 3 - UV - UV - UV -Face 3726 -UV Count: 3 - UV - UV - UV -Face 3727 -UV Count: 3 - UV - UV - UV -Face 3728 -UV Count: 3 - UV - UV - UV -Face 3729 -UV Count: 3 - UV - UV - UV -Face 3730 -UV Count: 3 - UV - UV - UV -Face 3731 -UV Count: 3 - UV - UV - UV -Face 3732 -UV Count: 3 - UV - UV - UV -Face 3733 -UV Count: 3 - UV - UV - UV -Face 3734 -UV Count: 3 - UV - UV - UV -Face 3735 -UV Count: 3 - UV - UV - UV -Face 3736 -UV Count: 3 - UV - UV - UV -Face 3737 -UV Count: 3 - UV - UV - UV -Face 3738 -UV Count: 3 - UV - UV - UV -Face 3739 -UV Count: 3 - UV - UV - UV -Face 3740 -UV Count: 3 - UV - UV - UV -Face 3741 -UV Count: 3 - UV - UV - UV -Face 3742 -UV Count: 3 - UV - UV - UV -Face 3743 -UV Count: 3 - UV - UV - UV -Face 3744 -UV Count: 3 - UV - UV - UV -Face 3745 -UV Count: 3 - UV - UV - UV -Face 3746 -UV Count: 3 - UV - UV - UV -Face 3747 -UV Count: 3 - UV - UV - UV -Face 3748 -UV Count: 3 - UV - UV - UV -Face 3749 -UV Count: 3 - UV - UV - UV -Face 3750 -UV Count: 3 - UV - UV - UV -Face 3751 -UV Count: 3 - UV - UV - UV -Face 3752 -UV Count: 3 - UV - UV - UV -Face 3753 -UV Count: 3 - UV - UV - UV -Face 3754 -UV Count: 3 - UV - UV - UV -Face 3755 -UV Count: 3 - UV - UV - UV -Face 3756 -UV Count: 3 - UV - UV - UV -Face 3757 -UV Count: 3 - UV - UV - UV -Face 3758 -UV Count: 3 - UV - UV - UV -Face 3759 -UV Count: 3 - UV - UV - UV -Face 3760 -UV Count: 3 - UV - UV - UV -Face 3761 -UV Count: 3 - UV - UV - UV -Face 3762 -UV Count: 3 - UV - UV - UV -Face 3763 -UV Count: 3 - UV - UV - UV -Face 3764 -UV Count: 3 - UV - UV - UV -Face 3765 -UV Count: 3 - UV - UV - UV -Face 3766 -UV Count: 3 - UV - UV - UV -Face 3767 -UV Count: 3 - UV - UV - UV -Face 3768 -UV Count: 3 - UV - UV - UV -Face 3769 -UV Count: 3 - UV - UV - UV -Face 3770 -UV Count: 3 - UV - UV - UV -Face 3771 -UV Count: 3 - UV - UV - UV -Face 3772 -UV Count: 3 - UV - UV - UV -Face 3773 -UV Count: 3 - UV - UV - UV -Face 3774 -UV Count: 3 - UV - UV - UV -Face 3775 -UV Count: 3 - UV - UV - UV -Face 3776 -UV Count: 3 - UV - UV - UV -Face 3777 -UV Count: 3 - UV - UV - UV -Face 3778 -UV Count: 3 - UV - UV - UV -Face 3779 -UV Count: 3 - UV - UV - UV -Face 3780 -UV Count: 3 - UV - UV - UV -Face 3781 -UV Count: 3 - UV - UV - UV -Face 3782 -UV Count: 3 - UV - UV - UV -Face 3783 -UV Count: 3 - UV - UV - UV -Face 3784 -UV Count: 3 - UV - UV - UV -Face 3785 -UV Count: 3 - UV - UV - UV -Face 3786 -UV Count: 3 - UV - UV - UV -Face 3787 -UV Count: 3 - UV - UV - UV -Face 3788 -UV Count: 3 - UV - UV - UV -Face 3789 -UV Count: 3 - UV - UV - UV -Face 3790 -UV Count: 3 - UV - UV - UV -Face 3791 -UV Count: 3 - UV - UV - UV -Face 3792 -UV Count: 3 - UV - UV - UV -Face 3793 -UV Count: 3 - UV - UV - UV -Face 3794 -UV Count: 3 - UV - UV - UV -Face 3795 -UV Count: 3 - UV - UV - UV -Face 3796 -UV Count: 3 - UV - UV - UV -Face 3797 -UV Count: 3 - UV - UV - UV -Face 3798 -UV Count: 3 - UV - UV - UV -Face 3799 -UV Count: 3 - UV - UV - UV -Face 3800 -UV Count: 3 - UV - UV - UV -Face 3801 -UV Count: 3 - UV - UV - UV -Face 3802 -UV Count: 3 - UV - UV - UV -Face 3803 -UV Count: 3 - UV - UV - UV -Face 3804 -UV Count: 3 - UV - UV - UV -Face 3805 -UV Count: 3 - UV - UV - UV -Face 3806 -UV Count: 3 - UV - UV - UV -Face 3807 -UV Count: 3 - UV - UV - UV -Face 3808 -UV Count: 3 - UV - UV - UV -Face 3809 -UV Count: 3 - UV - UV - UV -Face 3810 -UV Count: 3 - UV - UV - UV -Face 3811 -UV Count: 3 - UV - UV - UV -Face 3812 -UV Count: 3 - UV - UV - UV -Face 3813 -UV Count: 3 - UV - UV - UV -Face 3814 -UV Count: 3 - UV - UV - UV -Face 3815 -UV Count: 3 - UV - UV - UV -Face 3816 -UV Count: 3 - UV - UV - UV -Face 3817 -UV Count: 3 - UV - UV - UV -Face 3818 -UV Count: 3 - UV - UV - UV -Face 3819 -UV Count: 3 - UV - UV - UV -Face 3820 -UV Count: 3 - UV - UV - UV -Face 3821 -UV Count: 3 - UV - UV - UV -Face 3822 -UV Count: 3 - UV - UV - UV -Face 3823 -UV Count: 3 - UV - UV - UV -Face 3824 -UV Count: 3 - UV - UV - UV -Face 3825 -UV Count: 3 - UV - UV - UV -Face 3826 -UV Count: 3 - UV - UV - UV -Face 3827 -UV Count: 3 - UV - UV - UV -Face 3828 -UV Count: 3 - UV - UV - UV -Face 3829 -UV Count: 3 - UV - UV - UV -Face 3830 -UV Count: 3 - UV - UV - UV -Face 3831 -UV Count: 3 - UV - UV - UV -Face 3832 -UV Count: 3 - UV - UV - UV -Face 3833 -UV Count: 3 - UV - UV - UV -Face 3834 -UV Count: 3 - UV - UV - UV -Face 3835 -UV Count: 3 - UV - UV - UV -Face 3836 -UV Count: 3 - UV - UV - UV -Face 3837 -UV Count: 3 - UV - UV - UV -Face 3838 -UV Count: 3 - UV - UV - UV -Face 3839 -UV Count: 3 - UV - UV - UV -Face 3840 -UV Count: 3 - UV - UV - UV -Face 3841 -UV Count: 3 - UV - UV - UV -Face 3842 -UV Count: 3 - UV - UV - UV -Face 3843 -UV Count: 3 - UV - UV - UV -Face 3844 -UV Count: 3 - UV - UV - UV -Face 3845 -UV Count: 3 - UV - UV - UV -Face 3846 -UV Count: 3 - UV - UV - UV -Face 3847 -UV Count: 3 - UV - UV - UV -Face 3848 -UV Count: 3 - UV - UV - UV -Face 3849 -UV Count: 3 - UV - UV - UV -Face 3850 -UV Count: 3 - UV - UV - UV -Face 3851 -UV Count: 3 - UV - UV - UV -Face 3852 -UV Count: 3 - UV - UV - UV -Face 3853 -UV Count: 3 - UV - UV - UV -Face 3854 -UV Count: 3 - UV - UV - UV -Face 3855 -UV Count: 3 - UV - UV - UV -Face 3856 -UV Count: 3 - UV - UV - UV -Face 3857 -UV Count: 3 - UV - UV - UV -Face 3858 -UV Count: 3 - UV - UV - UV -Face 3859 -UV Count: 3 - UV - UV - UV -Face 3860 -UV Count: 3 - UV - UV - UV -Face 3861 -UV Count: 3 - UV - UV - UV -Face 3862 -UV Count: 3 - UV - UV - UV -Face 3863 -UV Count: 3 - UV - UV - UV -Face 3864 -UV Count: 3 - UV - UV - UV -Face 3865 -UV Count: 3 - UV - UV - UV -Face 3866 -UV Count: 3 - UV - UV - UV -Face 3867 -UV Count: 3 - UV - UV - UV -Face 3868 -UV Count: 3 - UV - UV - UV -Face 3869 -UV Count: 3 - UV - UV - UV -Face 3870 -UV Count: 3 - UV - UV - UV -Face 3871 -UV Count: 3 - UV - UV - UV -Face 3872 -UV Count: 3 - UV - UV - UV -Face 3873 -UV Count: 3 - UV - UV - UV -Face 3874 -UV Count: 3 - UV - UV - UV -Face 3875 -UV Count: 3 - UV - UV - UV -Face 3876 -UV Count: 3 - UV - UV - UV -Face 3877 -UV Count: 3 - UV - UV - UV -Face 3878 -UV Count: 3 - UV - UV - UV -Face 3879 -UV Count: 3 - UV - UV - UV -Face 3880 -UV Count: 3 - UV - UV - UV -Face 3881 -UV Count: 3 - UV - UV - UV -Face 3882 -UV Count: 3 - UV - UV - UV -Face 3883 -UV Count: 3 - UV - UV - UV -Face 3884 -UV Count: 3 - UV - UV - UV -Face 3885 -UV Count: 3 - UV - UV - UV -Face 3886 -UV Count: 3 - UV - UV - UV -Face 3887 -UV Count: 3 - UV - UV - UV -Face 3888 -UV Count: 3 - UV - UV - UV -Face 3889 -UV Count: 3 - UV - UV - UV -Face 3890 -UV Count: 3 - UV - UV - UV -Face 3891 -UV Count: 3 - UV - UV - UV -Face 3892 -UV Count: 3 - UV - UV - UV -Face 3893 -UV Count: 3 - UV - UV - UV -Face 3894 -UV Count: 3 - UV - UV - UV -Face 3895 -UV Count: 3 - UV - UV - UV -Face 3896 -UV Count: 3 - UV - UV - UV -Face 3897 -UV Count: 3 - UV - UV - UV -Face 3898 -UV Count: 3 - UV - UV - UV -Face 3899 -UV Count: 3 - UV - UV - UV -Face 3900 -UV Count: 3 - UV - UV - UV -Face 3901 -UV Count: 3 - UV - UV - UV -Face 3902 -UV Count: 3 - UV - UV - UV -Face 3903 -UV Count: 3 - UV - UV - UV -Face 3904 -UV Count: 3 - UV - UV - UV -Face 3905 -UV Count: 3 - UV - UV - UV -Face 3906 -UV Count: 3 - UV - UV - UV -Face 3907 -UV Count: 3 - UV - UV - UV -Face 3908 -UV Count: 3 - UV - UV - UV -Face 3909 -UV Count: 3 - UV - UV - UV -Face 3910 -UV Count: 3 - UV - UV - UV -Face 3911 -UV Count: 3 - UV - UV - UV -Face 3912 -UV Count: 3 - UV - UV - UV -Face 3913 -UV Count: 3 - UV - UV - UV -Face 3914 -UV Count: 3 - UV - UV - UV -Face 3915 -UV Count: 3 - UV - UV - UV -Face 3916 -UV Count: 3 - UV - UV - UV -Face 3917 -UV Count: 3 - UV - UV - UV -Face 3918 -UV Count: 3 - UV - UV - UV -Face 3919 -UV Count: 3 - UV - UV - UV -Face 3920 -UV Count: 3 - UV - UV - UV -Face 3921 -UV Count: 3 - UV - UV - UV -Face 3922 -UV Count: 3 - UV - UV - UV -Face 3923 -UV Count: 3 - UV - UV - UV -Face 3924 -UV Count: 3 - UV - UV - UV -Face 3925 -UV Count: 3 - UV - UV - UV -Face 3926 -UV Count: 3 - UV - UV - UV -Face 3927 -UV Count: 3 - UV - UV - UV -Face 3928 -UV Count: 3 - UV - UV - UV -Face 3929 -UV Count: 3 - UV - UV - UV -Face 3930 -UV Count: 3 - UV - UV - UV -Face 3931 -UV Count: 3 - UV - UV - UV -Face 3932 -UV Count: 3 - UV - UV - UV -Face 3933 -UV Count: 3 - UV - UV - UV -Face 3934 -UV Count: 3 - UV - UV - UV -Face 3935 -UV Count: 3 - UV - UV - UV -Face 3936 -UV Count: 3 - UV - UV - UV -Face 3937 -UV Count: 3 - UV - UV - UV -Face 3938 -UV Count: 3 - UV - UV - UV -Face 3939 -UV Count: 3 - UV - UV - UV -Face 3940 -UV Count: 3 - UV - UV - UV -Face 3941 -UV Count: 3 - UV - UV - UV -Face 3942 -UV Count: 3 - UV - UV - UV -Face 3943 -UV Count: 3 - UV - UV - UV -Face 3944 -UV Count: 3 - UV - UV - UV -Face 3945 -UV Count: 3 - UV - UV - UV -Face 3946 -UV Count: 3 - UV - UV - UV -Face 3947 -UV Count: 3 - UV - UV - UV -Face 3948 -UV Count: 3 - UV - UV - UV -Face 3949 -UV Count: 3 - UV - UV - UV -Face 3950 -UV Count: 3 - UV - UV - UV -Face 3951 -UV Count: 3 - UV - UV - UV -Face 3952 -UV Count: 3 - UV - UV - UV -Face 3953 -UV Count: 3 - UV - UV - UV -Face 3954 -UV Count: 3 - UV - UV - UV -Face 3955 -UV Count: 3 - UV - UV - UV -Face 3956 -UV Count: 3 - UV - UV - UV -Face 3957 -UV Count: 3 - UV - UV - UV -Face 3958 -UV Count: 3 - UV - UV - UV -Face 3959 -UV Count: 3 - UV - UV - UV -Face 3960 -UV Count: 3 - UV - UV - UV -Face 3961 -UV Count: 3 - UV - UV - UV -Face 3962 -UV Count: 3 - UV - UV - UV -Face 3963 -UV Count: 3 - UV - UV - UV -Face 3964 -UV Count: 3 - UV - UV - UV -Face 3965 -UV Count: 3 - UV - UV - UV -Face 3966 -UV Count: 3 - UV - UV - UV -Face 3967 -UV Count: 3 - UV - UV - UV -Face 3968 -UV Count: 3 - UV - UV - UV -Face 3969 -UV Count: 3 - UV - UV - UV -Face 3970 -UV Count: 3 - UV - UV - UV -Face 3971 -UV Count: 3 - UV - UV - UV -Face 3972 -UV Count: 3 - UV - UV - UV -Face 3973 -UV Count: 3 - UV - UV - UV -===Normals: -Vertex 0: Normal -Vertex 1: Normal -Vertex 2: Normal -Vertex 3: Normal -Vertex 4: Normal -Vertex 5: Normal -Vertex 6: Normal -Vertex 7: Normal -Vertex 8: Normal -Vertex 9: Normal -Vertex 10: Normal -Vertex 11: Normal -Vertex 12: Normal -Vertex 13: Normal -Vertex 14: Normal -Vertex 15: Normal -Vertex 16: Normal -Vertex 17: Normal -Vertex 18: Normal -Vertex 19: Normal -Vertex 20: Normal -Vertex 21: Normal -Vertex 22: Normal -Vertex 23: Normal -Vertex 24: Normal -Vertex 25: Normal -Vertex 26: Normal -Vertex 27: Normal -Vertex 28: Normal -Vertex 29: Normal -Vertex 30: Normal -Vertex 31: Normal -Vertex 32: Normal -Vertex 33: Normal -Vertex 34: Normal -Vertex 35: Normal -Vertex 36: Normal -Vertex 37: Normal -Vertex 38: Normal -Vertex 39: Normal -Vertex 40: Normal -Vertex 41: Normal -Vertex 42: Normal -Vertex 43: Normal -Vertex 44: Normal -Vertex 45: Normal -Vertex 46: Normal -Vertex 47: Normal -Vertex 48: Normal -Vertex 49: Normal -Vertex 50: Normal -Vertex 51: Normal -Vertex 52: Normal -Vertex 53: Normal -Vertex 54: Normal -Vertex 55: Normal -Vertex 56: Normal -Vertex 57: Normal -Vertex 58: Normal -Vertex 59: Normal -Vertex 60: Normal -Vertex 61: Normal -Vertex 62: Normal -Vertex 63: Normal -Vertex 64: Normal -Vertex 65: Normal -Vertex 66: Normal -Vertex 67: Normal -Vertex 68: Normal -Vertex 69: Normal -Vertex 70: Normal -Vertex 71: Normal -Vertex 72: Normal -Vertex 73: Normal -Vertex 74: Normal -Vertex 75: Normal -Vertex 76: Normal -Vertex 77: Normal -Vertex 78: Normal -Vertex 79: Normal -Vertex 80: Normal -Vertex 81: Normal -Vertex 82: Normal -Vertex 83: Normal -Vertex 84: Normal -Vertex 85: Normal -Vertex 86: Normal -Vertex 87: Normal -Vertex 88: Normal -Vertex 89: Normal -Vertex 90: Normal -Vertex 91: Normal -Vertex 92: Normal -Vertex 93: Normal -Vertex 94: Normal -Vertex 95: Normal -Vertex 96: Normal -Vertex 97: Normal -Vertex 98: Normal -Vertex 99: Normal -Vertex 100: Normal -Vertex 101: Normal -Vertex 102: Normal -Vertex 103: Normal -Vertex 104: Normal -Vertex 105: Normal -Vertex 106: Normal -Vertex 107: Normal -Vertex 108: Normal -Vertex 109: Normal -Vertex 110: Normal -Vertex 111: Normal -Vertex 112: Normal -Vertex 113: Normal -Vertex 114: Normal -Vertex 115: Normal -Vertex 116: Normal -Vertex 117: Normal -Vertex 118: Normal -Vertex 119: Normal -Vertex 120: Normal -Vertex 121: Normal -Vertex 122: Normal -Vertex 123: Normal -Vertex 124: Normal -Vertex 125: Normal -Vertex 126: Normal -Vertex 127: Normal -Vertex 128: Normal -Vertex 129: Normal -Vertex 130: Normal -Vertex 131: Normal -Vertex 132: Normal -Vertex 133: Normal -Vertex 134: Normal -Vertex 135: Normal -Vertex 136: Normal -Vertex 137: Normal -Vertex 138: Normal -Vertex 139: Normal -Vertex 140: Normal -Vertex 141: Normal -Vertex 142: Normal -Vertex 143: Normal -Vertex 144: Normal -Vertex 145: Normal -Vertex 146: Normal -Vertex 147: Normal -Vertex 148: Normal -Vertex 149: Normal -Vertex 150: Normal -Vertex 151: Normal -Vertex 152: Normal -Vertex 153: Normal -Vertex 154: Normal -Vertex 155: Normal -Vertex 156: Normal -Vertex 157: Normal -Vertex 158: Normal -Vertex 159: Normal -Vertex 160: Normal -Vertex 161: Normal -Vertex 162: Normal -Vertex 163: Normal -Vertex 164: Normal -Vertex 165: Normal -Vertex 166: Normal -Vertex 167: Normal -Vertex 168: Normal -Vertex 169: Normal -Vertex 170: Normal -Vertex 171: Normal -Vertex 172: Normal -Vertex 173: Normal -Vertex 174: Normal -Vertex 175: Normal -Vertex 176: Normal -Vertex 177: Normal -Vertex 178: Normal -Vertex 179: Normal -Vertex 180: Normal -Vertex 181: Normal -Vertex 182: Normal -Vertex 183: Normal -Vertex 184: Normal -Vertex 185: Normal -Vertex 186: Normal -Vertex 187: Normal -Vertex 188: Normal -Vertex 189: Normal -Vertex 190: Normal -Vertex 191: Normal -Vertex 192: Normal -Vertex 193: Normal -Vertex 194: Normal -Vertex 195: Normal -Vertex 196: Normal -Vertex 197: Normal -Vertex 198: Normal -Vertex 199: Normal -Vertex 200: Normal -Vertex 201: Normal -Vertex 202: Normal -Vertex 203: Normal -Vertex 204: Normal -Vertex 205: Normal -Vertex 206: Normal -Vertex 207: Normal -Vertex 208: Normal -Vertex 209: Normal -Vertex 210: Normal -Vertex 211: Normal -Vertex 212: Normal -Vertex 213: Normal -Vertex 214: Normal -Vertex 215: Normal -Vertex 216: Normal -Vertex 217: Normal -Vertex 218: Normal -Vertex 219: Normal -Vertex 220: Normal -Vertex 221: Normal -Vertex 222: Normal -Vertex 223: Normal -Vertex 224: Normal -Vertex 225: Normal -Vertex 226: Normal -Vertex 227: Normal -Vertex 228: Normal -Vertex 229: Normal -Vertex 230: Normal -Vertex 231: Normal -Vertex 232: Normal -Vertex 233: Normal -Vertex 234: Normal -Vertex 235: Normal -Vertex 236: Normal -Vertex 237: Normal -Vertex 238: Normal -Vertex 239: Normal -Vertex 240: Normal -Vertex 241: Normal -Vertex 242: Normal -Vertex 243: Normal -Vertex 244: Normal -Vertex 245: Normal -Vertex 246: Normal -Vertex 247: Normal -Vertex 248: Normal -Vertex 249: Normal -Vertex 250: Normal -Vertex 251: Normal -Vertex 252: Normal -Vertex 253: Normal -Vertex 254: Normal -Vertex 255: Normal -Vertex 256: Normal -Vertex 257: Normal -Vertex 258: Normal -Vertex 259: Normal -Vertex 260: Normal -Vertex 261: Normal -Vertex 262: Normal -Vertex 263: Normal -Vertex 264: Normal -Vertex 265: Normal -Vertex 266: Normal -Vertex 267: Normal -Vertex 268: Normal -Vertex 269: Normal -Vertex 270: Normal -Vertex 271: Normal -Vertex 272: Normal -Vertex 273: Normal -Vertex 274: Normal -Vertex 275: Normal -Vertex 276: Normal -Vertex 277: Normal -Vertex 278: Normal -Vertex 279: Normal -Vertex 280: Normal -Vertex 281: Normal -Vertex 282: Normal -Vertex 283: Normal -Vertex 284: Normal -Vertex 285: Normal -Vertex 286: Normal -Vertex 287: Normal -Vertex 288: Normal -Vertex 289: Normal -Vertex 290: Normal -Vertex 291: Normal -Vertex 292: Normal -Vertex 293: Normal -Vertex 294: Normal -Vertex 295: Normal -Vertex 296: Normal -Vertex 297: Normal -Vertex 298: Normal -Vertex 299: Normal -Vertex 300: Normal -Vertex 301: Normal -Vertex 302: Normal -Vertex 303: Normal -Vertex 304: Normal -Vertex 305: Normal -Vertex 306: Normal -Vertex 307: Normal -Vertex 308: Normal -Vertex 309: Normal -Vertex 310: Normal -Vertex 311: Normal -Vertex 312: Normal -Vertex 313: Normal -Vertex 314: Normal -Vertex 315: Normal -Vertex 316: Normal -Vertex 317: Normal -Vertex 318: Normal -Vertex 319: Normal -Vertex 320: Normal -Vertex 321: Normal -Vertex 322: Normal -Vertex 323: Normal -Vertex 324: Normal -Vertex 325: Normal -Vertex 326: Normal -Vertex 327: Normal -Vertex 328: Normal -Vertex 329: Normal -Vertex 330: Normal -Vertex 331: Normal -Vertex 332: Normal -Vertex 333: Normal -Vertex 334: Normal -Vertex 335: Normal -Vertex 336: Normal -Vertex 337: Normal -Vertex 338: Normal -Vertex 339: Normal -Vertex 340: Normal -Vertex 341: Normal -Vertex 342: Normal -Vertex 343: Normal -Vertex 344: Normal -Vertex 345: Normal -Vertex 346: Normal -Vertex 347: Normal -Vertex 348: Normal -Vertex 349: Normal -Vertex 350: Normal -Vertex 351: Normal -Vertex 352: Normal -Vertex 353: Normal -Vertex 354: Normal -Vertex 355: Normal -Vertex 356: Normal -Vertex 357: Normal -Vertex 358: Normal -Vertex 359: Normal -Vertex 360: Normal -Vertex 361: Normal -Vertex 362: Normal -Vertex 363: Normal -Vertex 364: Normal -Vertex 365: Normal -Vertex 366: Normal -Vertex 367: Normal -Vertex 368: Normal -Vertex 369: Normal -Vertex 370: Normal -Vertex 371: Normal -Vertex 372: Normal -Vertex 373: Normal -Vertex 374: Normal -Vertex 375: Normal -Vertex 376: Normal -Vertex 377: Normal -Vertex 378: Normal -Vertex 379: Normal -Vertex 380: Normal -Vertex 381: Normal -Vertex 382: Normal -Vertex 383: Normal -Vertex 384: Normal -Vertex 385: Normal -Vertex 386: Normal -Vertex 387: Normal -Vertex 388: Normal -Vertex 389: Normal -Vertex 390: Normal -Vertex 391: Normal -Vertex 392: Normal -Vertex 393: Normal -Vertex 394: Normal -Vertex 395: Normal -Vertex 396: Normal -Vertex 397: Normal -Vertex 398: Normal -Vertex 399: Normal -Vertex 400: Normal -Vertex 401: Normal -Vertex 402: Normal -Vertex 403: Normal -Vertex 404: Normal -Vertex 405: Normal -Vertex 406: Normal -Vertex 407: Normal -Vertex 408: Normal -Vertex 409: Normal -Vertex 410: Normal -Vertex 411: Normal -Vertex 412: Normal -Vertex 413: Normal -Vertex 414: Normal -Vertex 415: Normal -Vertex 416: Normal -Vertex 417: Normal -Vertex 418: Normal -Vertex 419: Normal -Vertex 420: Normal -Vertex 421: Normal -Vertex 422: Normal -Vertex 423: Normal -Vertex 424: Normal -Vertex 425: Normal -Vertex 426: Normal -Vertex 427: Normal -Vertex 428: Normal -Vertex 429: Normal -Vertex 430: Normal -Vertex 431: Normal -Vertex 432: Normal -Vertex 433: Normal -Vertex 434: Normal -Vertex 435: Normal -Vertex 436: Normal -Vertex 437: Normal -Vertex 438: Normal -Vertex 439: Normal -Vertex 440: Normal -Vertex 441: Normal -Vertex 442: Normal -Vertex 443: Normal -Vertex 444: Normal -Vertex 445: Normal -Vertex 446: Normal -Vertex 447: Normal -Vertex 448: Normal -Vertex 449: Normal -Vertex 450: Normal -Vertex 451: Normal -Vertex 452: Normal -Vertex 453: Normal -Vertex 454: Normal -Vertex 455: Normal -Vertex 456: Normal -Vertex 457: Normal -Vertex 458: Normal -Vertex 459: Normal -Vertex 460: Normal -Vertex 461: Normal -Vertex 462: Normal -Vertex 463: Normal -Vertex 464: Normal -Vertex 465: Normal -Vertex 466: Normal -Vertex 467: Normal -Vertex 468: Normal -Vertex 469: Normal -Vertex 470: Normal -Vertex 471: Normal -Vertex 472: Normal -Vertex 473: Normal -Vertex 474: Normal -Vertex 475: Normal -Vertex 476: Normal -Vertex 477: Normal -Vertex 478: Normal -Vertex 479: Normal -Vertex 480: Normal -Vertex 481: Normal -Vertex 482: Normal -Vertex 483: Normal -Vertex 484: Normal -Vertex 485: Normal -Vertex 486: Normal -Vertex 487: Normal -Vertex 488: Normal -Vertex 489: Normal -Vertex 490: Normal -Vertex 491: Normal -Vertex 492: Normal -Vertex 493: Normal -Vertex 494: Normal -Vertex 495: Normal -Vertex 496: Normal -Vertex 497: Normal -Vertex 498: Normal -Vertex 499: Normal -Vertex 500: Normal -Vertex 501: Normal -Vertex 502: Normal -Vertex 503: Normal -Vertex 504: Normal -Vertex 505: Normal -Vertex 506: Normal -Vertex 507: Normal -Vertex 508: Normal -Vertex 509: Normal -Vertex 510: Normal -Vertex 511: Normal -Vertex 512: Normal -Vertex 513: Normal -Vertex 514: Normal -Vertex 515: Normal -Vertex 516: Normal -Vertex 517: Normal -Vertex 518: Normal -Vertex 519: Normal -Vertex 520: Normal -Vertex 521: Normal -Vertex 522: Normal -Vertex 523: Normal -Vertex 524: Normal -Vertex 525: Normal -Vertex 526: Normal -Vertex 527: Normal -Vertex 528: Normal -Vertex 529: Normal -Vertex 530: Normal -Vertex 531: Normal -Vertex 532: Normal -Vertex 533: Normal -Vertex 534: Normal -Vertex 535: Normal -Vertex 536: Normal -Vertex 537: Normal -Vertex 538: Normal -Vertex 539: Normal -Vertex 540: Normal -Vertex 541: Normal -Vertex 542: Normal -Vertex 543: Normal -Vertex 544: Normal -Vertex 545: Normal -Vertex 546: Normal -Vertex 547: Normal -Vertex 548: Normal -Vertex 549: Normal -Vertex 550: Normal -Vertex 551: Normal -Vertex 552: Normal -Vertex 553: Normal -Vertex 554: Normal -Vertex 555: Normal -Vertex 556: Normal -Vertex 557: Normal -Vertex 558: Normal -Vertex 559: Normal -Vertex 560: Normal -Vertex 561: Normal -Vertex 562: Normal -Vertex 563: Normal -Vertex 564: Normal -Vertex 565: Normal -Vertex 566: Normal -Vertex 567: Normal -Vertex 568: Normal -Vertex 569: Normal -Vertex 570: Normal -Vertex 571: Normal -Vertex 572: Normal -Vertex 573: Normal -Vertex 574: Normal -Vertex 575: Normal -Vertex 576: Normal -Vertex 577: Normal -Vertex 578: Normal -Vertex 579: Normal -Vertex 580: Normal -Vertex 581: Normal -Vertex 582: Normal -Vertex 583: Normal -Vertex 584: Normal -Vertex 585: Normal -Vertex 586: Normal -Vertex 587: Normal -Vertex 588: Normal -Vertex 589: Normal -Vertex 590: Normal -Vertex 591: Normal -Vertex 592: Normal -Vertex 593: Normal -Vertex 594: Normal -Vertex 595: Normal -Vertex 596: Normal -Vertex 597: Normal -Vertex 598: Normal -Vertex 599: Normal -Vertex 600: Normal -Vertex 601: Normal -Vertex 602: Normal -Vertex 603: Normal -Vertex 604: Normal -Vertex 605: Normal -Vertex 606: Normal -Vertex 607: Normal -Vertex 608: Normal -Vertex 609: Normal -Vertex 610: Normal -Vertex 611: Normal -Vertex 612: Normal -Vertex 613: Normal -Vertex 614: Normal -Vertex 615: Normal -Vertex 616: Normal -Vertex 617: Normal -Vertex 618: Normal -Vertex 619: Normal -Vertex 620: Normal -Vertex 621: Normal -Vertex 622: Normal -Vertex 623: Normal -Vertex 624: Normal -Vertex 625: Normal -Vertex 626: Normal -Vertex 627: Normal -Vertex 628: Normal -Vertex 629: Normal -Vertex 630: Normal -Vertex 631: Normal -Vertex 632: Normal -Vertex 633: Normal -Vertex 634: Normal -Vertex 635: Normal -Vertex 636: Normal -Vertex 637: Normal -Vertex 638: Normal -Vertex 639: Normal -Vertex 640: Normal -Vertex 641: Normal -Vertex 642: Normal -Vertex 643: Normal -Vertex 644: Normal -Vertex 645: Normal -Vertex 646: Normal -Vertex 647: Normal -Vertex 648: Normal -Vertex 649: Normal -Vertex 650: Normal -Vertex 651: Normal -Vertex 652: Normal -Vertex 653: Normal -Vertex 654: Normal -Vertex 655: Normal -Vertex 656: Normal -Vertex 657: Normal -Vertex 658: Normal -Vertex 659: Normal -Vertex 660: Normal -Vertex 661: Normal -Vertex 662: Normal -Vertex 663: Normal -Vertex 664: Normal -Vertex 665: Normal -Vertex 666: Normal -Vertex 667: Normal -Vertex 668: Normal -Vertex 669: Normal -Vertex 670: Normal -Vertex 671: Normal -Vertex 672: Normal -Vertex 673: Normal -Vertex 674: Normal -Vertex 675: Normal -Vertex 676: Normal -Vertex 677: Normal -Vertex 678: Normal -Vertex 679: Normal -Vertex 680: Normal -Vertex 681: Normal -Vertex 682: Normal -Vertex 683: Normal -Vertex 684: Normal -Vertex 685: Normal -Vertex 686: Normal -Vertex 687: Normal -Vertex 688: Normal -Vertex 689: Normal -Vertex 690: Normal -Vertex 691: Normal -Vertex 692: Normal -Vertex 693: Normal -Vertex 694: Normal -Vertex 695: Normal -Vertex 696: Normal -Vertex 697: Normal -Vertex 698: Normal -Vertex 699: Normal -Vertex 700: Normal -Vertex 701: Normal -Vertex 702: Normal -Vertex 703: Normal -Vertex 704: Normal -Vertex 705: Normal -Vertex 706: Normal -Vertex 707: Normal -Vertex 708: Normal -Vertex 709: Normal -Vertex 710: Normal -Vertex 711: Normal -Vertex 712: Normal -Vertex 713: Normal -Vertex 714: Normal -Vertex 715: Normal -Vertex 716: Normal -Vertex 717: Normal -Vertex 718: Normal -Vertex 719: Normal -Vertex 720: Normal -Vertex 721: Normal -Vertex 722: Normal -Vertex 723: Normal -Vertex 724: Normal -Vertex 725: Normal -Vertex 726: Normal -Vertex 727: Normal -Vertex 728: Normal -Vertex 729: Normal -Vertex 730: Normal -Vertex 731: Normal -Vertex 732: Normal -Vertex 733: Normal -Vertex 734: Normal -Vertex 735: Normal -Vertex 736: Normal -Vertex 737: Normal -Vertex 738: Normal -Vertex 739: Normal -Vertex 740: Normal -Vertex 741: Normal -Vertex 742: Normal -Vertex 743: Normal -Vertex 744: Normal -Vertex 745: Normal -Vertex 746: Normal -Vertex 747: Normal -Vertex 748: Normal -Vertex 749: Normal -Vertex 750: Normal -Vertex 751: Normal -Vertex 752: Normal -Vertex 753: Normal -Vertex 754: Normal -Vertex 755: Normal -Vertex 756: Normal -Vertex 757: Normal -Vertex 758: Normal -Vertex 759: Normal -Vertex 760: Normal -Vertex 761: Normal -Vertex 762: Normal -Vertex 763: Normal -Vertex 764: Normal -Vertex 765: Normal -Vertex 766: Normal -Vertex 767: Normal -Vertex 768: Normal -Vertex 769: Normal -Vertex 770: Normal -Vertex 771: Normal -Vertex 772: Normal -Vertex 773: Normal -Vertex 774: Normal -Vertex 775: Normal -Vertex 776: Normal -Vertex 777: Normal -Vertex 778: Normal -Vertex 779: Normal -Vertex 780: Normal -Vertex 781: Normal -Vertex 782: Normal -Vertex 783: Normal -Vertex 784: Normal -Vertex 785: Normal -Vertex 786: Normal -Vertex 787: Normal -Vertex 788: Normal -Vertex 789: Normal -Vertex 790: Normal -Vertex 791: Normal -Vertex 792: Normal -Vertex 793: Normal -Vertex 794: Normal -Vertex 795: Normal -Vertex 796: Normal -Vertex 797: Normal -Vertex 798: Normal -Vertex 799: Normal -Vertex 800: Normal -Vertex 801: Normal -Vertex 802: Normal -Vertex 803: Normal -Vertex 804: Normal -Vertex 805: Normal -Vertex 806: Normal -Vertex 807: Normal -Vertex 808: Normal -Vertex 809: Normal -Vertex 810: Normal -Vertex 811: Normal -Vertex 812: Normal -Vertex 813: Normal -Vertex 814: Normal -Vertex 815: Normal -Vertex 816: Normal -Vertex 817: Normal -Vertex 818: Normal -Vertex 819: Normal -Vertex 820: Normal -Vertex 821: Normal -Vertex 822: Normal -Vertex 823: Normal -Vertex 824: Normal -Vertex 825: Normal -Vertex 826: Normal -Vertex 827: Normal -Vertex 828: Normal -Vertex 829: Normal -Vertex 830: Normal -Vertex 831: Normal -Vertex 832: Normal -Vertex 833: Normal -Vertex 834: Normal -Vertex 835: Normal -Vertex 836: Normal -Vertex 837: Normal -Vertex 838: Normal -Vertex 839: Normal -Vertex 840: Normal -Vertex 841: Normal -Vertex 842: Normal -Vertex 843: Normal -Vertex 844: Normal -Vertex 845: Normal -Vertex 846: Normal -Vertex 847: Normal -Vertex 848: Normal -Vertex 849: Normal -Vertex 850: Normal -Vertex 851: Normal -Vertex 852: Normal -Vertex 853: Normal -Vertex 854: Normal -Vertex 855: Normal -Vertex 856: Normal -Vertex 857: Normal -Vertex 858: Normal -Vertex 859: Normal -Vertex 860: Normal -Vertex 861: Normal -Vertex 862: Normal -Vertex 863: Normal -Vertex 864: Normal -Vertex 865: Normal -Vertex 866: Normal -Vertex 867: Normal -Vertex 868: Normal -Vertex 869: Normal -Vertex 870: Normal -Vertex 871: Normal -Vertex 872: Normal -Vertex 873: Normal -Vertex 874: Normal -Vertex 875: Normal -Vertex 876: Normal -Vertex 877: Normal -Vertex 878: Normal -Vertex 879: Normal -Vertex 880: Normal -Vertex 881: Normal -Vertex 882: Normal -Vertex 883: Normal -Vertex 884: Normal -Vertex 885: Normal -Vertex 886: Normal -Vertex 887: Normal -Vertex 888: Normal -Vertex 889: Normal -Vertex 890: Normal -Vertex 891: Normal -Vertex 892: Normal -Vertex 893: Normal -Vertex 894: Normal -Vertex 895: Normal -Vertex 896: Normal -Vertex 897: Normal -Vertex 898: Normal -Vertex 899: Normal -Vertex 900: Normal -Vertex 901: Normal -Vertex 902: Normal -Vertex 903: Normal -Vertex 904: Normal -Vertex 905: Normal -Vertex 906: Normal -Vertex 907: Normal -Vertex 908: Normal -Vertex 909: Normal -Vertex 910: Normal -Vertex 911: Normal -Vertex 912: Normal -Vertex 913: Normal -Vertex 914: Normal -Vertex 915: Normal -Vertex 916: Normal -Vertex 917: Normal -Vertex 918: Normal -Vertex 919: Normal -Vertex 920: Normal -Vertex 921: Normal -Vertex 922: Normal -Vertex 923: Normal -Vertex 924: Normal -Vertex 925: Normal -Vertex 926: Normal -Vertex 927: Normal -Vertex 928: Normal -Vertex 929: Normal -Vertex 930: Normal -Vertex 931: Normal -Vertex 932: Normal -Vertex 933: Normal -Vertex 934: Normal -Vertex 935: Normal -Vertex 936: Normal -Vertex 937: Normal -Vertex 938: Normal -Vertex 939: Normal -Vertex 940: Normal -Vertex 941: Normal -Vertex 942: Normal -Vertex 943: Normal -Vertex 944: Normal -Vertex 945: Normal -Vertex 946: Normal -Vertex 947: Normal -Vertex 948: Normal -Vertex 949: Normal -Vertex 950: Normal -Vertex 951: Normal -Vertex 952: Normal -Vertex 953: Normal -Vertex 954: Normal -Vertex 955: Normal -Vertex 956: Normal -Vertex 957: Normal -Vertex 958: Normal -Vertex 959: Normal -Vertex 960: Normal -Vertex 961: Normal -Vertex 962: Normal -Vertex 963: Normal -Vertex 964: Normal -Vertex 965: Normal -Vertex 966: Normal -Vertex 967: Normal -Vertex 968: Normal -Vertex 969: Normal -Vertex 970: Normal -Vertex 971: Normal -Vertex 972: Normal -Vertex 973: Normal -Vertex 974: Normal -Vertex 975: Normal -Vertex 976: Normal -Vertex 977: Normal -Vertex 978: Normal -Vertex 979: Normal -Vertex 980: Normal -Vertex 981: Normal -Vertex 982: Normal -Vertex 983: Normal -Vertex 984: Normal -Vertex 985: Normal -Vertex 986: Normal -Vertex 987: Normal -Vertex 988: Normal -Vertex 989: Normal -Vertex 990: Normal -Vertex 991: Normal -Vertex 992: Normal -Vertex 993: Normal -Vertex 994: Normal -Vertex 995: Normal -Vertex 996: Normal -Vertex 997: Normal -Vertex 998: Normal -Vertex 999: Normal -Vertex 1000: Normal -Vertex 1001: Normal -Vertex 1002: Normal -Vertex 1003: Normal -Vertex 1004: Normal -Vertex 1005: Normal -Vertex 1006: Normal -Vertex 1007: Normal -Vertex 1008: Normal -Vertex 1009: Normal -Vertex 1010: Normal -Vertex 1011: Normal -Vertex 1012: Normal -Vertex 1013: Normal -Vertex 1014: Normal -Vertex 1015: Normal -Vertex 1016: Normal -Vertex 1017: Normal -Vertex 1018: Normal -Vertex 1019: Normal -Vertex 1020: Normal -Vertex 1021: Normal -Vertex 1022: Normal -Vertex 1023: Normal -Vertex 1024: Normal -Vertex 1025: Normal -Vertex 1026: Normal -Vertex 1027: Normal -Vertex 1028: Normal -Vertex 1029: Normal -Vertex 1030: Normal -Vertex 1031: Normal -Vertex 1032: Normal -Vertex 1033: Normal -Vertex 1034: Normal -Vertex 1035: Normal -Vertex 1036: Normal -Vertex 1037: Normal -Vertex 1038: Normal -Vertex 1039: Normal -Vertex 1040: Normal -Vertex 1041: Normal -Vertex 1042: Normal -Vertex 1043: Normal -Vertex 1044: Normal -Vertex 1045: Normal -Vertex 1046: Normal -Vertex 1047: Normal -Vertex 1048: Normal -Vertex 1049: Normal -Vertex 1050: Normal -Vertex 1051: Normal -Vertex 1052: Normal -Vertex 1053: Normal -Vertex 1054: Normal -Vertex 1055: Normal -Vertex 1056: Normal -Vertex 1057: Normal -Vertex 1058: Normal -Vertex 1059: Normal -Vertex 1060: Normal -Vertex 1061: Normal -Vertex 1062: Normal -Vertex 1063: Normal -Vertex 1064: Normal -Vertex 1065: Normal -Vertex 1066: Normal -Vertex 1067: Normal -Vertex 1068: Normal -Vertex 1069: Normal -Vertex 1070: Normal -Vertex 1071: Normal -Vertex 1072: Normal -Vertex 1073: Normal -Vertex 1074: Normal -Vertex 1075: Normal -Vertex 1076: Normal -Vertex 1077: Normal -Vertex 1078: Normal -Vertex 1079: Normal -Vertex 1080: Normal -Vertex 1081: Normal -Vertex 1082: Normal -Vertex 1083: Normal -Vertex 1084: Normal -Vertex 1085: Normal -Vertex 1086: Normal -Vertex 1087: Normal -Vertex 1088: Normal -Vertex 1089: Normal -Vertex 1090: Normal -Vertex 1091: Normal -Vertex 1092: Normal -Vertex 1093: Normal -Vertex 1094: Normal -Vertex 1095: Normal -Vertex 1096: Normal -Vertex 1097: Normal -Vertex 1098: Normal -Vertex 1099: Normal -Vertex 1100: Normal -Vertex 1101: Normal -Vertex 1102: Normal -Vertex 1103: Normal -Vertex 1104: Normal -Vertex 1105: Normal -Vertex 1106: Normal -Vertex 1107: Normal -Vertex 1108: Normal -Vertex 1109: Normal -Vertex 1110: Normal -Vertex 1111: Normal -Vertex 1112: Normal -Vertex 1113: Normal -Vertex 1114: Normal -Vertex 1115: Normal -Vertex 1116: Normal -Vertex 1117: Normal -Vertex 1118: Normal -Vertex 1119: Normal -Vertex 1120: Normal -Vertex 1121: Normal -Vertex 1122: Normal -Vertex 1123: Normal -Vertex 1124: Normal -Vertex 1125: Normal -Vertex 1126: Normal -Vertex 1127: Normal -Vertex 1128: Normal -Vertex 1129: Normal -Vertex 1130: Normal -Vertex 1131: Normal -Vertex 1132: Normal -Vertex 1133: Normal -Vertex 1134: Normal -Vertex 1135: Normal -Vertex 1136: Normal -Vertex 1137: Normal -Vertex 1138: Normal -Vertex 1139: Normal -Vertex 1140: Normal -Vertex 1141: Normal -Vertex 1142: Normal -Vertex 1143: Normal -Vertex 1144: Normal -Vertex 1145: Normal -Vertex 1146: Normal -Vertex 1147: Normal -Vertex 1148: Normal -Vertex 1149: Normal -Vertex 1150: Normal -Vertex 1151: Normal -Vertex 1152: Normal -Vertex 1153: Normal -Vertex 1154: Normal -Vertex 1155: Normal -Vertex 1156: Normal -Vertex 1157: Normal -Vertex 1158: Normal -Vertex 1159: Normal -Vertex 1160: Normal -Vertex 1161: Normal -Vertex 1162: Normal -Vertex 1163: Normal -Vertex 1164: Normal -Vertex 1165: Normal -Vertex 1166: Normal -Vertex 1167: Normal -Vertex 1168: Normal -Vertex 1169: Normal -Vertex 1170: Normal -Vertex 1171: Normal -Vertex 1172: Normal -Vertex 1173: Normal -Vertex 1174: Normal -Vertex 1175: Normal -Vertex 1176: Normal -Vertex 1177: Normal -Vertex 1178: Normal -Vertex 1179: Normal -Vertex 1180: Normal -Vertex 1181: Normal -Vertex 1182: Normal -Vertex 1183: Normal -Vertex 1184: Normal -Vertex 1185: Normal -Vertex 1186: Normal -Vertex 1187: Normal -Vertex 1188: Normal -Vertex 1189: Normal -Vertex 1190: Normal -Vertex 1191: Normal -Vertex 1192: Normal -Vertex 1193: Normal -Vertex 1194: Normal -Vertex 1195: Normal -Vertex 1196: Normal -Vertex 1197: Normal -Vertex 1198: Normal -Vertex 1199: Normal -Vertex 1200: Normal -Vertex 1201: Normal -Vertex 1202: Normal -Vertex 1203: Normal -Vertex 1204: Normal -Vertex 1205: Normal -Vertex 1206: Normal -Vertex 1207: Normal -Vertex 1208: Normal -Vertex 1209: Normal -Vertex 1210: Normal -Vertex 1211: Normal -Vertex 1212: Normal -Vertex 1213: Normal -Vertex 1214: Normal -Vertex 1215: Normal -Vertex 1216: Normal -Vertex 1217: Normal -Vertex 1218: Normal -Vertex 1219: Normal -Vertex 1220: Normal -Vertex 1221: Normal -Vertex 1222: Normal -Vertex 1223: Normal -Vertex 1224: Normal -Vertex 1225: Normal -Vertex 1226: Normal -Vertex 1227: Normal -Vertex 1228: Normal -Vertex 1229: Normal -Vertex 1230: Normal -Vertex 1231: Normal -Vertex 1232: Normal -Vertex 1233: Normal -Vertex 1234: Normal -Vertex 1235: Normal -Vertex 1236: Normal -Vertex 1237: Normal -Vertex 1238: Normal -Vertex 1239: Normal -Vertex 1240: Normal -Vertex 1241: Normal -Vertex 1242: Normal -Vertex 1243: Normal -Vertex 1244: Normal -Vertex 1245: Normal -Vertex 1246: Normal -Vertex 1247: Normal -Vertex 1248: Normal -Vertex 1249: Normal -Vertex 1250: Normal -Vertex 1251: Normal -Vertex 1252: Normal -Vertex 1253: Normal -Vertex 1254: Normal -Vertex 1255: Normal -Vertex 1256: Normal -Vertex 1257: Normal -Vertex 1258: Normal -Vertex 1259: Normal -Vertex 1260: Normal -Vertex 1261: Normal -Vertex 1262: Normal -Vertex 1263: Normal -Vertex 1264: Normal -Vertex 1265: Normal -Vertex 1266: Normal -Vertex 1267: Normal -Vertex 1268: Normal -Vertex 1269: Normal -Vertex 1270: Normal -Vertex 1271: Normal -Vertex 1272: Normal -Vertex 1273: Normal -Vertex 1274: Normal -Vertex 1275: Normal -Vertex 1276: Normal -Vertex 1277: Normal -Vertex 1278: Normal -Vertex 1279: Normal -Vertex 1280: Normal -Vertex 1281: Normal -Vertex 1282: Normal -Vertex 1283: Normal -Vertex 1284: Normal -Vertex 1285: Normal -Vertex 1286: Normal -Vertex 1287: Normal -Vertex 1288: Normal -Vertex 1289: Normal -Vertex 1290: Normal -Vertex 1291: Normal -Vertex 1292: Normal -Vertex 1293: Normal -Vertex 1294: Normal -Vertex 1295: Normal -Vertex 1296: Normal -Vertex 1297: Normal -Vertex 1298: Normal -Vertex 1299: Normal -Vertex 1300: Normal -Vertex 1301: Normal -Vertex 1302: Normal -Vertex 1303: Normal -Vertex 1304: Normal -Vertex 1305: Normal -Vertex 1306: Normal -Vertex 1307: Normal -Vertex 1308: Normal -Vertex 1309: Normal -Vertex 1310: Normal -Vertex 1311: Normal -Vertex 1312: Normal -Vertex 1313: Normal -Vertex 1314: Normal -Vertex 1315: Normal -Vertex 1316: Normal -Vertex 1317: Normal -Vertex 1318: Normal -Vertex 1319: Normal -Vertex 1320: Normal -Vertex 1321: Normal -Vertex 1322: Normal -Vertex 1323: Normal -Vertex 1324: Normal -Vertex 1325: Normal -Vertex 1326: Normal -Vertex 1327: Normal -Vertex 1328: Normal -Vertex 1329: Normal -Vertex 1330: Normal -Vertex 1331: Normal -Vertex 1332: Normal -Vertex 1333: Normal -Vertex 1334: Normal -Vertex 1335: Normal -Vertex 1336: Normal -Vertex 1337: Normal -Vertex 1338: Normal -Vertex 1339: Normal -Vertex 1340: Normal -Vertex 1341: Normal -Vertex 1342: Normal -Vertex 1343: Normal -Vertex 1344: Normal -Vertex 1345: Normal -Vertex 1346: Normal -Vertex 1347: Normal -Vertex 1348: Normal -Vertex 1349: Normal -Vertex 1350: Normal -Vertex 1351: Normal -Vertex 1352: Normal -Vertex 1353: Normal -Vertex 1354: Normal -Vertex 1355: Normal -Vertex 1356: Normal -Vertex 1357: Normal -Vertex 1358: Normal -Vertex 1359: Normal -Vertex 1360: Normal -Vertex 1361: Normal -Vertex 1362: Normal -Vertex 1363: Normal -Vertex 1364: Normal -Vertex 1365: Normal -Vertex 1366: Normal -Vertex 1367: Normal -Vertex 1368: Normal -Vertex 1369: Normal -Vertex 1370: Normal -Vertex 1371: Normal -Vertex 1372: Normal -Vertex 1373: Normal -Vertex 1374: Normal -Vertex 1375: Normal -Vertex 1376: Normal -Vertex 1377: Normal -Vertex 1378: Normal -Vertex 1379: Normal -Vertex 1380: Normal -Vertex 1381: Normal -Vertex 1382: Normal -Vertex 1383: Normal -Vertex 1384: Normal -Vertex 1385: Normal -Vertex 1386: Normal -Vertex 1387: Normal -Vertex 1388: Normal -Vertex 1389: Normal -Vertex 1390: Normal -Vertex 1391: Normal -Vertex 1392: Normal -Vertex 1393: Normal -Vertex 1394: Normal -Vertex 1395: Normal -Vertex 1396: Normal -Vertex 1397: Normal -Vertex 1398: Normal -Vertex 1399: Normal -Vertex 1400: Normal -Vertex 1401: Normal -Vertex 1402: Normal -Vertex 1403: Normal -Vertex 1404: Normal -Vertex 1405: Normal -Vertex 1406: Normal -Vertex 1407: Normal -Vertex 1408: Normal -Vertex 1409: Normal -Vertex 1410: Normal -Vertex 1411: Normal -Vertex 1412: Normal -Vertex 1413: Normal -Vertex 1414: Normal -Vertex 1415: Normal -Vertex 1416: Normal -Vertex 1417: Normal -Vertex 1418: Normal -Vertex 1419: Normal -Vertex 1420: Normal -Vertex 1421: Normal -Vertex 1422: Normal -Vertex 1423: Normal -Vertex 1424: Normal -Vertex 1425: Normal -Vertex 1426: Normal -Vertex 1427: Normal -Vertex 1428: Normal -Vertex 1429: Normal -Vertex 1430: Normal -Vertex 1431: Normal -Vertex 1432: Normal -Vertex 1433: Normal -Vertex 1434: Normal -Vertex 1435: Normal -Vertex 1436: Normal -Vertex 1437: Normal -Vertex 1438: Normal -Vertex 1439: Normal -Vertex 1440: Normal -Vertex 1441: Normal -Vertex 1442: Normal -Vertex 1443: Normal -Vertex 1444: Normal -Vertex 1445: Normal -Vertex 1446: Normal -Vertex 1447: Normal -Vertex 1448: Normal -Vertex 1449: Normal -Vertex 1450: Normal -Vertex 1451: Normal -Vertex 1452: Normal -Vertex 1453: Normal -Vertex 1454: Normal -Vertex 1455: Normal -Vertex 1456: Normal -Vertex 1457: Normal -Vertex 1458: Normal -Vertex 1459: Normal -Vertex 1460: Normal -Vertex 1461: Normal -Vertex 1462: Normal -Vertex 1463: Normal -Vertex 1464: Normal -Vertex 1465: Normal -Vertex 1466: Normal -Vertex 1467: Normal -Vertex 1468: Normal -Vertex 1469: Normal -Vertex 1470: Normal -Vertex 1471: Normal -Vertex 1472: Normal -Vertex 1473: Normal -Vertex 1474: Normal -Vertex 1475: Normal -Vertex 1476: Normal -Vertex 1477: Normal -Vertex 1478: Normal -Vertex 1479: Normal -Vertex 1480: Normal -Vertex 1481: Normal -Vertex 1482: Normal -Vertex 1483: Normal -Vertex 1484: Normal -Vertex 1485: Normal -Vertex 1486: Normal -Vertex 1487: Normal -Vertex 1488: Normal -Vertex 1489: Normal -Vertex 1490: Normal -Vertex 1491: Normal -Vertex 1492: Normal -Vertex 1493: Normal -Vertex 1494: Normal -Vertex 1495: Normal -Vertex 1496: Normal -Vertex 1497: Normal -Vertex 1498: Normal -Vertex 1499: Normal -Vertex 1500: Normal -Vertex 1501: Normal -Vertex 1502: Normal -Vertex 1503: Normal -Vertex 1504: Normal -Vertex 1505: Normal -Vertex 1506: Normal -Vertex 1507: Normal -Vertex 1508: Normal -Vertex 1509: Normal -Vertex 1510: Normal -Vertex 1511: Normal -Vertex 1512: Normal -Vertex 1513: Normal -Vertex 1514: Normal -Vertex 1515: Normal -Vertex 1516: Normal -Vertex 1517: Normal -Vertex 1518: Normal -Vertex 1519: Normal -Vertex 1520: Normal -Vertex 1521: Normal -Vertex 1522: Normal -Vertex 1523: Normal -Vertex 1524: Normal -Vertex 1525: Normal -Vertex 1526: Normal -Vertex 1527: Normal -Vertex 1528: Normal -Vertex 1529: Normal -Vertex 1530: Normal -Vertex 1531: Normal -Vertex 1532: Normal -Vertex 1533: Normal -Vertex 1534: Normal -Vertex 1535: Normal -Vertex 1536: Normal -Vertex 1537: Normal -Vertex 1538: Normal -Vertex 1539: Normal -Vertex 1540: Normal -Vertex 1541: Normal -Vertex 1542: Normal -Vertex 1543: Normal -Vertex 1544: Normal -Vertex 1545: Normal -Vertex 1546: Normal -Vertex 1547: Normal -Vertex 1548: Normal -Vertex 1549: Normal -Vertex 1550: Normal -Vertex 1551: Normal -Vertex 1552: Normal -Vertex 1553: Normal -Vertex 1554: Normal -Vertex 1555: Normal -Vertex 1556: Normal -Vertex 1557: Normal -Vertex 1558: Normal -Vertex 1559: Normal -Vertex 1560: Normal -Vertex 1561: Normal -Vertex 1562: Normal -Vertex 1563: Normal -Vertex 1564: Normal -Vertex 1565: Normal -Vertex 1566: Normal -Vertex 1567: Normal -Vertex 1568: Normal -Vertex 1569: Normal -Vertex 1570: Normal -Vertex 1571: Normal -Vertex 1572: Normal -Vertex 1573: Normal -Vertex 1574: Normal -Vertex 1575: Normal -Vertex 1576: Normal -Vertex 1577: Normal -Vertex 1578: Normal -Vertex 1579: Normal -Vertex 1580: Normal -Vertex 1581: Normal -Vertex 1582: Normal -Vertex 1583: Normal -Vertex 1584: Normal -Vertex 1585: Normal -Vertex 1586: Normal -Vertex 1587: Normal -Vertex 1588: Normal -Vertex 1589: Normal -Vertex 1590: Normal -Vertex 1591: Normal -Vertex 1592: Normal -Vertex 1593: Normal -Vertex 1594: Normal -Vertex 1595: Normal -Vertex 1596: Normal -Vertex 1597: Normal -Vertex 1598: Normal -Vertex 1599: Normal -Vertex 1600: Normal -Vertex 1601: Normal -Vertex 1602: Normal -Vertex 1603: Normal -Vertex 1604: Normal -Vertex 1605: Normal -Vertex 1606: Normal -Vertex 1607: Normal -Vertex 1608: Normal -Vertex 1609: Normal -Vertex 1610: Normal -Vertex 1611: Normal -Vertex 1612: Normal -Vertex 1613: Normal -Vertex 1614: Normal -Vertex 1615: Normal -Vertex 1616: Normal -Vertex 1617: Normal -Vertex 1618: Normal -Vertex 1619: Normal -Vertex 1620: Normal -Vertex 1621: Normal -Vertex 1622: Normal -Vertex 1623: Normal -Vertex 1624: Normal -Vertex 1625: Normal -Vertex 1626: Normal -Vertex 1627: Normal -Vertex 1628: Normal -Vertex 1629: Normal -Vertex 1630: Normal -Vertex 1631: Normal -Vertex 1632: Normal -Vertex 1633: Normal -Vertex 1634: Normal -Vertex 1635: Normal -Vertex 1636: Normal -Vertex 1637: Normal -Vertex 1638: Normal -Vertex 1639: Normal -Vertex 1640: Normal -Vertex 1641: Normal -Vertex 1642: Normal -Vertex 1643: Normal -Vertex 1644: Normal -Vertex 1645: Normal -Vertex 1646: Normal -Vertex 1647: Normal -Vertex 1648: Normal -Vertex 1649: Normal -Vertex 1650: Normal -Vertex 1651: Normal -Vertex 1652: Normal -Vertex 1653: Normal -Vertex 1654: Normal -Vertex 1655: Normal -Vertex 1656: Normal -Vertex 1657: Normal -Vertex 1658: Normal -Vertex 1659: Normal -Vertex 1660: Normal -Vertex 1661: Normal -Vertex 1662: Normal -Vertex 1663: Normal -Vertex 1664: Normal -Vertex 1665: Normal -Vertex 1666: Normal -Vertex 1667: Normal -Vertex 1668: Normal -Vertex 1669: Normal -Vertex 1670: Normal -Vertex 1671: Normal -Vertex 1672: Normal -Vertex 1673: Normal -Vertex 1674: Normal -Vertex 1675: Normal -Vertex 1676: Normal -Vertex 1677: Normal -Vertex 1678: Normal -Vertex 1679: Normal -Vertex 1680: Normal -Vertex 1681: Normal -Vertex 1682: Normal -Vertex 1683: Normal -Vertex 1684: Normal -Vertex 1685: Normal -Vertex 1686: Normal -Vertex 1687: Normal -Vertex 1688: Normal -Vertex 1689: Normal -Vertex 1690: Normal -Vertex 1691: Normal -Vertex 1692: Normal -Vertex 1693: Normal -Vertex 1694: Normal -Vertex 1695: Normal -Vertex 1696: Normal -Vertex 1697: Normal -Vertex 1698: Normal -Vertex 1699: Normal -Vertex 1700: Normal -Vertex 1701: Normal -Vertex 1702: Normal -Vertex 1703: Normal -Vertex 1704: Normal -Vertex 1705: Normal -Vertex 1706: Normal -Vertex 1707: Normal -Vertex 1708: Normal -Vertex 1709: Normal -Vertex 1710: Normal -Vertex 1711: Normal -Vertex 1712: Normal -Vertex 1713: Normal -Vertex 1714: Normal -Vertex 1715: Normal -Vertex 1716: Normal -Vertex 1717: Normal -Vertex 1718: Normal -Vertex 1719: Normal -Vertex 1720: Normal -Vertex 1721: Normal -Vertex 1722: Normal -Vertex 1723: Normal -Vertex 1724: Normal -Vertex 1725: Normal -Vertex 1726: Normal -Vertex 1727: Normal -Vertex 1728: Normal -Vertex 1729: Normal -Vertex 1730: Normal -Vertex 1731: Normal -Vertex 1732: Normal -Vertex 1733: Normal -Vertex 1734: Normal -Vertex 1735: Normal -Vertex 1736: Normal -Vertex 1737: Normal -Vertex 1738: Normal -Vertex 1739: Normal -Vertex 1740: Normal -Vertex 1741: Normal -Vertex 1742: Normal -Vertex 1743: Normal -Vertex 1744: Normal -Vertex 1745: Normal -Vertex 1746: Normal -Vertex 1747: Normal -Vertex 1748: Normal -Vertex 1749: Normal -Vertex 1750: Normal -Vertex 1751: Normal -Vertex 1752: Normal -Vertex 1753: Normal -Vertex 1754: Normal -Vertex 1755: Normal -Vertex 1756: Normal -Vertex 1757: Normal -Vertex 1758: Normal -Vertex 1759: Normal -Vertex 1760: Normal -Vertex 1761: Normal -Vertex 1762: Normal -Vertex 1763: Normal -Vertex 1764: Normal -Vertex 1765: Normal -Vertex 1766: Normal -Vertex 1767: Normal -Vertex 1768: Normal -Vertex 1769: Normal -Vertex 1770: Normal -Vertex 1771: Normal -Vertex 1772: Normal -Vertex 1773: Normal -Vertex 1774: Normal -Vertex 1775: Normal -Vertex 1776: Normal -Vertex 1777: Normal -Vertex 1778: Normal -Vertex 1779: Normal -Vertex 1780: Normal -Vertex 1781: Normal -Vertex 1782: Normal -Vertex 1783: Normal -Vertex 1784: Normal -Vertex 1785: Normal -Vertex 1786: Normal -Vertex 1787: Normal -Vertex 1788: Normal -Vertex 1789: Normal -Vertex 1790: Normal -Vertex 1791: Normal -Vertex 1792: Normal -Vertex 1793: Normal -Vertex 1794: Normal -Vertex 1795: Normal -Vertex 1796: Normal -Vertex 1797: Normal -Vertex 1798: Normal -Vertex 1799: Normal -Vertex 1800: Normal -Vertex 1801: Normal -Vertex 1802: Normal -Vertex 1803: Normal -Vertex 1804: Normal -Vertex 1805: Normal -Vertex 1806: Normal -Vertex 1807: Normal -Vertex 1808: Normal -Vertex 1809: Normal -Vertex 1810: Normal -Vertex 1811: Normal -Vertex 1812: Normal -Vertex 1813: Normal -Vertex 1814: Normal -Vertex 1815: Normal -Vertex 1816: Normal -Vertex 1817: Normal -Vertex 1818: Normal -Vertex 1819: Normal -Vertex 1820: Normal -Vertex 1821: Normal -Vertex 1822: Normal -Vertex 1823: Normal -Vertex 1824: Normal -Vertex 1825: Normal -Vertex 1826: Normal -Vertex 1827: Normal -Vertex 1828: Normal -Vertex 1829: Normal -Vertex 1830: Normal -Vertex 1831: Normal -Vertex 1832: Normal -Vertex 1833: Normal -Vertex 1834: Normal -Vertex 1835: Normal -Vertex 1836: Normal -Vertex 1837: Normal -Vertex 1838: Normal -Vertex 1839: Normal -Vertex 1840: Normal -Vertex 1841: Normal -Vertex 1842: Normal -Vertex 1843: Normal -Vertex 1844: Normal -Vertex 1845: Normal -Vertex 1846: Normal -Vertex 1847: Normal -Vertex 1848: Normal -Vertex 1849: Normal -Vertex 1850: Normal -Vertex 1851: Normal -Vertex 1852: Normal -Vertex 1853: Normal -Vertex 1854: Normal -Vertex 1855: Normal -Vertex 1856: Normal -Vertex 1857: Normal -Vertex 1858: Normal -Vertex 1859: Normal -Vertex 1860: Normal -Vertex 1861: Normal -Vertex 1862: Normal -Vertex 1863: Normal -Vertex 1864: Normal -Vertex 1865: Normal -Vertex 1866: Normal -Vertex 1867: Normal -Vertex 1868: Normal -Vertex 1869: Normal -Vertex 1870: Normal -Vertex 1871: Normal -Vertex 1872: Normal -Vertex 1873: Normal -Vertex 1874: Normal -Vertex 1875: Normal -Vertex 1876: Normal -Vertex 1877: Normal -Vertex 1878: Normal -Vertex 1879: Normal -Vertex 1880: Normal -Vertex 1881: Normal -Vertex 1882: Normal -Vertex 1883: Normal -Vertex 1884: Normal -Vertex 1885: Normal -Vertex 1886: Normal -Vertex 1887: Normal -Vertex 1888: Normal -Vertex 1889: Normal -Vertex 1890: Normal -Vertex 1891: Normal -Vertex 1892: Normal -Vertex 1893: Normal -Vertex 1894: Normal -Vertex 1895: Normal -Vertex 1896: Normal -Vertex 1897: Normal -Vertex 1898: Normal -Vertex 1899: Normal -Vertex 1900: Normal -Vertex 1901: Normal -Vertex 1902: Normal -Vertex 1903: Normal -Vertex 1904: Normal -Vertex 1905: Normal -Vertex 1906: Normal -Vertex 1907: Normal -Vertex 1908: Normal -Vertex 1909: Normal -Vertex 1910: Normal -Vertex 1911: Normal -Vertex 1912: Normal -Vertex 1913: Normal -Vertex 1914: Normal -Vertex 1915: Normal -Vertex 1916: Normal -Vertex 1917: Normal -Vertex 1918: Normal -Vertex 1919: Normal -Vertex 1920: Normal -Vertex 1921: Normal -Vertex 1922: Normal -Vertex 1923: Normal -Vertex 1924: Normal -Vertex 1925: Normal -Vertex 1926: Normal -Vertex 1927: Normal -Vertex 1928: Normal -Vertex 1929: Normal -Vertex 1930: Normal -Vertex 1931: Normal -Vertex 1932: Normal -Vertex 1933: Normal -Vertex 1934: Normal -Vertex 1935: Normal -Vertex 1936: Normal -Vertex 1937: Normal -Vertex 1938: Normal -Vertex 1939: Normal -Vertex 1940: Normal -Vertex 1941: Normal -Vertex 1942: Normal -Vertex 1943: Normal -Vertex 1944: Normal -Vertex 1945: Normal -Vertex 1946: Normal -Vertex 1947: Normal -Vertex 1948: Normal -Vertex 1949: Normal -Vertex 1950: Normal -Vertex 1951: Normal -Vertex 1952: Normal -Vertex 1953: Normal -Vertex 1954: Normal -Vertex 1955: Normal -Vertex 1956: Normal -Vertex 1957: Normal -Vertex 1958: Normal -Vertex 1959: Normal -Vertex 1960: Normal -Vertex 1961: Normal -Vertex 1962: Normal -Vertex 1963: Normal -Vertex 1964: Normal -Vertex 1965: Normal -Vertex 1966: Normal -Vertex 1967: Normal -Vertex 1968: Normal -Vertex 1969: Normal -Vertex 1970: Normal -Vertex 1971: Normal -Vertex 1972: Normal -Vertex 1973: Normal -Vertex 1974: Normal -Vertex 1975: Normal -Vertex 1976: Normal -Vertex 1977: Normal -Vertex 1978: Normal -Vertex 1979: Normal -Vertex 1980: Normal -Vertex 1981: Normal -Vertex 1982: Normal -Vertex 1983: Normal -Vertex 1984: Normal -Vertex 1985: Normal -Vertex 1986: Normal -Vertex 1987: Normal -Vertex 1988: Normal -Vertex 1989: Normal -Vertex 1990: Normal -Vertex 1991: Normal -Vertex 1992: Normal -Vertex 1993: Normal -Vertex 1994: Normal -Vertex 1995: Normal -Vertex 1996: Normal -Vertex 1997: Normal -Vertex 1998: Normal -Vertex 1999: Normal -Vertex 2000: Normal -Vertex 2001: Normal -Vertex 2002: Normal -Vertex 2003: Normal -Vertex 2004: Normal -Vertex 2005: Normal -Vertex 2006: Normal -Vertex 2007: Normal -Vertex 2008: Normal -Vertex 2009: Normal -Vertex 2010: Normal -Vertex 2011: Normal -Vertex 2012: Normal -Vertex 2013: Normal -Vertex 2014: Normal -Vertex 2015: Normal -Vertex 2016: Normal -Vertex 2017: Normal -Vertex 2018: Normal -Vertex 2019: Normal -Vertex 2020: Normal -Vertex 2021: Normal -Vertex 2022: Normal -Vertex 2023: Normal -Vertex 2024: Normal -Vertex 2025: Normal -Vertex 2026: Normal -Vertex 2027: Normal -Vertex 2028: Normal -Vertex 2029: Normal -Vertex 2030: Normal -Vertex 2031: Normal -Vertex 2032: Normal -Vertex 2033: Normal -Vertex 2034: Normal -Vertex 2035: Normal -Vertex 2036: Normal -Vertex 2037: Normal -Vertex 2038: Normal -Vertex 2039: Normal -Vertex 2040: Normal -Vertex 2041: Normal -Vertex 2042: Normal -Vertex 2043: Normal -Vertex 2044: Normal -Vertex 2045: Normal -Vertex 2046: Normal -Vertex 2047: Normal -Vertex 2048: Normal -Vertex 2049: Normal -Vertex 2050: Normal -Vertex 2051: Normal -Vertex 2052: Normal -Vertex 2053: Normal -Vertex 2054: Normal -Vertex 2055: Normal -Vertex 2056: Normal -Vertex 2057: Normal -Vertex 2058: Normal -Vertex 2059: Normal -Vertex 2060: Normal -Vertex 2061: Normal -Vertex 2062: Normal -Vertex 2063: Normal -Vertex 2064: Normal -Vertex 2065: Normal -Vertex 2066: Normal -Vertex 2067: Normal -Vertex 2068: Normal -Vertex 2069: Normal -Vertex 2070: Normal -Vertex 2071: Normal -Vertex 2072: Normal -Vertex 2073: Normal -Vertex 2074: Normal -Vertex 2075: Normal -Vertex 2076: Normal -Vertex 2077: Normal -Vertex 2078: Normal -Vertex 2079: Normal -Vertex 2080: Normal -Vertex 2081: Normal -Vertex 2082: Normal -Vertex 2083: Normal -Vertex 2084: Normal -Vertex 2085: Normal -Vertex 2086: Normal -Vertex 2087: Normal -Vertex 2088: Normal -Vertex 2089: Normal -Vertex 2090: Normal -Vertex 2091: Normal -Vertex 2092: Normal -Vertex 2093: Normal -Vertex 2094: Normal -Vertex 2095: Normal -Vertex 2096: Normal -Vertex 2097: Normal -Vertex 2098: Normal -Vertex 2099: Normal -Vertex 2100: Normal -Vertex 2101: Normal -Vertex 2102: Normal -Vertex 2103: Normal -Vertex 2104: Normal -Vertex 2105: Normal -Vertex 2106: Normal -Vertex 2107: Normal -Vertex 2108: Normal -Vertex 2109: Normal -Vertex 2110: Normal -Vertex 2111: Normal -Vertex 2112: Normal -Vertex 2113: Normal -Vertex 2114: Normal -Vertex 2115: Normal -Vertex 2116: Normal -Vertex 2117: Normal -Vertex 2118: Normal -Vertex 2119: Normal -Vertex 2120: Normal -Vertex 2121: Normal -Vertex 2122: Normal -Vertex 2123: Normal -Vertex 2124: Normal -Vertex 2125: Normal -Vertex 2126: Normal -Vertex 2127: Normal -Vertex 2128: Normal -Vertex 2129: Normal -Vertex 2130: Normal -Vertex 2131: Normal -Vertex 2132: Normal -Vertex 2133: Normal -Vertex 2134: Normal -Vertex 2135: Normal -Vertex 2136: Normal -Vertex 2137: Normal -Vertex 2138: Normal -Vertex 2139: Normal -Vertex 2140: Normal -Vertex 2141: Normal -Vertex 2142: Normal -Vertex 2143: Normal -Vertex 2144: Normal -Vertex 2145: Normal -Vertex 2146: Normal -Vertex 2147: Normal -Vertex 2148: Normal -Vertex 2149: Normal -Vertex 2150: Normal -Vertex 2151: Normal -Vertex 2152: Normal -Vertex 2153: Normal -Vertex 2154: Normal -Vertex 2155: Normal -Vertex 2156: Normal -Vertex 2157: Normal -Vertex 2158: Normal -Vertex 2159: Normal -Vertex 2160: Normal -Vertex 2161: Normal -Vertex 2162: Normal -Vertex 2163: Normal -Vertex 2164: Normal -Vertex 2165: Normal -Vertex 2166: Normal -Vertex 2167: Normal -Vertex 2168: Normal -Vertex 2169: Normal -Vertex 2170: Normal -Vertex 2171: Normal -Vertex 2172: Normal -Vertex 2173: Normal -Vertex 2174: Normal -Vertex 2175: Normal -Vertex 2176: Normal -Vertex 2177: Normal -Vertex 2178: Normal -Vertex 2179: Normal -Vertex 2180: Normal -Vertex 2181: Normal -Vertex 2182: Normal -Vertex 2183: Normal -Vertex 2184: Normal -Vertex 2185: Normal -Vertex 2186: Normal -Vertex 2187: Normal -Vertex 2188: Normal -Vertex 2189: Normal -Vertex 2190: Normal -Vertex 2191: Normal -Vertex 2192: Normal -Vertex 2193: Normal -Vertex 2194: Normal -Vertex 2195: Normal -Vertex 2196: Normal -Vertex 2197: Normal -Vertex 2198: Normal -Vertex 2199: Normal -Vertex 2200: Normal -Vertex 2201: Normal -Vertex 2202: Normal -Vertex 2203: Normal -Vertex 2204: Normal -Vertex 2205: Normal -Vertex 2206: Normal -Vertex 2207: Normal -Vertex 2208: Normal -Vertex 2209: Normal -Vertex 2210: Normal -Vertex 2211: Normal -Vertex 2212: Normal -Vertex 2213: Normal -Vertex 2214: Normal -Vertex 2215: Normal -Vertex 2216: Normal -Vertex 2217: Normal -Vertex 2218: Normal -Vertex 2219: Normal -Vertex 2220: Normal -Vertex 2221: Normal -Vertex 2222: Normal -Vertex 2223: Normal -Vertex 2224: Normal -Vertex 2225: Normal -Vertex 2226: Normal -Vertex 2227: Normal -Vertex 2228: Normal -Vertex 2229: Normal -Vertex 2230: Normal -Vertex 2231: Normal -Vertex 2232: Normal -Vertex 2233: Normal -Vertex 2234: Normal -Vertex 2235: Normal -Vertex 2236: Normal -Vertex 2237: Normal -Vertex 2238: Normal -Vertex 2239: Normal -Vertex 2240: Normal -Vertex 2241: Normal -Vertex 2242: Normal -Vertex 2243: Normal -Vertex 2244: Normal -Vertex 2245: Normal -Vertex 2246: Normal -Vertex 2247: Normal -Vertex 2248: Normal -Vertex 2249: Normal -Vertex 2250: Normal -Vertex 2251: Normal -Vertex 2252: Normal -Vertex 2253: Normal -Vertex 2254: Normal -Vertex 2255: Normal -Vertex 2256: Normal -Vertex 2257: Normal -Vertex 2258: Normal -Vertex 2259: Normal -Vertex 2260: Normal -Vertex 2261: Normal -Vertex 2262: Normal -Vertex 2263: Normal -Vertex 2264: Normal -Vertex 2265: Normal -Vertex 2266: Normal -Vertex 2267: Normal -Vertex 2268: Normal -Vertex 2269: Normal -Vertex 2270: Normal -Vertex 2271: Normal -Vertex 2272: Normal -Vertex 2273: Normal -Vertex 2274: Normal -Vertex 2275: Normal -Vertex 2276: Normal -Vertex 2277: Normal -Vertex 2278: Normal -Vertex 2279: Normal -Vertex 2280: Normal -Vertex 2281: Normal -Vertex 2282: Normal -Vertex 2283: Normal -Vertex 2284: Normal -Vertex 2285: Normal -Vertex 2286: Normal -Vertex 2287: Normal -Vertex 2288: Normal -Vertex 2289: Normal -Vertex 2290: Normal -Vertex 2291: Normal -Vertex 2292: Normal -Vertex 2293: Normal -Vertex 2294: Normal -Vertex 2295: Normal -Vertex 2296: Normal -Vertex 2297: Normal -Vertex 2298: Normal -Vertex 2299: Normal -Vertex 2300: Normal -Vertex 2301: Normal -Vertex 2302: Normal -Vertex 2303: Normal -Vertex 2304: Normal -Vertex 2305: Normal -Vertex 2306: Normal -Vertex 2307: Normal -Vertex 2308: Normal -Vertex 2309: Normal -Vertex 2310: Normal -Vertex 2311: Normal -Vertex 2312: Normal -Vertex 2313: Normal -Vertex 2314: Normal -Vertex 2315: Normal -Vertex 2316: Normal -Vertex 2317: Normal -Vertex 2318: Normal -Vertex 2319: Normal -Vertex 2320: Normal -Vertex 2321: Normal -Vertex 2322: Normal -Vertex 2323: Normal -Vertex 2324: Normal -Vertex 2325: Normal -Vertex 2326: Normal -Vertex 2327: Normal -Vertex 2328: Normal -Vertex 2329: Normal -Vertex 2330: Normal -Vertex 2331: Normal -Vertex 2332: Normal -Vertex 2333: Normal -Vertex 2334: Normal -Vertex 2335: Normal -Vertex 2336: Normal -Vertex 2337: Normal -Vertex 2338: Normal -Vertex 2339: Normal -Vertex 2340: Normal -Vertex 2341: Normal -Vertex 2342: Normal -Vertex 2343: Normal -Vertex 2344: Normal -Vertex 2345: Normal -Vertex 2346: Normal -Vertex 2347: Normal -Vertex 2348: Normal -Vertex 2349: Normal -Vertex 2350: Normal -Vertex 2351: Normal -Vertex 2352: Normal -Vertex 2353: Normal -Vertex 2354: Normal -Vertex 2355: Normal -Vertex 2356: Normal -Vertex 2357: Normal -Vertex 2358: Normal -Vertex 2359: Normal -Vertex 2360: Normal -Vertex 2361: Normal -Vertex 2362: Normal -Vertex 2363: Normal -Vertex 2364: Normal -Vertex 2365: Normal -Vertex 2366: Normal -Vertex 2367: Normal -Vertex 2368: Normal -Vertex 2369: Normal -Vertex 2370: Normal -Vertex 2371: Normal -Vertex 2372: Normal -Vertex 2373: Normal -Vertex 2374: Normal -Vertex 2375: Normal -Vertex 2376: Normal -Vertex 2377: Normal -Vertex 2378: Normal -Vertex 2379: Normal -Vertex 2380: Normal -Vertex 2381: Normal -Vertex 2382: Normal -Vertex 2383: Normal -Vertex 2384: Normal -Vertex 2385: Normal -Vertex 2386: Normal -Vertex 2387: Normal -Vertex 2388: Normal -Vertex 2389: Normal -Vertex 2390: Normal -Vertex 2391: Normal -Vertex 2392: Normal -Vertex 2393: Normal -Vertex 2394: Normal -Vertex 2395: Normal -Vertex 2396: Normal -Vertex 2397: Normal -Vertex 2398: Normal -Vertex 2399: Normal -Vertex 2400: Normal -Vertex 2401: Normal -Vertex 2402: Normal -Vertex 2403: Normal -Vertex 2404: Normal -Vertex 2405: Normal -Vertex 2406: Normal -Vertex 2407: Normal -Vertex 2408: Normal -Vertex 2409: Normal -Vertex 2410: Normal -Vertex 2411: Normal -Vertex 2412: Normal -Vertex 2413: Normal -Vertex 2414: Normal -Vertex 2415: Normal -Vertex 2416: Normal -Vertex 2417: Normal -Vertex 2418: Normal -Vertex 2419: Normal -Vertex 2420: Normal -Vertex 2421: Normal -Vertex 2422: Normal -Vertex 2423: Normal -Vertex 2424: Normal -Vertex 2425: Normal -Vertex 2426: Normal -Vertex 2427: Normal -Vertex 2428: Normal -Vertex 2429: Normal -Vertex 2430: Normal -Vertex 2431: Normal -Vertex 2432: Normal -Vertex 2433: Normal -Vertex 2434: Normal -Vertex 2435: Normal -Vertex 2436: Normal -Vertex 2437: Normal -Vertex 2438: Normal -Vertex 2439: Normal -Vertex 2440: Normal -Vertex 2441: Normal -Vertex 2442: Normal -Vertex 2443: Normal -Vertex 2444: Normal -Vertex 2445: Normal -Vertex 2446: Normal -Vertex 2447: Normal -Vertex 2448: Normal -Vertex 2449: Normal -Vertex 2450: Normal -Vertex 2451: Normal -Vertex 2452: Normal -Vertex 2453: Normal -Vertex 2454: Normal -Vertex 2455: Normal -Vertex 2456: Normal -Vertex 2457: Normal -Vertex 2458: Normal -Vertex 2459: Normal -Vertex 2460: Normal -Vertex 2461: Normal -Vertex 2462: Normal -Vertex 2463: Normal -Vertex 2464: Normal -Vertex 2465: Normal -Vertex 2466: Normal -Vertex 2467: Normal -Vertex 2468: Normal -Vertex 2469: Normal -Vertex 2470: Normal -Vertex 2471: Normal -Vertex 2472: Normal -Vertex 2473: Normal -Vertex 2474: Normal -Vertex 2475: Normal -Vertex 2476: Normal -Vertex 2477: Normal -Vertex 2478: Normal -Vertex 2479: Normal -Vertex 2480: Normal -Vertex 2481: Normal -Vertex 2482: Normal -Vertex 2483: Normal -Vertex 2484: Normal -Vertex 2485: Normal -Vertex 2486: Normal -Vertex 2487: Normal -Vertex 2488: Normal -Vertex 2489: Normal -Vertex 2490: Normal -Vertex 2491: Normal -Vertex 2492: Normal -Vertex 2493: Normal -Vertex 2494: Normal -Vertex 2495: Normal -Vertex 2496: Normal -Vertex 2497: Normal -Vertex 2498: Normal -Vertex 2499: Normal -Vertex 2500: Normal -Vertex 2501: Normal -Vertex 2502: Normal -Vertex 2503: Normal -Vertex 2504: Normal -Vertex 2505: Normal -Vertex 2506: Normal -Vertex 2507: Normal -Vertex 2508: Normal -Vertex 2509: Normal -Vertex 2510: Normal -Vertex 2511: Normal -Vertex 2512: Normal -Vertex 2513: Normal -Vertex 2514: Normal -Vertex 2515: Normal -Vertex 2516: Normal -Vertex 2517: Normal -Vertex 2518: Normal -Vertex 2519: Normal -Vertex 2520: Normal -Vertex 2521: Normal -Vertex 2522: Normal -Vertex 2523: Normal -Vertex 2524: Normal -Vertex 2525: Normal -Vertex 2526: Normal -Vertex 2527: Normal -Vertex 2528: Normal -Vertex 2529: Normal -Vertex 2530: Normal -Vertex 2531: Normal -Vertex 2532: Normal -Vertex 2533: Normal -Vertex 2534: Normal -Vertex 2535: Normal -Vertex 2536: Normal -Vertex 2537: Normal -Vertex 2538: Normal -Vertex 2539: Normal -Vertex 2540: Normal -Vertex 2541: Normal -Vertex 2542: Normal -Vertex 2543: Normal -Vertex 2544: Normal -Vertex 2545: Normal -Vertex 2546: Normal -Vertex 2547: Normal -Vertex 2548: Normal -Vertex 2549: Normal -Vertex 2550: Normal -Vertex 2551: Normal -Vertex 2552: Normal -Vertex 2553: Normal -Vertex 2554: Normal -Vertex 2555: Normal -Vertex 2556: Normal -Vertex 2557: Normal -Vertex 2558: Normal -Vertex 2559: Normal -Vertex 2560: Normal -Vertex 2561: Normal -Vertex 2562: Normal -Vertex 2563: Normal -Vertex 2564: Normal -Vertex 2565: Normal -Vertex 2566: Normal -Vertex 2567: Normal -Vertex 2568: Normal -Vertex 2569: Normal -Vertex 2570: Normal -Vertex 2571: Normal -Vertex 2572: Normal -Vertex 2573: Normal -Vertex 2574: Normal -Vertex 2575: Normal -Vertex 2576: Normal -Vertex 2577: Normal -Vertex 2578: Normal -Vertex 2579: Normal -Vertex 2580: Normal -Vertex 2581: Normal -Vertex 2582: Normal -Vertex 2583: Normal -Vertex 2584: Normal -Vertex 2585: Normal -Vertex 2586: Normal -Vertex 2587: Normal -Vertex 2588: Normal -Vertex 2589: Normal -Vertex 2590: Normal -Vertex 2591: Normal -Vertex 2592: Normal -Vertex 2593: Normal -Vertex 2594: Normal -Vertex 2595: Normal -Vertex 2596: Normal -Vertex 2597: Normal -Vertex 2598: Normal -Vertex 2599: Normal -Vertex 2600: Normal -Vertex 2601: Normal -Vertex 2602: Normal -Vertex 2603: Normal -Vertex 2604: Normal -Vertex 2605: Normal -Vertex 2606: Normal -Vertex 2607: Normal -Vertex 2608: Normal -Vertex 2609: Normal -Vertex 2610: Normal -Vertex 2611: Normal -Vertex 2612: Normal -Vertex 2613: Normal -Vertex 2614: Normal -Vertex 2615: Normal -Vertex 2616: Normal -Vertex 2617: Normal -Vertex 2618: Normal -Vertex 2619: Normal -Vertex 2620: Normal -Vertex 2621: Normal -Vertex 2622: Normal -Vertex 2623: Normal -Vertex 2624: Normal -Vertex 2625: Normal -Vertex 2626: Normal -Vertex 2627: Normal -Vertex 2628: Normal -Vertex 2629: Normal -Vertex 2630: Normal -Vertex 2631: Normal -Vertex 2632: Normal -Vertex 2633: Normal -Vertex 2634: Normal -Vertex 2635: Normal -Vertex 2636: Normal -Vertex 2637: Normal -Vertex 2638: Normal -Vertex 2639: Normal -Vertex 2640: Normal -Vertex 2641: Normal -Vertex 2642: Normal -Vertex 2643: Normal -Vertex 2644: Normal -Vertex 2645: Normal -Vertex 2646: Normal -Vertex 2647: Normal -Vertex 2648: Normal -Vertex 2649: Normal -Vertex 2650: Normal -Vertex 2651: Normal -Vertex 2652: Normal -Vertex 2653: Normal -Vertex 2654: Normal -Vertex 2655: Normal -Vertex 2656: Normal -Vertex 2657: Normal -Vertex 2658: Normal -Vertex 2659: Normal -===Triangles: 3974 -Triangle: [430, 0, 5] -Triangle: [5, 4, 430] -Triangle: [0, 439, 423] -Triangle: [423, 5, 0] -Triangle: [439, 2, 424] -Triangle: [424, 423, 439] -Triangle: [2, 3, 6] -Triangle: [6, 424, 2] -Triangle: [3, 8, 425] -Triangle: [425, 6, 3] -Triangle: [8, 426, 427] -Triangle: [427, 425, 8] -Triangle: [3, 2, 439] -Triangle: [439, 8, 3] -Triangle: [0, 7, 8] -Triangle: [8, 439, 0] -Triangle: [14, 9, 13] -Triangle: [9, 14, 15] -Triangle: [10, 17, 18] -Triangle: [17, 10, 16] -Triangle: [20, 37, 19] -Triangle: [37, 20, 21] -Triangle: [23, 11, 22] -Triangle: [11, 23, 24] -Triangle: [9, 15, 16] -Triangle: [16, 10, 9] -Triangle: [9, 11, 24] -Triangle: [24, 13, 9] -Triangle: [10, 18, 19] -Triangle: [19, 37, 10] -Triangle: [37, 11, 12] -Triangle: [12, 399, 37] -Triangle: [37, 21, 22] -Triangle: [22, 11, 37] -Triangle: [13, 25, 26] -Triangle: [26, 14, 13] -Triangle: [13, 24, 36] -Triangle: [36, 25, 13] -Triangle: [14, 26, 27] -Triangle: [27, 15, 14] -Triangle: [15, 27, 28] -Triangle: [28, 16, 15] -Triangle: [16, 28, 29] -Triangle: [29, 17, 16] -Triangle: [17, 29, 30] -Triangle: [30, 18, 17] -Triangle: [18, 30, 31] -Triangle: [31, 19, 18] -Triangle: [19, 31, 32] -Triangle: [32, 20, 19] -Triangle: [20, 32, 33] -Triangle: [33, 21, 20] -Triangle: [21, 33, 34] -Triangle: [34, 22, 21] -Triangle: [22, 34, 35] -Triangle: [35, 23, 22] -Triangle: [23, 35, 36] -Triangle: [36, 24, 23] -Triangle: [25, 36, 35] -Triangle: [35, 26, 25] -Triangle: [26, 35, 34] -Triangle: [34, 27, 26] -Triangle: [27, 34, 33] -Triangle: [33, 28, 27] -Triangle: [28, 33, 32] -Triangle: [32, 29, 28] -Triangle: [29, 32, 31] -Triangle: [31, 30, 29] -Triangle: [42, 41, 39] -Triangle: [39, 38, 42] -Triangle: [41, 42, 398] -Triangle: [398, 40, 41] -Triangle: [37, 42, 59] -Triangle: [59, 64, 37] -Triangle: [42, 37, 399] -Triangle: [399, 398, 42] -Triangle: [51, 52, 44] -Triangle: [44, 43, 51] -Triangle: [50, 58, 51] -Triangle: [51, 43, 50] -Triangle: [52, 53, 45] -Triangle: [45, 44, 52] -Triangle: [53, 54, 46] -Triangle: [46, 45, 53] -Triangle: [54, 55, 47] -Triangle: [47, 46, 54] -Triangle: [55, 56, 48] -Triangle: [48, 47, 55] -Triangle: [56, 57, 49] -Triangle: [49, 48, 56] -Triangle: [57, 58, 50] -Triangle: [50, 49, 57] -Triangle: [54, 53, 52] -Triangle: [52, 51, 54] -Triangle: [58, 55, 54] -Triangle: [54, 51, 58] -Triangle: [58, 57, 56] -Triangle: [56, 55, 58] -Triangle: [59, 65, 62] -Triangle: [62, 64, 59] -Triangle: [65, 66, 61] -Triangle: [61, 62, 65] -Triangle: [67, 60, 61] -Triangle: [61, 66, 67] -Triangle: [63, 62, 61] -Triangle: [61, 60, 63] -Triangle: [63, 440, 64] -Triangle: [64, 62, 63] -Triangle: [68, 67, 66] -Triangle: [66, 65, 68] -Triangle: [68, 65, 59] -Triangle: [59, 441, 68] -Triangle: [70, 69, 72] -Triangle: [72, 71, 70] -Triangle: [73, 74, 71] -Triangle: [71, 72, 73] -Triangle: [74, 73, 76] -Triangle: [76, 75, 74] -Triangle: [69, 70, 75] -Triangle: [75, 76, 69] -Triangle: [86, 85, 80] -Triangle: [80, 79, 86] -Triangle: [88, 87, 78] -Triangle: [78, 77, 88] -Triangle: [81, 82, 87] -Triangle: [87, 88, 81] -Triangle: [79, 80, 89] -Triangle: [89, 90, 79] -Triangle: [90, 89, 84] -Triangle: [84, 83, 90] -Triangle: [92, 91, 82] -Triangle: [82, 81, 92] -Triangle: [77, 78, 91] -Triangle: [91, 92, 77] -Triangle: [83, 84, 85] -Triangle: [85, 86, 83] -Triangle: [71, 80, 85] -Triangle: [85, 70, 71] -Triangle: [69, 78, 87] -Triangle: [87, 72, 69] -Triangle: [72, 87, 82] -Triangle: [82, 73, 72] -Triangle: [74, 89, 80] -Triangle: [80, 71, 74] -Triangle: [75, 84, 89] -Triangle: [89, 74, 75] -Triangle: [73, 82, 91] -Triangle: [91, 76, 73] -Triangle: [76, 91, 78] -Triangle: [78, 69, 76] -Triangle: [70, 85, 84] -Triangle: [84, 75, 70] -Triangle: [113, 116, 103] -Triangle: [103, 101, 113] -Triangle: [114, 115, 104] -Triangle: [104, 102, 114] -Triangle: [111, 109, 116] -Triangle: [116, 113, 111] -Triangle: [107, 105, 101] -Triangle: [101, 103, 107] -Triangle: [112, 110, 115] -Triangle: [115, 114, 112] -Triangle: [108, 106, 102] -Triangle: [102, 104, 108] -Triangle: [106, 107, 103] -Triangle: [103, 102, 106] -Triangle: [109, 112, 114] -Triangle: [114, 116, 109] -Triangle: [105, 108, 104] -Triangle: [104, 101, 105] -Triangle: [110, 111, 113] -Triangle: [113, 115, 110] -Triangle: [98, 94, 105] -Triangle: [105, 107, 98] -Triangle: [100, 93, 106] -Triangle: [106, 108, 100] -Triangle: [93, 98, 107] -Triangle: [107, 106, 93] -Triangle: [94, 100, 108] -Triangle: [108, 105, 94] -Triangle: [95, 97, 109] -Triangle: [109, 111, 95] -Triangle: [96, 99, 110] -Triangle: [110, 112, 96] -Triangle: [97, 96, 112] -Triangle: [112, 109, 97] -Triangle: [99, 95, 111] -Triangle: [111, 110, 99] -Triangle: [102, 103, 116] -Triangle: [116, 114, 102] -Triangle: [101, 104, 115] -Triangle: [115, 113, 101] -Triangle: [137, 140, 127] -Triangle: [127, 125, 137] -Triangle: [138, 139, 128] -Triangle: [128, 126, 138] -Triangle: [135, 133, 140] -Triangle: [140, 137, 135] -Triangle: [131, 129, 125] -Triangle: [125, 127, 131] -Triangle: [136, 134, 139] -Triangle: [139, 138, 136] -Triangle: [132, 130, 126] -Triangle: [126, 128, 132] -Triangle: [130, 131, 127] -Triangle: [127, 126, 130] -Triangle: [133, 136, 138] -Triangle: [138, 140, 133] -Triangle: [129, 132, 128] -Triangle: [128, 125, 129] -Triangle: [134, 135, 137] -Triangle: [137, 139, 134] -Triangle: [122, 118, 129] -Triangle: [129, 131, 122] -Triangle: [124, 117, 130] -Triangle: [130, 132, 124] -Triangle: [117, 122, 131] -Triangle: [131, 130, 117] -Triangle: [118, 124, 132] -Triangle: [132, 129, 118] -Triangle: [119, 121, 133] -Triangle: [133, 135, 119] -Triangle: [120, 123, 134] -Triangle: [134, 136, 120] -Triangle: [121, 120, 136] -Triangle: [136, 133, 121] -Triangle: [123, 119, 135] -Triangle: [135, 134, 123] -Triangle: [126, 127, 140] -Triangle: [140, 138, 126] -Triangle: [125, 128, 139] -Triangle: [139, 137, 125] -Triangle: [161, 164, 151] -Triangle: [151, 149, 161] -Triangle: [162, 163, 152] -Triangle: [152, 150, 162] -Triangle: [159, 157, 164] -Triangle: [164, 161, 159] -Triangle: [155, 153, 149] -Triangle: [149, 151, 155] -Triangle: [160, 158, 163] -Triangle: [163, 162, 160] -Triangle: [156, 154, 150] -Triangle: [150, 152, 156] -Triangle: [154, 155, 151] -Triangle: [151, 150, 154] -Triangle: [157, 160, 162] -Triangle: [162, 164, 157] -Triangle: [153, 156, 152] -Triangle: [152, 149, 153] -Triangle: [158, 159, 161] -Triangle: [161, 163, 158] -Triangle: [146, 142, 153] -Triangle: [153, 155, 146] -Triangle: [148, 141, 154] -Triangle: [154, 156, 148] -Triangle: [141, 146, 155] -Triangle: [155, 154, 141] -Triangle: [142, 148, 156] -Triangle: [156, 153, 142] -Triangle: [143, 145, 157] -Triangle: [157, 159, 143] -Triangle: [144, 147, 158] -Triangle: [158, 160, 144] -Triangle: [145, 144, 160] -Triangle: [160, 157, 145] -Triangle: [147, 143, 159] -Triangle: [159, 158, 147] -Triangle: [150, 151, 164] -Triangle: [164, 162, 150] -Triangle: [149, 152, 163] -Triangle: [163, 161, 149] -Triangle: [185, 188, 175] -Triangle: [175, 173, 185] -Triangle: [186, 187, 176] -Triangle: [176, 174, 186] -Triangle: [183, 181, 188] -Triangle: [188, 185, 183] -Triangle: [179, 177, 173] -Triangle: [173, 175, 179] -Triangle: [184, 182, 187] -Triangle: [187, 186, 184] -Triangle: [180, 178, 174] -Triangle: [174, 176, 180] -Triangle: [178, 179, 175] -Triangle: [175, 174, 178] -Triangle: [181, 184, 186] -Triangle: [186, 188, 181] -Triangle: [177, 180, 176] -Triangle: [176, 173, 177] -Triangle: [182, 183, 185] -Triangle: [185, 187, 182] -Triangle: [170, 166, 177] -Triangle: [177, 179, 170] -Triangle: [172, 165, 178] -Triangle: [178, 180, 172] -Triangle: [165, 170, 179] -Triangle: [179, 178, 165] -Triangle: [166, 172, 180] -Triangle: [180, 177, 166] -Triangle: [167, 169, 181] -Triangle: [181, 183, 167] -Triangle: [168, 171, 182] -Triangle: [182, 184, 168] -Triangle: [169, 168, 184] -Triangle: [184, 181, 169] -Triangle: [171, 167, 183] -Triangle: [183, 182, 171] -Triangle: [174, 175, 188] -Triangle: [188, 186, 174] -Triangle: [173, 176, 187] -Triangle: [187, 185, 173] -Triangle: [189, 193, 194] -Triangle: [194, 190, 189] -Triangle: [193, 189, 192] -Triangle: [192, 196, 193] -Triangle: [190, 194, 195] -Triangle: [195, 191, 190] -Triangle: [191, 195, 196] -Triangle: [196, 192, 191] -Triangle: [193, 196, 195] -Triangle: [195, 194, 193] -Triangle: [197, 198, 443] -Triangle: [443, 204, 197] -Triangle: [199, 204, 443] -Triangle: [443, 203, 199] -Triangle: [199, 203, 202] -Triangle: [202, 200, 199] -Triangle: [200, 202, 201] -Triangle: [201, 225, 200] -Triangle: [210, 209, 214] -Triangle: [214, 215, 210] -Triangle: [211, 210, 215] -Triangle: [215, 216, 211] -Triangle: [212, 211, 216] -Triangle: [216, 217, 212] -Triangle: [213, 212, 217] -Triangle: [217, 218, 213] -Triangle: [219, 220, 215] -Triangle: [215, 214, 219] -Triangle: [220, 221, 216] -Triangle: [216, 215, 220] -Triangle: [221, 222, 217] -Triangle: [217, 216, 221] -Triangle: [222, 239, 218] -Triangle: [218, 217, 222] -Triangle: [205, 206, 220] -Triangle: [220, 219, 205] -Triangle: [206, 207, 221] -Triangle: [221, 220, 206] -Triangle: [207, 208, 222] -Triangle: [222, 221, 207] -Triangle: [208, 238, 239] -Triangle: [239, 222, 208] -Triangle: [223, 225, 201] -Triangle: [201, 224, 223] -Triangle: [227, 226, 229] -Triangle: [229, 228, 227] -Triangle: [231, 230, 226] -Triangle: [226, 227, 231] -Triangle: [213, 218, 230] -Triangle: [230, 231, 213] -Triangle: [232, 229, 226] -Triangle: [226, 233, 232] -Triangle: [233, 226, 230] -Triangle: [230, 234, 233] -Triangle: [234, 230, 218] -Triangle: [218, 239, 234] -Triangle: [235, 232, 233] -Triangle: [233, 236, 235] -Triangle: [236, 233, 234] -Triangle: [234, 237, 236] -Triangle: [237, 234, 239] -Triangle: [239, 238, 237] -Triangle: [241, 242, 243] -Triangle: [243, 240, 241] -Triangle: [245, 241, 240] -Triangle: [240, 244, 245] -Triangle: [247, 245, 244] -Triangle: [244, 246, 247] -Triangle: [249, 247, 246] -Triangle: [246, 248, 249] -Triangle: [265, 266, 240] -Triangle: [240, 243, 265] -Triangle: [266, 267, 244] -Triangle: [244, 240, 266] -Triangle: [267, 268, 246] -Triangle: [246, 244, 267] -Triangle: [268, 250, 248] -Triangle: [248, 246, 268] -Triangle: [251, 252, 266] -Triangle: [266, 265, 251] -Triangle: [252, 253, 267] -Triangle: [267, 266, 252] -Triangle: [253, 254, 268] -Triangle: [268, 267, 253] -Triangle: [254, 442, 250] -Triangle: [250, 268, 254] -Triangle: [258, 255, 256] -Triangle: [256, 257, 258] -Triangle: [260, 259, 255] -Triangle: [255, 258, 260] -Triangle: [249, 248, 259] -Triangle: [259, 260, 249] -Triangle: [255, 269, 261] -Triangle: [261, 256, 255] -Triangle: [259, 270, 269] -Triangle: [269, 255, 259] -Triangle: [248, 250, 270] -Triangle: [270, 259, 248] -Triangle: [263, 261, 269] -Triangle: [269, 262, 263] -Triangle: [262, 269, 270] -Triangle: [270, 264, 262] -Triangle: [264, 270, 250] -Triangle: [250, 442, 264] -Triangle: [223, 197, 204] -Triangle: [204, 225, 223] -Triangle: [200, 225, 204] -Triangle: [204, 199, 200] -Triangle: [271, 274, 273] -Triangle: [273, 272, 271] -Triangle: [272, 273, 287] -Triangle: [287, 288, 272] -Triangle: [272, 288, 289] -Triangle: [289, 275, 272] -Triangle: [275, 289, 277] -Triangle: [277, 276, 275] -Triangle: [276, 271, 272] -Triangle: [272, 275, 276] -Triangle: [281, 280, 279] -Triangle: [279, 278, 281] -Triangle: [278, 279, 283] -Triangle: [283, 282, 278] -Triangle: [278, 282, 285] -Triangle: [285, 281, 278] -Triangle: [279, 280, 284] -Triangle: [284, 283, 279] -Triangle: [280, 281, 285] -Triangle: [285, 284, 280] -Triangle: [282, 283, 284] -Triangle: [284, 285, 282] -Triangle: [293, 292, 287] -Triangle: [287, 286, 293] -Triangle: [292, 288, 287] -Triangle: [292, 291, 289] -Triangle: [289, 288, 292] -Triangle: [291, 290, 277] -Triangle: [277, 289, 291] -Triangle: [290, 291, 292] -Triangle: [292, 293, 290] -Triangle: [294, 297, 296] -Triangle: [296, 295, 294] -Triangle: [295, 296, 311] -Triangle: [311, 312, 295] -Triangle: [295, 312, 299] -Triangle: [299, 298, 295] -Triangle: [298, 299, 301] -Triangle: [301, 300, 298] -Triangle: [300, 294, 295] -Triangle: [295, 298, 300] -Triangle: [305, 304, 303] -Triangle: [303, 302, 305] -Triangle: [302, 303, 307] -Triangle: [307, 306, 302] -Triangle: [302, 306, 309] -Triangle: [309, 305, 302] -Triangle: [303, 304, 308] -Triangle: [308, 307, 303] -Triangle: [304, 305, 309] -Triangle: [309, 308, 304] -Triangle: [306, 307, 308] -Triangle: [308, 309, 306] -Triangle: [316, 315, 311] -Triangle: [311, 310, 316] -Triangle: [315, 312, 311] -Triangle: [315, 314, 299] -Triangle: [299, 312, 315] -Triangle: [314, 313, 301] -Triangle: [301, 299, 314] -Triangle: [313, 314, 315] -Triangle: [315, 316, 313] -Triangle: [318, 319, 320] -Triangle: [320, 317, 318] -Triangle: [322, 318, 317] -Triangle: [317, 321, 322] -Triangle: [324, 322, 321] -Triangle: [321, 323, 324] -Triangle: [326, 324, 323] -Triangle: [323, 325, 326] -Triangle: [327, 328, 317] -Triangle: [317, 320, 327] -Triangle: [328, 329, 321] -Triangle: [321, 317, 328] -Triangle: [329, 330, 323] -Triangle: [323, 321, 329] -Triangle: [330, 331, 325] -Triangle: [325, 323, 330] -Triangle: [332, 333, 328] -Triangle: [328, 327, 332] -Triangle: [333, 334, 329] -Triangle: [329, 328, 333] -Triangle: [334, 335, 330] -Triangle: [330, 329, 334] -Triangle: [335, 336, 331] -Triangle: [331, 330, 335] -Triangle: [340, 337, 338] -Triangle: [338, 339, 340] -Triangle: [342, 341, 337] -Triangle: [337, 340, 342] -Triangle: [326, 325, 341] -Triangle: [341, 342, 326] -Triangle: [337, 343, 344] -Triangle: [344, 338, 337] -Triangle: [341, 345, 343] -Triangle: [343, 337, 341] -Triangle: [325, 331, 345] -Triangle: [345, 341, 325] -Triangle: [347, 344, 343] -Triangle: [343, 346, 347] -Triangle: [346, 343, 345] -Triangle: [345, 348, 346] -Triangle: [348, 345, 331] -Triangle: [331, 336, 348] -Triangle: [399, 12, 1] -Triangle: [1, 400, 399] -Triangle: [350, 351, 352] -Triangle: [352, 349, 350] -Triangle: [354, 355, 356] -Triangle: [356, 353, 354] -Triangle: [357, 358, 349] -Triangle: [349, 352, 357] -Triangle: [359, 360, 353] -Triangle: [353, 356, 359] -Triangle: [360, 357, 352] -Triangle: [352, 353, 360] -Triangle: [358, 359, 356] -Triangle: [356, 349, 358] -Triangle: [361, 362, 358] -Triangle: [358, 357, 361] -Triangle: [363, 364, 360] -Triangle: [360, 359, 363] -Triangle: [364, 361, 357] -Triangle: [357, 360, 364] -Triangle: [362, 363, 359] -Triangle: [359, 358, 362] -Triangle: [353, 352, 351] -Triangle: [351, 354, 353] -Triangle: [349, 356, 355] -Triangle: [355, 350, 349] -Triangle: [365, 366, 354] -Triangle: [354, 351, 365] -Triangle: [367, 368, 350] -Triangle: [350, 355, 367] -Triangle: [368, 365, 351] -Triangle: [351, 350, 368] -Triangle: [366, 367, 355] -Triangle: [355, 354, 366] -Triangle: [369, 370, 366] -Triangle: [366, 365, 369] -Triangle: [371, 372, 368] -Triangle: [368, 367, 371] -Triangle: [372, 369, 365] -Triangle: [365, 368, 372] -Triangle: [370, 371, 367] -Triangle: [367, 366, 370] -Triangle: [40, 398, 401] -Triangle: [401, 373, 40] -Triangle: [375, 376, 377] -Triangle: [377, 374, 375] -Triangle: [379, 380, 381] -Triangle: [381, 378, 379] -Triangle: [382, 383, 374] -Triangle: [374, 377, 382] -Triangle: [384, 385, 378] -Triangle: [378, 381, 384] -Triangle: [385, 382, 377] -Triangle: [377, 378, 385] -Triangle: [383, 384, 381] -Triangle: [381, 374, 383] -Triangle: [386, 387, 383] -Triangle: [383, 382, 386] -Triangle: [388, 389, 385] -Triangle: [385, 384, 388] -Triangle: [389, 386, 382] -Triangle: [382, 385, 389] -Triangle: [387, 388, 384] -Triangle: [384, 383, 387] -Triangle: [378, 377, 376] -Triangle: [376, 379, 378] -Triangle: [374, 381, 380] -Triangle: [380, 375, 374] -Triangle: [390, 391, 379] -Triangle: [379, 376, 390] -Triangle: [392, 393, 375] -Triangle: [375, 380, 392] -Triangle: [393, 390, 376] -Triangle: [376, 375, 393] -Triangle: [391, 392, 380] -Triangle: [380, 379, 391] -Triangle: [394, 395, 391] -Triangle: [391, 390, 394] -Triangle: [396, 397, 393] -Triangle: [393, 392, 396] -Triangle: [397, 394, 390] -Triangle: [390, 393, 397] -Triangle: [395, 396, 392] -Triangle: [392, 391, 395] -Triangle: [398, 399, 400] -Triangle: [400, 401, 398] -Triangle: [8, 7, 452] -Triangle: [8, 404, 402] -Triangle: [402, 426, 8] -Triangle: [452, 403, 404] -Triangle: [404, 8, 452] -Triangle: [403, 405, 406] -Triangle: [406, 404, 403] -Triangle: [402, 408, 407] -Triangle: [407, 426, 402] -Triangle: [402, 409, 410] -Triangle: [410, 408, 402] -Triangle: [407, 412, 411] -Triangle: [411, 426, 407] -Triangle: [426, 411, 421] -Triangle: [421, 427, 426] -Triangle: [411, 412, 422] -Triangle: [422, 421, 411] -Triangle: [420, 410, 409] -Triangle: [409, 419, 420] -Triangle: [419, 409, 402] -Triangle: [402, 416, 419] -Triangle: [416, 402, 404] -Triangle: [404, 415, 416] -Triangle: [415, 404, 406] -Triangle: [406, 418, 415] -Triangle: [418, 406, 405] -Triangle: [405, 417, 418] -Triangle: [422, 412, 413] -Triangle: [413, 428, 422] -Triangle: [410, 420, 429] -Triangle: [429, 414, 410] -Triangle: [420, 422, 428] -Triangle: [428, 429, 420] -Triangle: [403, 452, 433] -Triangle: [433, 431, 403] -Triangle: [405, 403, 431] -Triangle: [417, 405, 431] -Triangle: [431, 432, 417] -Triangle: [432, 431, 435] -Triangle: [435, 436, 432] -Triangle: [453, 434, 438] -Triangle: [438, 437, 453] -Triangle: [434, 432, 436] -Triangle: [436, 438, 434] -Triangle: [430, 4, 445] -Triangle: [445, 444, 430] -Triangle: [4, 434, 446] -Triangle: [446, 445, 4] -Triangle: [434, 453, 447] -Triangle: [447, 446, 434] -Triangle: [444, 445, 449] -Triangle: [449, 448, 444] -Triangle: [445, 446, 450] -Triangle: [450, 449, 445] -Triangle: [446, 447, 451] -Triangle: [451, 450, 446] -Triangle: [447, 444, 448] -Triangle: [448, 451, 447] -Triangle: [451, 448, 449] -Triangle: [449, 450, 451] -Triangle: [456, 467, 455] -Triangle: [455, 454, 456] -Triangle: [467, 459, 476] -Triangle: [476, 455, 467] -Triangle: [459, 457, 478] -Triangle: [478, 476, 459] -Triangle: [457, 458, 480] -Triangle: [480, 478, 457] -Triangle: [458, 460, 482] -Triangle: [482, 480, 458] -Triangle: [460, 461, 484] -Triangle: [484, 482, 460] -Triangle: [468, 462, 459] -Triangle: [459, 467, 468] -Triangle: [462, 463, 457] -Triangle: [457, 459, 462] -Triangle: [463, 464, 458] -Triangle: [458, 457, 463] -Triangle: [464, 465, 460] -Triangle: [460, 458, 464] -Triangle: [465, 466, 461] -Triangle: [461, 460, 465] -Triangle: [468, 467, 456] -Triangle: [456, 469, 468] -Triangle: [469, 456, 454] -Triangle: [454, 470, 469] -Triangle: [470, 454, 455] -Triangle: [455, 474, 470] -Triangle: [474, 455, 476] -Triangle: [476, 475, 474] -Triangle: [475, 476, 478] -Triangle: [478, 477, 475] -Triangle: [477, 478, 480] -Triangle: [480, 479, 477] -Triangle: [479, 480, 482] -Triangle: [482, 481, 479] -Triangle: [481, 482, 484] -Triangle: [484, 483, 481] -Triangle: [483, 466, 465] -Triangle: [465, 481, 483] -Triangle: [481, 465, 464] -Triangle: [464, 479, 481] -Triangle: [479, 464, 463] -Triangle: [463, 477, 479] -Triangle: [477, 463, 462] -Triangle: [462, 475, 477] -Triangle: [475, 462, 468] -Triangle: [468, 474, 475] -Triangle: [474, 468, 469] -Triangle: [469, 470, 474] -Triangle: [495, 494, 486] -Triangle: [486, 487, 495] -Triangle: [494, 496, 488] -Triangle: [488, 486, 494] -Triangle: [497, 489, 488] -Triangle: [488, 496, 497] -Triangle: [498, 490, 491] -Triangle: [491, 499, 498] -Triangle: [499, 491, 492] -Triangle: [492, 501, 499] -Triangle: [501, 492, 489] -Triangle: [489, 497, 501] -Triangle: [493, 471, 494] -Triangle: [494, 495, 493] -Triangle: [471, 472, 496] -Triangle: [496, 494, 471] -Triangle: [472, 473, 497] -Triangle: [497, 496, 472] -Triangle: [485, 498, 499] -Triangle: [499, 500, 485] -Triangle: [500, 499, 501] -Triangle: [501, 502, 500] -Triangle: [502, 501, 497] -Triangle: [497, 473, 502] -Triangle: [487, 486, 503] -Triangle: [503, 504, 487] -Triangle: [486, 488, 505] -Triangle: [505, 503, 486] -Triangle: [489, 506, 505] -Triangle: [505, 488, 489] -Triangle: [490, 507, 508] -Triangle: [508, 491, 490] -Triangle: [491, 508, 509] -Triangle: [509, 492, 491] -Triangle: [492, 509, 506] -Triangle: [506, 489, 492] -Triangle: [504, 503, 510] -Triangle: [510, 511, 504] -Triangle: [503, 505, 512] -Triangle: [512, 510, 503] -Triangle: [506, 513, 512] -Triangle: [512, 505, 506] -Triangle: [507, 514, 515] -Triangle: [515, 508, 507] -Triangle: [508, 515, 516] -Triangle: [516, 509, 508] -Triangle: [509, 516, 513] -Triangle: [513, 506, 509] -Triangle: [511, 510, 517] -Triangle: [517, 518, 511] -Triangle: [510, 512, 519] -Triangle: [519, 517, 510] -Triangle: [513, 520, 519] -Triangle: [519, 512, 513] -Triangle: [514, 521, 522] -Triangle: [522, 515, 514] -Triangle: [515, 522, 523] -Triangle: [523, 516, 515] -Triangle: [516, 523, 520] -Triangle: [520, 513, 516] -Triangle: [518, 517, 524] -Triangle: [524, 525, 518] -Triangle: [517, 519, 526] -Triangle: [526, 524, 517] -Triangle: [520, 527, 526] -Triangle: [526, 519, 520] -Triangle: [521, 528, 529] -Triangle: [529, 522, 521] -Triangle: [522, 529, 530] -Triangle: [530, 523, 522] -Triangle: [523, 530, 527] -Triangle: [527, 520, 523] -Triangle: [525, 524, 531] -Triangle: [531, 532, 525] -Triangle: [524, 526, 533] -Triangle: [533, 531, 524] -Triangle: [527, 534, 533] -Triangle: [533, 526, 527] -Triangle: [528, 535, 536] -Triangle: [536, 529, 528] -Triangle: [529, 536, 537] -Triangle: [537, 530, 529] -Triangle: [530, 537, 534] -Triangle: [534, 527, 530] -Triangle: [532, 531, 538] -Triangle: [538, 539, 532] -Triangle: [531, 533, 540] -Triangle: [540, 538, 531] -Triangle: [534, 541, 540] -Triangle: [540, 533, 534] -Triangle: [535, 542, 543] -Triangle: [543, 536, 535] -Triangle: [536, 543, 544] -Triangle: [544, 537, 536] -Triangle: [537, 544, 541] -Triangle: [541, 534, 537] -Triangle: [546, 547, 548] -Triangle: [548, 545, 546] -Triangle: [548, 547, 549] -Triangle: [549, 568, 551] -Triangle: [551, 550, 549] -Triangle: [545, 548, 590] -Triangle: [590, 552, 545] -Triangle: [548, 549, 550] -Triangle: [550, 590, 548] -Triangle: [583, 553, 554] -Triangle: [554, 555, 583] -Triangle: [555, 554, 556] -Triangle: [556, 557, 555] -Triangle: [557, 556, 558] -Triangle: [558, 559, 557] -Triangle: [559, 558, 560] -Triangle: [560, 561, 559] -Triangle: [563, 561, 560] -Triangle: [560, 562, 563] -Triangle: [565, 563, 562] -Triangle: [562, 564, 565] -Triangle: [567, 565, 564] -Triangle: [564, 566, 567] -Triangle: [568, 567, 566] -Triangle: [566, 551, 568] -Triangle: [567, 568, 569] -Triangle: [569, 570, 567] -Triangle: [565, 567, 570] -Triangle: [570, 571, 565] -Triangle: [563, 565, 571] -Triangle: [571, 572, 563] -Triangle: [561, 563, 572] -Triangle: [572, 573, 561] -Triangle: [555, 574, 575] -Triangle: [575, 583, 555] -Triangle: [557, 576, 574] -Triangle: [574, 555, 557] -Triangle: [559, 577, 576] -Triangle: [576, 557, 559] -Triangle: [561, 573, 577] -Triangle: [577, 559, 561] -Triangle: [581, 578, 579] -Triangle: [579, 580, 581] -Triangle: [579, 582, 580] -Triangle: [553, 583, 582] -Triangle: [582, 815, 553] -Triangle: [578, 813, 814] -Triangle: [814, 579, 578] -Triangle: [579, 814, 815] -Triangle: [815, 582, 579] -Triangle: [585, 584, 587] -Triangle: [587, 586, 585] -Triangle: [587, 588, 586] -Triangle: [551, 589, 588] -Triangle: [588, 550, 551] -Triangle: [584, 552, 590] -Triangle: [590, 587, 584] -Triangle: [587, 590, 550] -Triangle: [550, 588, 587] -Triangle: [784, 591, 554] -Triangle: [554, 553, 784] -Triangle: [591, 592, 556] -Triangle: [556, 554, 591] -Triangle: [592, 643, 558] -Triangle: [558, 556, 592] -Triangle: [643, 639, 560] -Triangle: [560, 558, 643] -Triangle: [636, 562, 560] -Triangle: [560, 639, 636] -Triangle: [635, 564, 562] -Triangle: [562, 636, 635] -Triangle: [634, 566, 564] -Triangle: [564, 635, 634] -Triangle: [589, 551, 566] -Triangle: [566, 634, 589] -Triangle: [634, 783, 593] -Triangle: [593, 589, 634] -Triangle: [621, 620, 594] -Triangle: [594, 595, 621] -Triangle: [620, 623, 599] -Triangle: [599, 594, 620] -Triangle: [623, 624, 600] -Triangle: [600, 599, 623] -Triangle: [624, 625, 596] -Triangle: [596, 600, 624] -Triangle: [625, 627, 601] -Triangle: [601, 596, 625] -Triangle: [627, 629, 602] -Triangle: [602, 601, 627] -Triangle: [629, 631, 603] -Triangle: [603, 602, 629] -Triangle: [631, 632, 597] -Triangle: [597, 603, 631] -Triangle: [632, 633, 598] -Triangle: [598, 597, 632] -Triangle: [595, 594, 605] -Triangle: [605, 604, 595] -Triangle: [594, 599, 606] -Triangle: [606, 605, 594] -Triangle: [599, 600, 607] -Triangle: [607, 606, 599] -Triangle: [600, 596, 609] -Triangle: [609, 607, 600] -Triangle: [596, 601, 611] -Triangle: [611, 609, 596] -Triangle: [601, 602, 612] -Triangle: [612, 611, 601] -Triangle: [602, 603, 613] -Triangle: [613, 612, 602] -Triangle: [603, 597, 614] -Triangle: [614, 613, 603] -Triangle: [597, 598, 616] -Triangle: [616, 614, 597] -Triangle: [604, 605, 619] -Triangle: [619, 618, 604] -Triangle: [605, 606, 622] -Triangle: [622, 619, 605] -Triangle: [606, 607, 608] -Triangle: [608, 622, 606] -Triangle: [607, 609, 610] -Triangle: [610, 608, 607] -Triangle: [609, 611, 626] -Triangle: [626, 610, 609] -Triangle: [611, 612, 628] -Triangle: [628, 626, 611] -Triangle: [612, 613, 630] -Triangle: [630, 628, 612] -Triangle: [613, 614, 615] -Triangle: [615, 630, 613] -Triangle: [614, 616, 617] -Triangle: [617, 615, 614] -Triangle: [618, 619, 620] -Triangle: [620, 621, 618] -Triangle: [619, 622, 623] -Triangle: [623, 620, 619] -Triangle: [622, 608, 624] -Triangle: [624, 623, 622] -Triangle: [608, 610, 625] -Triangle: [625, 624, 608] -Triangle: [610, 626, 627] -Triangle: [627, 625, 610] -Triangle: [626, 628, 629] -Triangle: [629, 627, 626] -Triangle: [628, 630, 631] -Triangle: [631, 629, 628] -Triangle: [630, 615, 632] -Triangle: [632, 631, 630] -Triangle: [615, 617, 633] -Triangle: [633, 632, 615] -Triangle: [635, 638, 783] -Triangle: [783, 634, 635] -Triangle: [636, 637, 638] -Triangle: [638, 635, 636] -Triangle: [639, 640, 637] -Triangle: [637, 636, 639] -Triangle: [591, 784, 642] -Triangle: [642, 641, 591] -Triangle: [592, 591, 641] -Triangle: [641, 645, 592] -Triangle: [643, 592, 645] -Triangle: [645, 644, 643] -Triangle: [639, 643, 644] -Triangle: [644, 640, 639] -Triangle: [647, 648, 649] -Triangle: [649, 650, 647] -Triangle: [648, 651, 652] -Triangle: [652, 649, 648] -Triangle: [651, 653, 654] -Triangle: [654, 652, 651] -Triangle: [653, 655, 656] -Triangle: [656, 654, 653] -Triangle: [655, 657, 658] -Triangle: [658, 656, 655] -Triangle: [657, 659, 660] -Triangle: [660, 658, 657] -Triangle: [659, 661, 662] -Triangle: [662, 660, 659] -Triangle: [661, 663, 664] -Triangle: [664, 662, 661] -Triangle: [663, 665, 666] -Triangle: [666, 664, 663] -Triangle: [650, 649, 667] -Triangle: [667, 668, 650] -Triangle: [649, 652, 669] -Triangle: [669, 667, 649] -Triangle: [652, 654, 670] -Triangle: [670, 669, 652] -Triangle: [654, 656, 671] -Triangle: [671, 670, 654] -Triangle: [656, 658, 672] -Triangle: [672, 671, 656] -Triangle: [658, 660, 673] -Triangle: [673, 672, 658] -Triangle: [660, 662, 674] -Triangle: [674, 673, 660] -Triangle: [662, 664, 675] -Triangle: [675, 674, 662] -Triangle: [664, 666, 676] -Triangle: [676, 675, 664] -Triangle: [668, 667, 677] -Triangle: [677, 678, 668] -Triangle: [667, 669, 679] -Triangle: [679, 677, 667] -Triangle: [669, 670, 680] -Triangle: [680, 679, 669] -Triangle: [670, 671, 681] -Triangle: [681, 680, 670] -Triangle: [671, 672, 682] -Triangle: [682, 681, 671] -Triangle: [672, 673, 683] -Triangle: [683, 682, 672] -Triangle: [673, 674, 684] -Triangle: [684, 683, 673] -Triangle: [674, 675, 685] -Triangle: [685, 684, 674] -Triangle: [675, 676, 686] -Triangle: [686, 685, 675] -Triangle: [678, 677, 648] -Triangle: [648, 647, 678] -Triangle: [677, 679, 651] -Triangle: [651, 648, 677] -Triangle: [679, 680, 653] -Triangle: [653, 651, 679] -Triangle: [680, 681, 655] -Triangle: [655, 653, 680] -Triangle: [681, 682, 657] -Triangle: [657, 655, 681] -Triangle: [682, 683, 659] -Triangle: [659, 657, 682] -Triangle: [683, 684, 661] -Triangle: [661, 659, 683] -Triangle: [684, 685, 663] -Triangle: [663, 661, 684] -Triangle: [685, 686, 665] -Triangle: [665, 663, 685] -Triangle: [687, 688, 689] -Triangle: [689, 690, 687] -Triangle: [688, 691, 692] -Triangle: [692, 689, 688] -Triangle: [691, 693, 694] -Triangle: [694, 692, 691] -Triangle: [693, 695, 696] -Triangle: [696, 694, 693] -Triangle: [695, 697, 698] -Triangle: [698, 696, 695] -Triangle: [697, 699, 700] -Triangle: [700, 698, 697] -Triangle: [699, 701, 702] -Triangle: [702, 700, 699] -Triangle: [701, 703, 704] -Triangle: [704, 702, 701] -Triangle: [703, 705, 706] -Triangle: [706, 704, 703] -Triangle: [690, 689, 707] -Triangle: [707, 708, 690] -Triangle: [689, 692, 709] -Triangle: [709, 707, 689] -Triangle: [692, 694, 710] -Triangle: [710, 709, 692] -Triangle: [694, 696, 711] -Triangle: [711, 710, 694] -Triangle: [696, 698, 712] -Triangle: [712, 711, 696] -Triangle: [698, 700, 713] -Triangle: [713, 712, 698] -Triangle: [700, 702, 714] -Triangle: [714, 713, 700] -Triangle: [702, 704, 715] -Triangle: [715, 714, 702] -Triangle: [704, 706, 716] -Triangle: [716, 715, 704] -Triangle: [708, 707, 717] -Triangle: [717, 718, 708] -Triangle: [707, 709, 719] -Triangle: [719, 717, 707] -Triangle: [709, 710, 720] -Triangle: [720, 719, 709] -Triangle: [710, 711, 721] -Triangle: [721, 720, 710] -Triangle: [711, 712, 722] -Triangle: [722, 721, 711] -Triangle: [712, 713, 723] -Triangle: [723, 722, 712] -Triangle: [713, 714, 724] -Triangle: [724, 723, 713] -Triangle: [714, 715, 725] -Triangle: [725, 724, 714] -Triangle: [715, 716, 726] -Triangle: [726, 725, 715] -Triangle: [718, 717, 688] -Triangle: [688, 687, 718] -Triangle: [717, 719, 691] -Triangle: [691, 688, 717] -Triangle: [719, 720, 693] -Triangle: [693, 691, 719] -Triangle: [720, 721, 695] -Triangle: [695, 693, 720] -Triangle: [721, 722, 697] -Triangle: [697, 695, 721] -Triangle: [722, 723, 699] -Triangle: [699, 697, 722] -Triangle: [723, 724, 701] -Triangle: [701, 699, 723] -Triangle: [724, 725, 703] -Triangle: [703, 701, 724] -Triangle: [725, 726, 705] -Triangle: [705, 703, 725] -Triangle: [727, 728, 729] -Triangle: [729, 730, 727] -Triangle: [728, 731, 732] -Triangle: [732, 729, 728] -Triangle: [731, 733, 734] -Triangle: [734, 732, 731] -Triangle: [733, 735, 736] -Triangle: [736, 734, 733] -Triangle: [735, 737, 738] -Triangle: [738, 736, 735] -Triangle: [737, 739, 740] -Triangle: [740, 738, 737] -Triangle: [739, 741, 742] -Triangle: [742, 740, 739] -Triangle: [741, 743, 744] -Triangle: [744, 742, 741] -Triangle: [743, 745, 746] -Triangle: [746, 744, 743] -Triangle: [730, 729, 747] -Triangle: [747, 748, 730] -Triangle: [729, 732, 749] -Triangle: [749, 747, 729] -Triangle: [732, 734, 750] -Triangle: [750, 749, 732] -Triangle: [734, 736, 751] -Triangle: [751, 750, 734] -Triangle: [736, 738, 752] -Triangle: [752, 751, 736] -Triangle: [738, 740, 753] -Triangle: [753, 752, 738] -Triangle: [740, 742, 754] -Triangle: [754, 753, 740] -Triangle: [742, 744, 755] -Triangle: [755, 754, 742] -Triangle: [744, 746, 756] -Triangle: [756, 755, 744] -Triangle: [748, 747, 757] -Triangle: [757, 758, 748] -Triangle: [747, 749, 759] -Triangle: [759, 757, 747] -Triangle: [749, 750, 760] -Triangle: [760, 759, 749] -Triangle: [750, 751, 761] -Triangle: [761, 760, 750] -Triangle: [751, 752, 762] -Triangle: [762, 761, 751] -Triangle: [752, 753, 763] -Triangle: [763, 762, 752] -Triangle: [753, 754, 764] -Triangle: [764, 763, 753] -Triangle: [754, 755, 765] -Triangle: [765, 764, 754] -Triangle: [755, 756, 766] -Triangle: [766, 765, 755] -Triangle: [758, 757, 728] -Triangle: [728, 727, 758] -Triangle: [757, 759, 731] -Triangle: [731, 728, 757] -Triangle: [759, 760, 733] -Triangle: [733, 731, 759] -Triangle: [760, 761, 735] -Triangle: [735, 733, 760] -Triangle: [761, 762, 737] -Triangle: [737, 735, 761] -Triangle: [762, 763, 739] -Triangle: [739, 737, 762] -Triangle: [763, 764, 741] -Triangle: [741, 739, 763] -Triangle: [764, 765, 743] -Triangle: [743, 741, 764] -Triangle: [765, 766, 745] -Triangle: [745, 743, 765] -Triangle: [805, 806, 787] -Triangle: [787, 785, 805] -Triangle: [806, 808, 791] -Triangle: [791, 787, 806] -Triangle: [807, 805, 785] -Triangle: [785, 789, 807] -Triangle: [808, 807, 789] -Triangle: [789, 791, 808] -Triangle: [809, 810, 795] -Triangle: [795, 793, 809] -Triangle: [810, 812, 799] -Triangle: [799, 795, 810] -Triangle: [811, 809, 793] -Triangle: [793, 797, 811] -Triangle: [812, 811, 797] -Triangle: [797, 799, 812] -Triangle: [767, 769, 788] -Triangle: [788, 786, 767] -Triangle: [770, 771, 785] -Triangle: [785, 787, 770] -Triangle: [769, 774, 792] -Triangle: [792, 788, 769] -Triangle: [768, 770, 787] -Triangle: [787, 791, 768] -Triangle: [772, 767, 786] -Triangle: [786, 790, 772] -Triangle: [771, 773, 789] -Triangle: [789, 785, 771] -Triangle: [774, 772, 790] -Triangle: [790, 792, 774] -Triangle: [773, 768, 791] -Triangle: [791, 789, 773] -Triangle: [775, 777, 796] -Triangle: [796, 794, 775] -Triangle: [778, 779, 793] -Triangle: [793, 795, 778] -Triangle: [777, 782, 800] -Triangle: [800, 796, 777] -Triangle: [776, 778, 795] -Triangle: [795, 799, 776] -Triangle: [780, 775, 794] -Triangle: [794, 798, 780] -Triangle: [779, 781, 797] -Triangle: [797, 793, 779] -Triangle: [782, 780, 798] -Triangle: [798, 800, 782] -Triangle: [781, 776, 799] -Triangle: [799, 797, 781] -Triangle: [646, 801, 803] -Triangle: [803, 802, 646] -Triangle: [803, 801, 804] -Triangle: [804, 784, 553] -Triangle: [553, 815, 804] -Triangle: [786, 788, 806] -Triangle: [806, 805, 786] -Triangle: [788, 792, 808] -Triangle: [808, 806, 788] -Triangle: [790, 786, 805] -Triangle: [805, 807, 790] -Triangle: [792, 790, 807] -Triangle: [807, 808, 792] -Triangle: [794, 796, 810] -Triangle: [810, 809, 794] -Triangle: [796, 800, 812] -Triangle: [812, 810, 796] -Triangle: [798, 794, 809] -Triangle: [809, 811, 798] -Triangle: [800, 798, 811] -Triangle: [811, 812, 800] -Triangle: [802, 803, 814] -Triangle: [814, 813, 802] -Triangle: [803, 804, 815] -Triangle: [815, 814, 803] -Triangle: [824, 823, 817] -Triangle: [820, 819, 818] -Triangle: [816, 934, 932] -Triangle: [932, 835, 816] -Triangle: [823, 948, 949] -Triangle: [949, 817, 823] -Triangle: [822, 950, 948] -Triangle: [948, 823, 822] -Triangle: [953, 950, 822] -Triangle: [822, 831, 953] -Triangle: [949, 952, 827] -Triangle: [827, 817, 949] -Triangle: [817, 827, 825] -Triangle: [825, 824, 817] -Triangle: [818, 819, 829] -Triangle: [829, 830, 818] -Triangle: [825, 827, 826] -Triangle: [828, 830, 829] -Triangle: [826, 827, 952] -Triangle: [952, 951, 826] -Triangle: [951, 953, 831] -Triangle: [831, 826, 951] -Triangle: [833, 834, 935] -Triangle: [935, 936, 833] -Triangle: [836, 837, 937] -Triangle: [937, 933, 836] -Triangle: [839, 939, 938] -Triangle: [938, 838, 839] -Triangle: [848, 854, 843] -Triangle: [843, 840, 848] -Triangle: [840, 934, 936] -Triangle: [936, 842, 840] -Triangle: [849, 850, 842] -Triangle: [842, 841, 849] -Triangle: [935, 932, 843] -Triangle: [843, 841, 935] -Triangle: [851, 855, 845] -Triangle: [845, 844, 851] -Triangle: [844, 937, 938] -Triangle: [938, 846, 844] -Triangle: [853, 852, 846] -Triangle: [846, 847, 853] -Triangle: [939, 933, 845] -Triangle: [845, 847, 939] -Triangle: [840, 842, 850] -Triangle: [850, 848, 840] -Triangle: [841, 843, 854] -Triangle: [854, 849, 841] -Triangle: [844, 846, 852] -Triangle: [852, 851, 844] -Triangle: [847, 845, 855] -Triangle: [855, 853, 847] -Triangle: [857, 940, 941] -Triangle: [941, 856, 857] -Triangle: [860, 861, 942] -Triangle: [942, 943, 860] -Triangle: [864, 865, 944] -Triangle: [944, 945, 864] -Triangle: [869, 946, 947] -Triangle: [947, 868, 869] -Triangle: [940, 943, 863] -Triangle: [863, 858, 940] -Triangle: [862, 942, 941] -Triangle: [941, 859, 862] -Triangle: [944, 947, 871] -Triangle: [871, 866, 944] -Triangle: [870, 946, 945] -Triangle: [945, 867, 870] -Triangle: [876, 877, 873] -Triangle: [873, 872, 876] -Triangle: [878, 879, 875] -Triangle: [875, 874, 878] -Triangle: [875, 879, 876] -Triangle: [876, 872, 875] -Triangle: [873, 877, 878] -Triangle: [878, 874, 873] -Triangle: [881, 882, 883] -Triangle: [883, 880, 881] -Triangle: [885, 886, 887] -Triangle: [887, 884, 885] -Triangle: [887, 886, 881] -Triangle: [881, 880, 887] -Triangle: [883, 882, 885] -Triangle: [885, 884, 883] -Triangle: [888, 924, 925] -Triangle: [925, 891, 888] -Triangle: [926, 927, 895] -Triangle: [895, 892, 926] -Triangle: [924, 927, 894] -Triangle: [894, 889, 924] -Triangle: [926, 925, 890] -Triangle: [890, 893, 926] -Triangle: [889, 894, 901] -Triangle: [901, 900, 889] -Triangle: [900, 901, 897] -Triangle: [897, 896, 900] -Triangle: [893, 890, 903] -Triangle: [903, 902, 893] -Triangle: [902, 903, 899] -Triangle: [899, 898, 902] -Triangle: [890, 889, 900] -Triangle: [900, 903, 890] -Triangle: [903, 900, 896] -Triangle: [896, 899, 903] -Triangle: [894, 893, 902] -Triangle: [902, 901, 894] -Triangle: [901, 902, 898] -Triangle: [898, 897, 901] -Triangle: [896, 897, 904] -Triangle: [904, 923, 896] -Triangle: [898, 899, 906] -Triangle: [906, 905, 898] -Triangle: [899, 896, 923] -Triangle: [923, 906, 899] -Triangle: [897, 898, 905] -Triangle: [905, 904, 897] -Triangle: [907, 910, 929] -Triangle: [929, 928, 907] -Triangle: [914, 931, 930] -Triangle: [930, 911, 914] -Triangle: [913, 931, 928] -Triangle: [928, 908, 913] -Triangle: [909, 929, 930] -Triangle: [930, 912, 909] -Triangle: [908, 915, 916] -Triangle: [916, 913, 908] -Triangle: [915, 917, 918] -Triangle: [918, 916, 915] -Triangle: [912, 919, 920] -Triangle: [920, 909, 912] -Triangle: [919, 921, 922] -Triangle: [922, 920, 919] -Triangle: [909, 920, 915] -Triangle: [915, 908, 909] -Triangle: [920, 922, 917] -Triangle: [917, 915, 920] -Triangle: [913, 916, 919] -Triangle: [919, 912, 913] -Triangle: [916, 918, 921] -Triangle: [921, 919, 916] -Triangle: [917, 923, 904] -Triangle: [904, 918, 917] -Triangle: [921, 905, 906] -Triangle: [906, 922, 921] -Triangle: [922, 906, 923] -Triangle: [923, 917, 922] -Triangle: [918, 904, 905] -Triangle: [905, 921, 918] -Triangle: [924, 889, 890] -Triangle: [890, 925, 924] -Triangle: [893, 894, 927] -Triangle: [927, 926, 893] -Triangle: [888, 895, 927] -Triangle: [927, 924, 888] -Triangle: [892, 891, 925] -Triangle: [925, 926, 892] -Triangle: [909, 908, 928] -Triangle: [928, 929, 909] -Triangle: [931, 913, 912] -Triangle: [912, 930, 931] -Triangle: [914, 907, 928] -Triangle: [928, 931, 914] -Triangle: [910, 911, 930] -Triangle: [930, 929, 910] -Triangle: [934, 840, 843] -Triangle: [843, 932, 934] -Triangle: [841, 842, 936] -Triangle: [936, 935, 841] -Triangle: [844, 845, 933] -Triangle: [933, 937, 844] -Triangle: [939, 847, 846] -Triangle: [846, 938, 939] -Triangle: [934, 816, 833] -Triangle: [833, 936, 934] -Triangle: [834, 835, 932] -Triangle: [932, 935, 834] -Triangle: [937, 837, 838] -Triangle: [838, 938, 937] -Triangle: [839, 836, 933] -Triangle: [933, 939, 839] -Triangle: [940, 858, 859] -Triangle: [859, 941, 940] -Triangle: [862, 863, 943] -Triangle: [943, 942, 862] -Triangle: [866, 867, 945] -Triangle: [945, 944, 866] -Triangle: [946, 870, 871] -Triangle: [871, 947, 946] -Triangle: [857, 860, 943] -Triangle: [943, 940, 857] -Triangle: [942, 861, 856] -Triangle: [856, 941, 942] -Triangle: [865, 868, 947] -Triangle: [947, 944, 865] -Triangle: [946, 869, 864] -Triangle: [864, 945, 946] -Triangle: [820, 818, 949] -Triangle: [949, 948, 820] -Triangle: [821, 820, 948] -Triangle: [948, 950, 821] -Triangle: [832, 821, 950] -Triangle: [950, 953, 832] -Triangle: [818, 830, 952] -Triangle: [952, 949, 818] -Triangle: [952, 830, 828] -Triangle: [828, 951, 952] -Triangle: [828, 832, 953] -Triangle: [953, 951, 828] -Triangle: [962, 961, 955] -Triangle: [958, 957, 956] -Triangle: [954, 1072, 1070] -Triangle: [1070, 973, 954] -Triangle: [961, 1086, 1087] -Triangle: [1087, 955, 961] -Triangle: [960, 1088, 1086] -Triangle: [1086, 961, 960] -Triangle: [1091, 1088, 960] -Triangle: [960, 969, 1091] -Triangle: [1087, 1090, 965] -Triangle: [965, 955, 1087] -Triangle: [955, 965, 963] -Triangle: [963, 962, 955] -Triangle: [956, 957, 967] -Triangle: [967, 968, 956] -Triangle: [963, 965, 964] -Triangle: [966, 968, 967] -Triangle: [964, 965, 1090] -Triangle: [1090, 1089, 964] -Triangle: [1089, 1091, 969] -Triangle: [969, 964, 1089] -Triangle: [971, 972, 1073] -Triangle: [1073, 1074, 971] -Triangle: [974, 975, 1075] -Triangle: [1075, 1071, 974] -Triangle: [977, 1077, 1076] -Triangle: [1076, 976, 977] -Triangle: [986, 992, 981] -Triangle: [981, 978, 986] -Triangle: [978, 1072, 1074] -Triangle: [1074, 980, 978] -Triangle: [987, 988, 980] -Triangle: [980, 979, 987] -Triangle: [1073, 1070, 981] -Triangle: [981, 979, 1073] -Triangle: [989, 993, 983] -Triangle: [983, 982, 989] -Triangle: [982, 1075, 1076] -Triangle: [1076, 984, 982] -Triangle: [991, 990, 984] -Triangle: [984, 985, 991] -Triangle: [1077, 1071, 983] -Triangle: [983, 985, 1077] -Triangle: [978, 980, 988] -Triangle: [988, 986, 978] -Triangle: [979, 981, 992] -Triangle: [992, 987, 979] -Triangle: [982, 984, 990] -Triangle: [990, 989, 982] -Triangle: [985, 983, 993] -Triangle: [993, 991, 985] -Triangle: [995, 1078, 1079] -Triangle: [1079, 994, 995] -Triangle: [998, 999, 1080] -Triangle: [1080, 1081, 998] -Triangle: [1002, 1003, 1082] -Triangle: [1082, 1083, 1002] -Triangle: [1007, 1084, 1085] -Triangle: [1085, 1006, 1007] -Triangle: [1078, 1081, 1001] -Triangle: [1001, 996, 1078] -Triangle: [1000, 1080, 1079] -Triangle: [1079, 997, 1000] -Triangle: [1082, 1085, 1009] -Triangle: [1009, 1004, 1082] -Triangle: [1008, 1084, 1083] -Triangle: [1083, 1005, 1008] -Triangle: [1014, 1015, 1011] -Triangle: [1011, 1010, 1014] -Triangle: [1016, 1017, 1013] -Triangle: [1013, 1012, 1016] -Triangle: [1013, 1017, 1014] -Triangle: [1014, 1010, 1013] -Triangle: [1011, 1015, 1016] -Triangle: [1016, 1012, 1011] -Triangle: [1019, 1020, 1021] -Triangle: [1021, 1018, 1019] -Triangle: [1023, 1024, 1025] -Triangle: [1025, 1022, 1023] -Triangle: [1025, 1024, 1019] -Triangle: [1019, 1018, 1025] -Triangle: [1021, 1020, 1023] -Triangle: [1023, 1022, 1021] -Triangle: [1026, 1062, 1063] -Triangle: [1063, 1029, 1026] -Triangle: [1064, 1065, 1033] -Triangle: [1033, 1030, 1064] -Triangle: [1062, 1065, 1032] -Triangle: [1032, 1027, 1062] -Triangle: [1064, 1063, 1028] -Triangle: [1028, 1031, 1064] -Triangle: [1027, 1032, 1039] -Triangle: [1039, 1038, 1027] -Triangle: [1038, 1039, 1035] -Triangle: [1035, 1034, 1038] -Triangle: [1031, 1028, 1041] -Triangle: [1041, 1040, 1031] -Triangle: [1040, 1041, 1037] -Triangle: [1037, 1036, 1040] -Triangle: [1028, 1027, 1038] -Triangle: [1038, 1041, 1028] -Triangle: [1041, 1038, 1034] -Triangle: [1034, 1037, 1041] -Triangle: [1032, 1031, 1040] -Triangle: [1040, 1039, 1032] -Triangle: [1039, 1040, 1036] -Triangle: [1036, 1035, 1039] -Triangle: [1034, 1035, 1042] -Triangle: [1042, 1061, 1034] -Triangle: [1036, 1037, 1044] -Triangle: [1044, 1043, 1036] -Triangle: [1037, 1034, 1061] -Triangle: [1061, 1044, 1037] -Triangle: [1035, 1036, 1043] -Triangle: [1043, 1042, 1035] -Triangle: [1045, 1048, 1067] -Triangle: [1067, 1066, 1045] -Triangle: [1052, 1069, 1068] -Triangle: [1068, 1049, 1052] -Triangle: [1051, 1069, 1066] -Triangle: [1066, 1046, 1051] -Triangle: [1047, 1067, 1068] -Triangle: [1068, 1050, 1047] -Triangle: [1046, 1053, 1054] -Triangle: [1054, 1051, 1046] -Triangle: [1053, 1055, 1056] -Triangle: [1056, 1054, 1053] -Triangle: [1050, 1057, 1058] -Triangle: [1058, 1047, 1050] -Triangle: [1057, 1059, 1060] -Triangle: [1060, 1058, 1057] -Triangle: [1047, 1058, 1053] -Triangle: [1053, 1046, 1047] -Triangle: [1058, 1060, 1055] -Triangle: [1055, 1053, 1058] -Triangle: [1051, 1054, 1057] -Triangle: [1057, 1050, 1051] -Triangle: [1054, 1056, 1059] -Triangle: [1059, 1057, 1054] -Triangle: [1055, 1061, 1042] -Triangle: [1042, 1056, 1055] -Triangle: [1059, 1043, 1044] -Triangle: [1044, 1060, 1059] -Triangle: [1060, 1044, 1061] -Triangle: [1061, 1055, 1060] -Triangle: [1056, 1042, 1043] -Triangle: [1043, 1059, 1056] -Triangle: [1062, 1027, 1028] -Triangle: [1028, 1063, 1062] -Triangle: [1031, 1032, 1065] -Triangle: [1065, 1064, 1031] -Triangle: [1026, 1033, 1065] -Triangle: [1065, 1062, 1026] -Triangle: [1030, 1029, 1063] -Triangle: [1063, 1064, 1030] -Triangle: [1047, 1046, 1066] -Triangle: [1066, 1067, 1047] -Triangle: [1069, 1051, 1050] -Triangle: [1050, 1068, 1069] -Triangle: [1052, 1045, 1066] -Triangle: [1066, 1069, 1052] -Triangle: [1048, 1049, 1068] -Triangle: [1068, 1067, 1048] -Triangle: [1072, 978, 981] -Triangle: [981, 1070, 1072] -Triangle: [979, 980, 1074] -Triangle: [1074, 1073, 979] -Triangle: [982, 983, 1071] -Triangle: [1071, 1075, 982] -Triangle: [1077, 985, 984] -Triangle: [984, 1076, 1077] -Triangle: [1072, 954, 971] -Triangle: [971, 1074, 1072] -Triangle: [972, 973, 1070] -Triangle: [1070, 1073, 972] -Triangle: [1075, 975, 976] -Triangle: [976, 1076, 1075] -Triangle: [977, 974, 1071] -Triangle: [1071, 1077, 977] -Triangle: [1078, 996, 997] -Triangle: [997, 1079, 1078] -Triangle: [1000, 1001, 1081] -Triangle: [1081, 1080, 1000] -Triangle: [1004, 1005, 1083] -Triangle: [1083, 1082, 1004] -Triangle: [1084, 1008, 1009] -Triangle: [1009, 1085, 1084] -Triangle: [995, 998, 1081] -Triangle: [1081, 1078, 995] -Triangle: [1080, 999, 994] -Triangle: [994, 1079, 1080] -Triangle: [1003, 1006, 1085] -Triangle: [1085, 1082, 1003] -Triangle: [1084, 1007, 1002] -Triangle: [1002, 1083, 1084] -Triangle: [958, 956, 1087] -Triangle: [1087, 1086, 958] -Triangle: [959, 958, 1086] -Triangle: [1086, 1088, 959] -Triangle: [970, 959, 1088] -Triangle: [1088, 1091, 970] -Triangle: [956, 968, 1090] -Triangle: [1090, 1087, 956] -Triangle: [1090, 968, 966] -Triangle: [966, 1089, 1090] -Triangle: [966, 970, 1091] -Triangle: [1091, 1089, 966] -Triangle: [1100, 1099, 1093] -Triangle: [1096, 1095, 1094] -Triangle: [1092, 1210, 1208] -Triangle: [1208, 1111, 1092] -Triangle: [1099, 1224, 1225] -Triangle: [1225, 1093, 1099] -Triangle: [1098, 1226, 1224] -Triangle: [1224, 1099, 1098] -Triangle: [1229, 1226, 1098] -Triangle: [1098, 1107, 1229] -Triangle: [1225, 1228, 1103] -Triangle: [1103, 1093, 1225] -Triangle: [1093, 1103, 1101] -Triangle: [1101, 1100, 1093] -Triangle: [1094, 1095, 1105] -Triangle: [1105, 1106, 1094] -Triangle: [1101, 1103, 1102] -Triangle: [1104, 1106, 1105] -Triangle: [1102, 1103, 1228] -Triangle: [1228, 1227, 1102] -Triangle: [1227, 1229, 1107] -Triangle: [1107, 1102, 1227] -Triangle: [1109, 1110, 1211] -Triangle: [1211, 1212, 1109] -Triangle: [1112, 1113, 1213] -Triangle: [1213, 1209, 1112] -Triangle: [1115, 1215, 1214] -Triangle: [1214, 1114, 1115] -Triangle: [1124, 1130, 1119] -Triangle: [1119, 1116, 1124] -Triangle: [1116, 1210, 1212] -Triangle: [1212, 1118, 1116] -Triangle: [1125, 1126, 1118] -Triangle: [1118, 1117, 1125] -Triangle: [1211, 1208, 1119] -Triangle: [1119, 1117, 1211] -Triangle: [1127, 1131, 1121] -Triangle: [1121, 1120, 1127] -Triangle: [1120, 1213, 1214] -Triangle: [1214, 1122, 1120] -Triangle: [1129, 1128, 1122] -Triangle: [1122, 1123, 1129] -Triangle: [1215, 1209, 1121] -Triangle: [1121, 1123, 1215] -Triangle: [1116, 1118, 1126] -Triangle: [1126, 1124, 1116] -Triangle: [1117, 1119, 1130] -Triangle: [1130, 1125, 1117] -Triangle: [1120, 1122, 1128] -Triangle: [1128, 1127, 1120] -Triangle: [1123, 1121, 1131] -Triangle: [1131, 1129, 1123] -Triangle: [1133, 1216, 1217] -Triangle: [1217, 1132, 1133] -Triangle: [1136, 1137, 1218] -Triangle: [1218, 1219, 1136] -Triangle: [1140, 1141, 1220] -Triangle: [1220, 1221, 1140] -Triangle: [1145, 1222, 1223] -Triangle: [1223, 1144, 1145] -Triangle: [1216, 1219, 1139] -Triangle: [1139, 1134, 1216] -Triangle: [1138, 1218, 1217] -Triangle: [1217, 1135, 1138] -Triangle: [1220, 1223, 1147] -Triangle: [1147, 1142, 1220] -Triangle: [1146, 1222, 1221] -Triangle: [1221, 1143, 1146] -Triangle: [1152, 1153, 1149] -Triangle: [1149, 1148, 1152] -Triangle: [1154, 1155, 1151] -Triangle: [1151, 1150, 1154] -Triangle: [1151, 1155, 1152] -Triangle: [1152, 1148, 1151] -Triangle: [1149, 1153, 1154] -Triangle: [1154, 1150, 1149] -Triangle: [1157, 1158, 1159] -Triangle: [1159, 1156, 1157] -Triangle: [1161, 1162, 1163] -Triangle: [1163, 1160, 1161] -Triangle: [1163, 1162, 1157] -Triangle: [1157, 1156, 1163] -Triangle: [1159, 1158, 1161] -Triangle: [1161, 1160, 1159] -Triangle: [1164, 1200, 1201] -Triangle: [1201, 1167, 1164] -Triangle: [1202, 1203, 1171] -Triangle: [1171, 1168, 1202] -Triangle: [1200, 1203, 1170] -Triangle: [1170, 1165, 1200] -Triangle: [1202, 1201, 1166] -Triangle: [1166, 1169, 1202] -Triangle: [1165, 1170, 1177] -Triangle: [1177, 1176, 1165] -Triangle: [1176, 1177, 1173] -Triangle: [1173, 1172, 1176] -Triangle: [1169, 1166, 1179] -Triangle: [1179, 1178, 1169] -Triangle: [1178, 1179, 1175] -Triangle: [1175, 1174, 1178] -Triangle: [1166, 1165, 1176] -Triangle: [1176, 1179, 1166] -Triangle: [1179, 1176, 1172] -Triangle: [1172, 1175, 1179] -Triangle: [1170, 1169, 1178] -Triangle: [1178, 1177, 1170] -Triangle: [1177, 1178, 1174] -Triangle: [1174, 1173, 1177] -Triangle: [1172, 1173, 1180] -Triangle: [1180, 1199, 1172] -Triangle: [1174, 1175, 1182] -Triangle: [1182, 1181, 1174] -Triangle: [1175, 1172, 1199] -Triangle: [1199, 1182, 1175] -Triangle: [1173, 1174, 1181] -Triangle: [1181, 1180, 1173] -Triangle: [1183, 1186, 1205] -Triangle: [1205, 1204, 1183] -Triangle: [1190, 1207, 1206] -Triangle: [1206, 1187, 1190] -Triangle: [1189, 1207, 1204] -Triangle: [1204, 1184, 1189] -Triangle: [1185, 1205, 1206] -Triangle: [1206, 1188, 1185] -Triangle: [1184, 1191, 1192] -Triangle: [1192, 1189, 1184] -Triangle: [1191, 1193, 1194] -Triangle: [1194, 1192, 1191] -Triangle: [1188, 1195, 1196] -Triangle: [1196, 1185, 1188] -Triangle: [1195, 1197, 1198] -Triangle: [1198, 1196, 1195] -Triangle: [1185, 1196, 1191] -Triangle: [1191, 1184, 1185] -Triangle: [1196, 1198, 1193] -Triangle: [1193, 1191, 1196] -Triangle: [1189, 1192, 1195] -Triangle: [1195, 1188, 1189] -Triangle: [1192, 1194, 1197] -Triangle: [1197, 1195, 1192] -Triangle: [1193, 1199, 1180] -Triangle: [1180, 1194, 1193] -Triangle: [1197, 1181, 1182] -Triangle: [1182, 1198, 1197] -Triangle: [1198, 1182, 1199] -Triangle: [1199, 1193, 1198] -Triangle: [1194, 1180, 1181] -Triangle: [1181, 1197, 1194] -Triangle: [1200, 1165, 1166] -Triangle: [1166, 1201, 1200] -Triangle: [1169, 1170, 1203] -Triangle: [1203, 1202, 1169] -Triangle: [1164, 1171, 1203] -Triangle: [1203, 1200, 1164] -Triangle: [1168, 1167, 1201] -Triangle: [1201, 1202, 1168] -Triangle: [1185, 1184, 1204] -Triangle: [1204, 1205, 1185] -Triangle: [1207, 1189, 1188] -Triangle: [1188, 1206, 1207] -Triangle: [1190, 1183, 1204] -Triangle: [1204, 1207, 1190] -Triangle: [1186, 1187, 1206] -Triangle: [1206, 1205, 1186] -Triangle: [1210, 1116, 1119] -Triangle: [1119, 1208, 1210] -Triangle: [1117, 1118, 1212] -Triangle: [1212, 1211, 1117] -Triangle: [1120, 1121, 1209] -Triangle: [1209, 1213, 1120] -Triangle: [1215, 1123, 1122] -Triangle: [1122, 1214, 1215] -Triangle: [1210, 1092, 1109] -Triangle: [1109, 1212, 1210] -Triangle: [1110, 1111, 1208] -Triangle: [1208, 1211, 1110] -Triangle: [1213, 1113, 1114] -Triangle: [1114, 1214, 1213] -Triangle: [1115, 1112, 1209] -Triangle: [1209, 1215, 1115] -Triangle: [1216, 1134, 1135] -Triangle: [1135, 1217, 1216] -Triangle: [1138, 1139, 1219] -Triangle: [1219, 1218, 1138] -Triangle: [1142, 1143, 1221] -Triangle: [1221, 1220, 1142] -Triangle: [1222, 1146, 1147] -Triangle: [1147, 1223, 1222] -Triangle: [1133, 1136, 1219] -Triangle: [1219, 1216, 1133] -Triangle: [1218, 1137, 1132] -Triangle: [1132, 1217, 1218] -Triangle: [1141, 1144, 1223] -Triangle: [1223, 1220, 1141] -Triangle: [1222, 1145, 1140] -Triangle: [1140, 1221, 1222] -Triangle: [1096, 1094, 1225] -Triangle: [1225, 1224, 1096] -Triangle: [1097, 1096, 1224] -Triangle: [1224, 1226, 1097] -Triangle: [1108, 1097, 1226] -Triangle: [1226, 1229, 1108] -Triangle: [1094, 1106, 1228] -Triangle: [1228, 1225, 1094] -Triangle: [1228, 1106, 1104] -Triangle: [1104, 1227, 1228] -Triangle: [1104, 1108, 1229] -Triangle: [1229, 1227, 1104] -Triangle: [1238, 1237, 1231] -Triangle: [1234, 1233, 1232] -Triangle: [1230, 1348, 1346] -Triangle: [1346, 1249, 1230] -Triangle: [1237, 1362, 1363] -Triangle: [1363, 1231, 1237] -Triangle: [1236, 1364, 1362] -Triangle: [1362, 1237, 1236] -Triangle: [1367, 1364, 1236] -Triangle: [1236, 1245, 1367] -Triangle: [1363, 1366, 1241] -Triangle: [1241, 1231, 1363] -Triangle: [1231, 1241, 1239] -Triangle: [1239, 1238, 1231] -Triangle: [1232, 1233, 1243] -Triangle: [1243, 1244, 1232] -Triangle: [1239, 1241, 1240] -Triangle: [1242, 1244, 1243] -Triangle: [1240, 1241, 1366] -Triangle: [1366, 1365, 1240] -Triangle: [1365, 1367, 1245] -Triangle: [1245, 1240, 1365] -Triangle: [1247, 1248, 1349] -Triangle: [1349, 1350, 1247] -Triangle: [1250, 1251, 1351] -Triangle: [1351, 1347, 1250] -Triangle: [1253, 1353, 1352] -Triangle: [1352, 1252, 1253] -Triangle: [1262, 1268, 1257] -Triangle: [1257, 1254, 1262] -Triangle: [1254, 1348, 1350] -Triangle: [1350, 1256, 1254] -Triangle: [1263, 1264, 1256] -Triangle: [1256, 1255, 1263] -Triangle: [1349, 1346, 1257] -Triangle: [1257, 1255, 1349] -Triangle: [1265, 1269, 1259] -Triangle: [1259, 1258, 1265] -Triangle: [1258, 1351, 1352] -Triangle: [1352, 1260, 1258] -Triangle: [1267, 1266, 1260] -Triangle: [1260, 1261, 1267] -Triangle: [1353, 1347, 1259] -Triangle: [1259, 1261, 1353] -Triangle: [1254, 1256, 1264] -Triangle: [1264, 1262, 1254] -Triangle: [1255, 1257, 1268] -Triangle: [1268, 1263, 1255] -Triangle: [1258, 1260, 1266] -Triangle: [1266, 1265, 1258] -Triangle: [1261, 1259, 1269] -Triangle: [1269, 1267, 1261] -Triangle: [1271, 1354, 1355] -Triangle: [1355, 1270, 1271] -Triangle: [1274, 1275, 1356] -Triangle: [1356, 1357, 1274] -Triangle: [1278, 1279, 1358] -Triangle: [1358, 1359, 1278] -Triangle: [1283, 1360, 1361] -Triangle: [1361, 1282, 1283] -Triangle: [1354, 1357, 1277] -Triangle: [1277, 1272, 1354] -Triangle: [1276, 1356, 1355] -Triangle: [1355, 1273, 1276] -Triangle: [1358, 1361, 1285] -Triangle: [1285, 1280, 1358] -Triangle: [1284, 1360, 1359] -Triangle: [1359, 1281, 1284] -Triangle: [1290, 1291, 1287] -Triangle: [1287, 1286, 1290] -Triangle: [1292, 1293, 1289] -Triangle: [1289, 1288, 1292] -Triangle: [1289, 1293, 1290] -Triangle: [1290, 1286, 1289] -Triangle: [1287, 1291, 1292] -Triangle: [1292, 1288, 1287] -Triangle: [1295, 1296, 1297] -Triangle: [1297, 1294, 1295] -Triangle: [1299, 1300, 1301] -Triangle: [1301, 1298, 1299] -Triangle: [1301, 1300, 1295] -Triangle: [1295, 1294, 1301] -Triangle: [1297, 1296, 1299] -Triangle: [1299, 1298, 1297] -Triangle: [1302, 1338, 1339] -Triangle: [1339, 1305, 1302] -Triangle: [1340, 1341, 1309] -Triangle: [1309, 1306, 1340] -Triangle: [1338, 1341, 1308] -Triangle: [1308, 1303, 1338] -Triangle: [1340, 1339, 1304] -Triangle: [1304, 1307, 1340] -Triangle: [1303, 1308, 1315] -Triangle: [1315, 1314, 1303] -Triangle: [1314, 1315, 1311] -Triangle: [1311, 1310, 1314] -Triangle: [1307, 1304, 1317] -Triangle: [1317, 1316, 1307] -Triangle: [1316, 1317, 1313] -Triangle: [1313, 1312, 1316] -Triangle: [1304, 1303, 1314] -Triangle: [1314, 1317, 1304] -Triangle: [1317, 1314, 1310] -Triangle: [1310, 1313, 1317] -Triangle: [1308, 1307, 1316] -Triangle: [1316, 1315, 1308] -Triangle: [1315, 1316, 1312] -Triangle: [1312, 1311, 1315] -Triangle: [1310, 1311, 1318] -Triangle: [1318, 1337, 1310] -Triangle: [1312, 1313, 1320] -Triangle: [1320, 1319, 1312] -Triangle: [1313, 1310, 1337] -Triangle: [1337, 1320, 1313] -Triangle: [1311, 1312, 1319] -Triangle: [1319, 1318, 1311] -Triangle: [1321, 1324, 1343] -Triangle: [1343, 1342, 1321] -Triangle: [1328, 1345, 1344] -Triangle: [1344, 1325, 1328] -Triangle: [1327, 1345, 1342] -Triangle: [1342, 1322, 1327] -Triangle: [1323, 1343, 1344] -Triangle: [1344, 1326, 1323] -Triangle: [1322, 1329, 1330] -Triangle: [1330, 1327, 1322] -Triangle: [1329, 1331, 1332] -Triangle: [1332, 1330, 1329] -Triangle: [1326, 1333, 1334] -Triangle: [1334, 1323, 1326] -Triangle: [1333, 1335, 1336] -Triangle: [1336, 1334, 1333] -Triangle: [1323, 1334, 1329] -Triangle: [1329, 1322, 1323] -Triangle: [1334, 1336, 1331] -Triangle: [1331, 1329, 1334] -Triangle: [1327, 1330, 1333] -Triangle: [1333, 1326, 1327] -Triangle: [1330, 1332, 1335] -Triangle: [1335, 1333, 1330] -Triangle: [1331, 1337, 1318] -Triangle: [1318, 1332, 1331] -Triangle: [1335, 1319, 1320] -Triangle: [1320, 1336, 1335] -Triangle: [1336, 1320, 1337] -Triangle: [1337, 1331, 1336] -Triangle: [1332, 1318, 1319] -Triangle: [1319, 1335, 1332] -Triangle: [1338, 1303, 1304] -Triangle: [1304, 1339, 1338] -Triangle: [1307, 1308, 1341] -Triangle: [1341, 1340, 1307] -Triangle: [1302, 1309, 1341] -Triangle: [1341, 1338, 1302] -Triangle: [1306, 1305, 1339] -Triangle: [1339, 1340, 1306] -Triangle: [1323, 1322, 1342] -Triangle: [1342, 1343, 1323] -Triangle: [1345, 1327, 1326] -Triangle: [1326, 1344, 1345] -Triangle: [1328, 1321, 1342] -Triangle: [1342, 1345, 1328] -Triangle: [1324, 1325, 1344] -Triangle: [1344, 1343, 1324] -Triangle: [1348, 1254, 1257] -Triangle: [1257, 1346, 1348] -Triangle: [1255, 1256, 1350] -Triangle: [1350, 1349, 1255] -Triangle: [1258, 1259, 1347] -Triangle: [1347, 1351, 1258] -Triangle: [1353, 1261, 1260] -Triangle: [1260, 1352, 1353] -Triangle: [1348, 1230, 1247] -Triangle: [1247, 1350, 1348] -Triangle: [1248, 1249, 1346] -Triangle: [1346, 1349, 1248] -Triangle: [1351, 1251, 1252] -Triangle: [1252, 1352, 1351] -Triangle: [1253, 1250, 1347] -Triangle: [1347, 1353, 1253] -Triangle: [1354, 1272, 1273] -Triangle: [1273, 1355, 1354] -Triangle: [1276, 1277, 1357] -Triangle: [1357, 1356, 1276] -Triangle: [1280, 1281, 1359] -Triangle: [1359, 1358, 1280] -Triangle: [1360, 1284, 1285] -Triangle: [1285, 1361, 1360] -Triangle: [1271, 1274, 1357] -Triangle: [1357, 1354, 1271] -Triangle: [1356, 1275, 1270] -Triangle: [1270, 1355, 1356] -Triangle: [1279, 1282, 1361] -Triangle: [1361, 1358, 1279] -Triangle: [1360, 1283, 1278] -Triangle: [1278, 1359, 1360] -Triangle: [1234, 1232, 1363] -Triangle: [1363, 1362, 1234] -Triangle: [1235, 1234, 1362] -Triangle: [1362, 1364, 1235] -Triangle: [1246, 1235, 1364] -Triangle: [1364, 1367, 1246] -Triangle: [1232, 1244, 1366] -Triangle: [1366, 1363, 1232] -Triangle: [1366, 1244, 1242] -Triangle: [1242, 1365, 1366] -Triangle: [1242, 1246, 1367] -Triangle: [1367, 1365, 1242] -Triangle: [1376, 1375, 1369] -Triangle: [1372, 1371, 1370] -Triangle: [1368, 1486, 1484] -Triangle: [1484, 1387, 1368] -Triangle: [1375, 1500, 1501] -Triangle: [1501, 1369, 1375] -Triangle: [1374, 1502, 1500] -Triangle: [1500, 1375, 1374] -Triangle: [1505, 1502, 1374] -Triangle: [1374, 1383, 1505] -Triangle: [1501, 1504, 1379] -Triangle: [1379, 1369, 1501] -Triangle: [1369, 1379, 1377] -Triangle: [1377, 1376, 1369] -Triangle: [1370, 1371, 1381] -Triangle: [1381, 1382, 1370] -Triangle: [1377, 1379, 1378] -Triangle: [1380, 1382, 1381] -Triangle: [1378, 1379, 1504] -Triangle: [1504, 1503, 1378] -Triangle: [1503, 1505, 1383] -Triangle: [1383, 1378, 1503] -Triangle: [1385, 1386, 1487] -Triangle: [1487, 1488, 1385] -Triangle: [1388, 1389, 1489] -Triangle: [1489, 1485, 1388] -Triangle: [1391, 1491, 1490] -Triangle: [1490, 1390, 1391] -Triangle: [1400, 1406, 1395] -Triangle: [1395, 1392, 1400] -Triangle: [1392, 1486, 1488] -Triangle: [1488, 1394, 1392] -Triangle: [1401, 1402, 1394] -Triangle: [1394, 1393, 1401] -Triangle: [1487, 1484, 1395] -Triangle: [1395, 1393, 1487] -Triangle: [1403, 1407, 1397] -Triangle: [1397, 1396, 1403] -Triangle: [1396, 1489, 1490] -Triangle: [1490, 1398, 1396] -Triangle: [1405, 1404, 1398] -Triangle: [1398, 1399, 1405] -Triangle: [1491, 1485, 1397] -Triangle: [1397, 1399, 1491] -Triangle: [1392, 1394, 1402] -Triangle: [1402, 1400, 1392] -Triangle: [1393, 1395, 1406] -Triangle: [1406, 1401, 1393] -Triangle: [1396, 1398, 1404] -Triangle: [1404, 1403, 1396] -Triangle: [1399, 1397, 1407] -Triangle: [1407, 1405, 1399] -Triangle: [1409, 1492, 1493] -Triangle: [1493, 1408, 1409] -Triangle: [1412, 1413, 1494] -Triangle: [1494, 1495, 1412] -Triangle: [1416, 1417, 1496] -Triangle: [1496, 1497, 1416] -Triangle: [1421, 1498, 1499] -Triangle: [1499, 1420, 1421] -Triangle: [1492, 1495, 1415] -Triangle: [1415, 1410, 1492] -Triangle: [1414, 1494, 1493] -Triangle: [1493, 1411, 1414] -Triangle: [1496, 1499, 1423] -Triangle: [1423, 1418, 1496] -Triangle: [1422, 1498, 1497] -Triangle: [1497, 1419, 1422] -Triangle: [1428, 1429, 1425] -Triangle: [1425, 1424, 1428] -Triangle: [1430, 1431, 1427] -Triangle: [1427, 1426, 1430] -Triangle: [1427, 1431, 1428] -Triangle: [1428, 1424, 1427] -Triangle: [1425, 1429, 1430] -Triangle: [1430, 1426, 1425] -Triangle: [1433, 1434, 1435] -Triangle: [1435, 1432, 1433] -Triangle: [1437, 1438, 1439] -Triangle: [1439, 1436, 1437] -Triangle: [1439, 1438, 1433] -Triangle: [1433, 1432, 1439] -Triangle: [1435, 1434, 1437] -Triangle: [1437, 1436, 1435] -Triangle: [1440, 1476, 1477] -Triangle: [1477, 1443, 1440] -Triangle: [1478, 1479, 1447] -Triangle: [1447, 1444, 1478] -Triangle: [1476, 1479, 1446] -Triangle: [1446, 1441, 1476] -Triangle: [1478, 1477, 1442] -Triangle: [1442, 1445, 1478] -Triangle: [1441, 1446, 1453] -Triangle: [1453, 1452, 1441] -Triangle: [1452, 1453, 1449] -Triangle: [1449, 1448, 1452] -Triangle: [1445, 1442, 1455] -Triangle: [1455, 1454, 1445] -Triangle: [1454, 1455, 1451] -Triangle: [1451, 1450, 1454] -Triangle: [1442, 1441, 1452] -Triangle: [1452, 1455, 1442] -Triangle: [1455, 1452, 1448] -Triangle: [1448, 1451, 1455] -Triangle: [1446, 1445, 1454] -Triangle: [1454, 1453, 1446] -Triangle: [1453, 1454, 1450] -Triangle: [1450, 1449, 1453] -Triangle: [1448, 1449, 1456] -Triangle: [1456, 1475, 1448] -Triangle: [1450, 1451, 1458] -Triangle: [1458, 1457, 1450] -Triangle: [1451, 1448, 1475] -Triangle: [1475, 1458, 1451] -Triangle: [1449, 1450, 1457] -Triangle: [1457, 1456, 1449] -Triangle: [1459, 1462, 1481] -Triangle: [1481, 1480, 1459] -Triangle: [1466, 1483, 1482] -Triangle: [1482, 1463, 1466] -Triangle: [1465, 1483, 1480] -Triangle: [1480, 1460, 1465] -Triangle: [1461, 1481, 1482] -Triangle: [1482, 1464, 1461] -Triangle: [1460, 1467, 1468] -Triangle: [1468, 1465, 1460] -Triangle: [1467, 1469, 1470] -Triangle: [1470, 1468, 1467] -Triangle: [1464, 1471, 1472] -Triangle: [1472, 1461, 1464] -Triangle: [1471, 1473, 1474] -Triangle: [1474, 1472, 1471] -Triangle: [1461, 1472, 1467] -Triangle: [1467, 1460, 1461] -Triangle: [1472, 1474, 1469] -Triangle: [1469, 1467, 1472] -Triangle: [1465, 1468, 1471] -Triangle: [1471, 1464, 1465] -Triangle: [1468, 1470, 1473] -Triangle: [1473, 1471, 1468] -Triangle: [1469, 1475, 1456] -Triangle: [1456, 1470, 1469] -Triangle: [1473, 1457, 1458] -Triangle: [1458, 1474, 1473] -Triangle: [1474, 1458, 1475] -Triangle: [1475, 1469, 1474] -Triangle: [1470, 1456, 1457] -Triangle: [1457, 1473, 1470] -Triangle: [1476, 1441, 1442] -Triangle: [1442, 1477, 1476] -Triangle: [1445, 1446, 1479] -Triangle: [1479, 1478, 1445] -Triangle: [1440, 1447, 1479] -Triangle: [1479, 1476, 1440] -Triangle: [1444, 1443, 1477] -Triangle: [1477, 1478, 1444] -Triangle: [1461, 1460, 1480] -Triangle: [1480, 1481, 1461] -Triangle: [1483, 1465, 1464] -Triangle: [1464, 1482, 1483] -Triangle: [1466, 1459, 1480] -Triangle: [1480, 1483, 1466] -Triangle: [1462, 1463, 1482] -Triangle: [1482, 1481, 1462] -Triangle: [1486, 1392, 1395] -Triangle: [1395, 1484, 1486] -Triangle: [1393, 1394, 1488] -Triangle: [1488, 1487, 1393] -Triangle: [1396, 1397, 1485] -Triangle: [1485, 1489, 1396] -Triangle: [1491, 1399, 1398] -Triangle: [1398, 1490, 1491] -Triangle: [1486, 1368, 1385] -Triangle: [1385, 1488, 1486] -Triangle: [1386, 1387, 1484] -Triangle: [1484, 1487, 1386] -Triangle: [1489, 1389, 1390] -Triangle: [1390, 1490, 1489] -Triangle: [1391, 1388, 1485] -Triangle: [1485, 1491, 1391] -Triangle: [1492, 1410, 1411] -Triangle: [1411, 1493, 1492] -Triangle: [1414, 1415, 1495] -Triangle: [1495, 1494, 1414] -Triangle: [1418, 1419, 1497] -Triangle: [1497, 1496, 1418] -Triangle: [1498, 1422, 1423] -Triangle: [1423, 1499, 1498] -Triangle: [1409, 1412, 1495] -Triangle: [1495, 1492, 1409] -Triangle: [1494, 1413, 1408] -Triangle: [1408, 1493, 1494] -Triangle: [1417, 1420, 1499] -Triangle: [1499, 1496, 1417] -Triangle: [1498, 1421, 1416] -Triangle: [1416, 1497, 1498] -Triangle: [1372, 1370, 1501] -Triangle: [1501, 1500, 1372] -Triangle: [1373, 1372, 1500] -Triangle: [1500, 1502, 1373] -Triangle: [1384, 1373, 1502] -Triangle: [1502, 1505, 1384] -Triangle: [1370, 1382, 1504] -Triangle: [1504, 1501, 1370] -Triangle: [1504, 1382, 1380] -Triangle: [1380, 1503, 1504] -Triangle: [1380, 1384, 1505] -Triangle: [1505, 1503, 1380] -Triangle: [1507, 1509, 1512] -Triangle: [1512, 1508, 1507] -Triangle: [1510, 1509, 1507] -Triangle: [1507, 1506, 1510] -Triangle: [1506, 1513, 1511] -Triangle: [1511, 1510, 1506] -Triangle: [1511, 1513, 1508] -Triangle: [1508, 1512, 1511] -Triangle: [1515, 1517, 1520] -Triangle: [1520, 1516, 1515] -Triangle: [1518, 1517, 1515] -Triangle: [1515, 1514, 1518] -Triangle: [1514, 1521, 1519] -Triangle: [1519, 1518, 1514] -Triangle: [1519, 1521, 1516] -Triangle: [1516, 1520, 1519] -Triangle: [1522, 1526, 1527] -Triangle: [1527, 1523, 1522] -Triangle: [1523, 1527, 1528] -Triangle: [1528, 1524, 1523] -Triangle: [1524, 1528, 1525] -Triangle: [1526, 1529, 1530] -Triangle: [1530, 1527, 1526] -Triangle: [1527, 1530, 1531] -Triangle: [1531, 1528, 1527] -Triangle: [1528, 1531, 1525] -Triangle: [1529, 1532, 1533] -Triangle: [1533, 1530, 1529] -Triangle: [1530, 1533, 1534] -Triangle: [1534, 1531, 1530] -Triangle: [1531, 1534, 1525] -Triangle: [1532, 1535, 1536] -Triangle: [1536, 1533, 1532] -Triangle: [1533, 1536, 1537] -Triangle: [1537, 1534, 1533] -Triangle: [1534, 1537, 1525] -Triangle: [1535, 1538, 1539] -Triangle: [1539, 1536, 1535] -Triangle: [1536, 1539, 1540] -Triangle: [1540, 1537, 1536] -Triangle: [1537, 1540, 1525] -Triangle: [1538, 1522, 1523] -Triangle: [1523, 1539, 1538] -Triangle: [1539, 1523, 1524] -Triangle: [1524, 1540, 1539] -Triangle: [1540, 1524, 1525] -Triangle: [1541, 1542, 1543] -Triangle: [1543, 1544, 1541] -Triangle: [1544, 1543, 1545] -Triangle: [1542, 1546, 1547] -Triangle: [1547, 1543, 1542] -Triangle: [1543, 1547, 1545] -Triangle: [1546, 1548, 1549] -Triangle: [1549, 1547, 1546] -Triangle: [1547, 1549, 1545] -Triangle: [1548, 1550, 1551] -Triangle: [1551, 1549, 1548] -Triangle: [1549, 1551, 1545] -Triangle: [1550, 1552, 1553] -Triangle: [1553, 1551, 1550] -Triangle: [1551, 1553, 1545] -Triangle: [1552, 1541, 1544] -Triangle: [1544, 1553, 1552] -Triangle: [1553, 1544, 1545] -Triangle: [1577, 1576, 1572] -Triangle: [1555, 1566, 1563] -Triangle: [1564, 1554, 1573] -Triangle: [1573, 1574, 1564] -Triangle: [1564, 1574, 1567] -Triangle: [1567, 1556, 1564] -Triangle: [1554, 1577, 1572] -Triangle: [1572, 1573, 1554] -Triangle: [1567, 1555, 1563] -Triangle: [1563, 1556, 1567] -Triangle: [1575, 1569, 1568] -Triangle: [1557, 1562, 1558] -Triangle: [1559, 1571, 1570] -Triangle: [1570, 1560, 1559] -Triangle: [1559, 1561, 1565] -Triangle: [1565, 1571, 1559] -Triangle: [1560, 1570, 1569] -Triangle: [1569, 1575, 1560] -Triangle: [1565, 1561, 1562] -Triangle: [1562, 1557, 1565] -Triangle: [1566, 1558, 1562] -Triangle: [1562, 1563, 1566] -Triangle: [1563, 1562, 1561] -Triangle: [1561, 1556, 1563] -Triangle: [1556, 1561, 1559] -Triangle: [1559, 1564, 1556] -Triangle: [1566, 1555, 1557] -Triangle: [1557, 1558, 1566] -Triangle: [1555, 1567, 1565] -Triangle: [1565, 1557, 1555] -Triangle: [1567, 1574, 1571] -Triangle: [1571, 1565, 1567] -Triangle: [1576, 1568, 1569] -Triangle: [1569, 1572, 1576] -Triangle: [1572, 1569, 1570] -Triangle: [1570, 1573, 1572] -Triangle: [1573, 1570, 1571] -Triangle: [1571, 1574, 1573] -Triangle: [1576, 1577, 1575] -Triangle: [1575, 1568, 1576] -Triangle: [1577, 1554, 1560] -Triangle: [1560, 1575, 1577] -Triangle: [1554, 1564, 1559] -Triangle: [1559, 1560, 1554] -Triangle: [1579, 1586, 1585] -Triangle: [1585, 1578, 1579] -Triangle: [1581, 1584, 1587] -Triangle: [1587, 1580, 1581] -Triangle: [1580, 1587, 1586] -Triangle: [1586, 1579, 1580] -Triangle: [1582, 1591, 1578] -Triangle: [1578, 1585, 1582] -Triangle: [1591, 1590, 1578] -Triangle: [1590, 1592, 1579] -Triangle: [1579, 1578, 1590] -Triangle: [1588, 1581, 1580] -Triangle: [1580, 1579, 1588] -Triangle: [1582, 1585, 1589] -Triangle: [1589, 1586, 1593] -Triangle: [1586, 1589, 1585] -Triangle: [1583, 1587, 1584] -Triangle: [1587, 1583, 1586] -Triangle: [1592, 1593, 1583] -Triangle: [1583, 1588, 1592] -Triangle: [1582, 1589, 1590] -Triangle: [1590, 1591, 1582] -Triangle: [1590, 1589, 1593] -Triangle: [1593, 1592, 1590] -Triangle: [1592, 1588, 1579] -Triangle: [1586, 1583, 1593] -Triangle: [1595, 1596, 1597] -Triangle: [1597, 1594, 1595] -Triangle: [1598, 1599, 1600] -Triangle: [1600, 1601, 1598] -Triangle: [1603, 1604, 1605] -Triangle: [1605, 1602, 1603] -Triangle: [1602, 1596, 1601] -Triangle: [1601, 1606, 1602] -Triangle: [1608, 1609, 1606] -Triangle: [1606, 1607, 1608] -Triangle: [1600, 1597, 1605] -Triangle: [1605, 1607, 1600] -Triangle: [1602, 1606, 1609] -Triangle: [1609, 1603, 1602] -Triangle: [1607, 1605, 1604] -Triangle: [1604, 1608, 1607] -Triangle: [1596, 1602, 1605] -Triangle: [1605, 1597, 1596] -Triangle: [1607, 1606, 1601] -Triangle: [1601, 1600, 1607] -Triangle: [1596, 1595, 1598] -Triangle: [1598, 1601, 1596] -Triangle: [1599, 1594, 1597] -Triangle: [1597, 1600, 1599] -Triangle: [1598, 1595, 1594] -Triangle: [1594, 1599, 1598] -Triangle: [1611, 1612, 1613] -Triangle: [1613, 1610, 1611] -Triangle: [1614, 1615, 1616] -Triangle: [1616, 1617, 1614] -Triangle: [1619, 1620, 1621] -Triangle: [1621, 1618, 1619] -Triangle: [1618, 1612, 1617] -Triangle: [1617, 1622, 1618] -Triangle: [1624, 1625, 1622] -Triangle: [1622, 1623, 1624] -Triangle: [1616, 1613, 1621] -Triangle: [1621, 1623, 1616] -Triangle: [1618, 1622, 1625] -Triangle: [1625, 1619, 1618] -Triangle: [1623, 1621, 1620] -Triangle: [1620, 1624, 1623] -Triangle: [1612, 1618, 1621] -Triangle: [1621, 1613, 1612] -Triangle: [1623, 1622, 1617] -Triangle: [1617, 1616, 1623] -Triangle: [1612, 1611, 1614] -Triangle: [1614, 1617, 1612] -Triangle: [1615, 1610, 1613] -Triangle: [1613, 1616, 1615] -Triangle: [1614, 1611, 1610] -Triangle: [1610, 1615, 1614] -Triangle: [1627, 1628, 1629] -Triangle: [1629, 1626, 1627] -Triangle: [1630, 1631, 1632] -Triangle: [1632, 1633, 1630] -Triangle: [1635, 1636, 1637] -Triangle: [1637, 1634, 1635] -Triangle: [1634, 1628, 1633] -Triangle: [1633, 1638, 1634] -Triangle: [1640, 1641, 1638] -Triangle: [1638, 1639, 1640] -Triangle: [1632, 1629, 1637] -Triangle: [1637, 1639, 1632] -Triangle: [1634, 1638, 1641] -Triangle: [1641, 1635, 1634] -Triangle: [1639, 1637, 1636] -Triangle: [1636, 1640, 1639] -Triangle: [1628, 1634, 1637] -Triangle: [1637, 1629, 1628] -Triangle: [1639, 1638, 1633] -Triangle: [1633, 1632, 1639] -Triangle: [1628, 1627, 1630] -Triangle: [1630, 1633, 1628] -Triangle: [1631, 1626, 1629] -Triangle: [1629, 1632, 1631] -Triangle: [1630, 1627, 1626] -Triangle: [1626, 1631, 1630] -Triangle: [1643, 1644, 1645] -Triangle: [1645, 1642, 1643] -Triangle: [1646, 1647, 1648] -Triangle: [1648, 1649, 1646] -Triangle: [1651, 1652, 1653] -Triangle: [1653, 1650, 1651] -Triangle: [1650, 1644, 1649] -Triangle: [1649, 1654, 1650] -Triangle: [1656, 1657, 1654] -Triangle: [1654, 1655, 1656] -Triangle: [1648, 1645, 1653] -Triangle: [1653, 1655, 1648] -Triangle: [1650, 1654, 1657] -Triangle: [1657, 1651, 1650] -Triangle: [1655, 1653, 1652] -Triangle: [1652, 1656, 1655] -Triangle: [1644, 1650, 1653] -Triangle: [1653, 1645, 1644] -Triangle: [1655, 1654, 1649] -Triangle: [1649, 1648, 1655] -Triangle: [1644, 1643, 1646] -Triangle: [1646, 1649, 1644] -Triangle: [1647, 1642, 1645] -Triangle: [1645, 1648, 1647] -Triangle: [1646, 1643, 1642] -Triangle: [1642, 1647, 1646] -Triangle: [1658, 1659, 1675] -Triangle: [1675, 1674, 1658] -Triangle: [1674, 1689, 1673] -Triangle: [1673, 1658, 1674] -Triangle: [1659, 1660, 1676] -Triangle: [1676, 1675, 1659] -Triangle: [1660, 1661, 1677] -Triangle: [1677, 1676, 1660] -Triangle: [1661, 1662, 1678] -Triangle: [1678, 1677, 1661] -Triangle: [1662, 1663, 1679] -Triangle: [1679, 1678, 1662] -Triangle: [1663, 1664, 1680] -Triangle: [1680, 1679, 1663] -Triangle: [1664, 1665, 1681] -Triangle: [1681, 1680, 1664] -Triangle: [1665, 1666, 1682] -Triangle: [1682, 1681, 1665] -Triangle: [1666, 1667, 1683] -Triangle: [1683, 1682, 1666] -Triangle: [1667, 1668, 1684] -Triangle: [1684, 1683, 1667] -Triangle: [1668, 1669, 1685] -Triangle: [1685, 1684, 1668] -Triangle: [1669, 1670, 1686] -Triangle: [1686, 1685, 1669] -Triangle: [1670, 1671, 1687] -Triangle: [1687, 1686, 1670] -Triangle: [1671, 1672, 1688] -Triangle: [1688, 1687, 1671] -Triangle: [1672, 1673, 1689] -Triangle: [1689, 1688, 1672] -Triangle: [1712, 1713, 1722] -Triangle: [1722, 1723, 1712] -Triangle: [1713, 1714, 1721] -Triangle: [1721, 1722, 1713] -Triangle: [1714, 1715, 1720] -Triangle: [1720, 1721, 1714] -Triangle: [1715, 1716, 1719] -Triangle: [1719, 1720, 1715] -Triangle: [1716, 1717, 1718] -Triangle: [1718, 1719, 1716] -Triangle: [1724, 1725, 1740] -Triangle: [1740, 1741, 1724] -Triangle: [1726, 1727, 1738] -Triangle: [1738, 1739, 1726] -Triangle: [1727, 1728, 1737] -Triangle: [1737, 1738, 1727] -Triangle: [1728, 1729, 1736] -Triangle: [1736, 1737, 1728] -Triangle: [1729, 1730, 1735] -Triangle: [1735, 1736, 1729] -Triangle: [1730, 1731, 1734] -Triangle: [1734, 1735, 1730] -Triangle: [1731, 1732, 1733] -Triangle: [1733, 1734, 1731] -Triangle: [1742, 1743, 1746] -Triangle: [1746, 1747, 1742] -Triangle: [1743, 1744, 1745] -Triangle: [1745, 1746, 1743] -Triangle: [1711, 1710, 1719] -Triangle: [1719, 1718, 1711] -Triangle: [1710, 1709, 1720] -Triangle: [1720, 1719, 1710] -Triangle: [1709, 1708, 1721] -Triangle: [1721, 1720, 1709] -Triangle: [1708, 1707, 1722] -Triangle: [1722, 1721, 1708] -Triangle: [1707, 1706, 1723] -Triangle: [1723, 1722, 1707] -Triangle: [1706, 1690, 1712] -Triangle: [1712, 1723, 1706] -Triangle: [1692, 1705, 1733] -Triangle: [1733, 1732, 1692] -Triangle: [1705, 1704, 1734] -Triangle: [1734, 1733, 1705] -Triangle: [1704, 1703, 1735] -Triangle: [1735, 1734, 1704] -Triangle: [1703, 1702, 1736] -Triangle: [1736, 1735, 1703] -Triangle: [1702, 1701, 1737] -Triangle: [1737, 1736, 1702] -Triangle: [1701, 1700, 1738] -Triangle: [1738, 1737, 1701] -Triangle: [1700, 1699, 1739] -Triangle: [1739, 1738, 1700] -Triangle: [1698, 1697, 1741] -Triangle: [1741, 1740, 1698] -Triangle: [1697, 1691, 1724] -Triangle: [1724, 1741, 1697] -Triangle: [1693, 1696, 1745] -Triangle: [1745, 1744, 1693] -Triangle: [1696, 1695, 1746] -Triangle: [1746, 1745, 1696] -Triangle: [1695, 1694, 1747] -Triangle: [1747, 1746, 1695] -Triangle: [1751, 1726, 1739] -Triangle: [1739, 1752, 1751] -Triangle: [1740, 1725, 1750] -Triangle: [1750, 1753, 1740] -Triangle: [1698, 1740, 1753] -Triangle: [1753, 1749, 1698] -Triangle: [1739, 1699, 1748] -Triangle: [1748, 1752, 1739] -Triangle: [1752, 1748, 1754] -Triangle: [1754, 1751, 1752] -Triangle: [1749, 1753, 1750] -Triangle: [1750, 1755, 1749] -Triangle: [1760, 1766, 1761] -Triangle: [1773, 1800, 1768] -Triangle: [1803, 1780, 1775] -Triangle: [1790, 1782, 1783] -Triangle: [1766, 1760, 1835] -Triangle: [1835, 1767, 1766] -Triangle: [1761, 1766, 1765] -Triangle: [1765, 1808, 1761] -Triangle: [1807, 1808, 1765] -Triangle: [1765, 1772, 1807] -Triangle: [1835, 1785, 1791] -Triangle: [1791, 1767, 1835] -Triangle: [1762, 1765, 1766] -Triangle: [1766, 1763, 1762] -Triangle: [1762, 1769, 1772] -Triangle: [1772, 1765, 1762] -Triangle: [1763, 1766, 1767] -Triangle: [1767, 1764, 1763] -Triangle: [1788, 1764, 1767] -Triangle: [1767, 1791, 1788] -Triangle: [1800, 1773, 1774] -Triangle: [1774, 1801, 1800] -Triangle: [1773, 1768, 1807] -Triangle: [1807, 1772, 1773] -Triangle: [1802, 1801, 1774] -Triangle: [1774, 1781, 1802] -Triangle: [1772, 1769, 1770] -Triangle: [1770, 1773, 1772] -Triangle: [1773, 1770, 1771] -Triangle: [1771, 1774, 1773] -Triangle: [1771, 1778, 1781] -Triangle: [1781, 1774, 1771] -Triangle: [1780, 1803, 1802] -Triangle: [1802, 1781, 1780] -Triangle: [1775, 1780, 1779] -Triangle: [1779, 1805, 1775] -Triangle: [1784, 1805, 1779] -Triangle: [1779, 1789, 1784] -Triangle: [1776, 1779, 1780] -Triangle: [1780, 1777, 1776] -Triangle: [1779, 1776, 1786] -Triangle: [1786, 1789, 1779] -Triangle: [1777, 1780, 1781] -Triangle: [1781, 1778, 1777] -Triangle: [1782, 1790, 1791] -Triangle: [1791, 1785, 1782] -Triangle: [1790, 1783, 1784] -Triangle: [1784, 1789, 1790] -Triangle: [1789, 1786, 1787] -Triangle: [1787, 1790, 1789] -Triangle: [1790, 1787, 1788] -Triangle: [1788, 1791, 1790] -Triangle: [1763, 1792, 1762] -Triangle: [1762, 1792, 1793] -Triangle: [1793, 1769, 1762] -Triangle: [1764, 1792, 1763] -Triangle: [1788, 1795, 1792] -Triangle: [1792, 1764, 1788] -Triangle: [1769, 1793, 1770] -Triangle: [1770, 1793, 1771] -Triangle: [1771, 1793, 1794] -Triangle: [1794, 1778, 1771] -Triangle: [1777, 1794, 1776] -Triangle: [1776, 1794, 1795] -Triangle: [1795, 1786, 1776] -Triangle: [1778, 1794, 1777] -Triangle: [1786, 1795, 1787] -Triangle: [1787, 1795, 1788] -Triangle: [1794, 1793, 1792] -Triangle: [1792, 1795, 1794] -Triangle: [1796, 1800, 1801] -Triangle: [1801, 1797, 1796] -Triangle: [1797, 1801, 1802] -Triangle: [1802, 1798, 1797] -Triangle: [1798, 1802, 1803] -Triangle: [1803, 1799, 1798] -Triangle: [1810, 1804, 1805] -Triangle: [1805, 1784, 1810] -Triangle: [1804, 1812, 1775] -Triangle: [1775, 1805, 1804] -Triangle: [1784, 1783, 1809] -Triangle: [1809, 1810, 1784] -Triangle: [1812, 1799, 1803] -Triangle: [1803, 1775, 1812] -Triangle: [1783, 1782, 1806] -Triangle: [1806, 1809, 1783] -Triangle: [1808, 1807, 1814] -Triangle: [1814, 1817, 1808] -Triangle: [1807, 1768, 1813] -Triangle: [1813, 1814, 1807] -Triangle: [1817, 1816, 1761] -Triangle: [1761, 1808, 1817] -Triangle: [1768, 1800, 1796] -Triangle: [1796, 1813, 1768] -Triangle: [1816, 1815, 1760] -Triangle: [1760, 1761, 1816] -Triangle: [1782, 1785, 1811] -Triangle: [1811, 1806, 1782] -Triangle: [1815, 1836, 1835] -Triangle: [1835, 1760, 1815] -Triangle: [1806, 1818, 1809] -Triangle: [1818, 1799, 1812] -Triangle: [1796, 1818, 1813] -Triangle: [1818, 1815, 1816] -Triangle: [1818, 1806, 1811] -Triangle: [1809, 1818, 1810] -Triangle: [1804, 1810, 1818] -Triangle: [1811, 1836, 1818] -Triangle: [1799, 1818, 1798] -Triangle: [1818, 1812, 1804] -Triangle: [1797, 1798, 1818] -Triangle: [1818, 1796, 1797] -Triangle: [1813, 1818, 1814] -Triangle: [1817, 1814, 1818] -Triangle: [1815, 1818, 1836] -Triangle: [1818, 1816, 1817] -Triangle: [1826, 1819, 1820] -Triangle: [1820, 1823, 1826] -Triangle: [1819, 1826, 1827] -Triangle: [1827, 1831, 1819] -Triangle: [1823, 1820, 1821] -Triangle: [1821, 1824, 1823] -Triangle: [1824, 1821, 1822] -Triangle: [1822, 1825, 1824] -Triangle: [1822, 1834, 1830] -Triangle: [1830, 1825, 1822] -Triangle: [1828, 1823, 1824] -Triangle: [1824, 1829, 1828] -Triangle: [1823, 1828, 1827] -Triangle: [1827, 1826, 1823] -Triangle: [1829, 1824, 1825] -Triangle: [1825, 1830, 1829] -Triangle: [1829, 1833, 1832] -Triangle: [1832, 1828, 1829] -Triangle: [1828, 1832, 1831] -Triangle: [1831, 1827, 1828] -Triangle: [1830, 1834, 1833] -Triangle: [1833, 1829, 1830] -Triangle: [1785, 1835, 1836] -Triangle: [1836, 1811, 1785] -Triangle: [1846, 1845, 1852] -Triangle: [1852, 1851, 1846] -Triangle: [1837, 1838, 1842] -Triangle: [1842, 1841, 1837] -Triangle: [1837, 1841, 1844] -Triangle: [1844, 1840, 1837] -Triangle: [1838, 1839, 1843] -Triangle: [1843, 1842, 1838] -Triangle: [1839, 1840, 1844] -Triangle: [1844, 1843, 1839] -Triangle: [1841, 1842, 1843] -Triangle: [1843, 1844, 1841] -Triangle: [1845, 1849, 1850] -Triangle: [1850, 1852, 1845] -Triangle: [1848, 1849, 1845] -Triangle: [1845, 1846, 1848] -Triangle: [1848, 1847, 1850] -Triangle: [1850, 1849, 1848] -Triangle: [1847, 1851, 1852] -Triangle: [1852, 1850, 1847] -Triangle: [2070, 2065, 2066] -Triangle: [2066, 2069, 2070] -Triangle: [2072, 2064, 2063] -Triangle: [2063, 2071, 2072] -Triangle: [1988, 2068, 2067] -Triangle: [2067, 1855, 1988] -Triangle: [2064, 2070, 2069] -Triangle: [2069, 2063, 2064] -Triangle: [2068, 2072, 2071] -Triangle: [2071, 2067, 2068] -Triangle: [1877, 1866, 2056] -Triangle: [1867, 1868, 2057] -Triangle: [1875, 1874, 1873] -Triangle: [1889, 1888, 1887] -Triangle: [1887, 1886, 1889] -Triangle: [1886, 1887, 1891] -Triangle: [1891, 1890, 1886] -Triangle: [1890, 1891, 1893] -Triangle: [1893, 1894, 1890] -Triangle: [1883, 2057, 1873] -Triangle: [1873, 1874, 1883] -Triangle: [1874, 1875, 1882] -Triangle: [1882, 1883, 1874] -Triangle: [2057, 1864, 1872] -Triangle: [1872, 1873, 2057] -Triangle: [1864, 1894, 1871] -Triangle: [1871, 1872, 1864] -Triangle: [1894, 1893, 1870] -Triangle: [1870, 1871, 1894] -Triangle: [1893, 1892, 1869] -Triangle: [1869, 1870, 1893] -Triangle: [1865, 1866, 1877] -Triangle: [1877, 1876, 1865] -Triangle: [1892, 1882, 1875] -Triangle: [1875, 1869, 1892] -Triangle: [1865, 1863, 1867] -Triangle: [1867, 1866, 1865] -Triangle: [1863, 1864, 1868] -Triangle: [1868, 1867, 1863] -Triangle: [1866, 1867, 2057] -Triangle: [2057, 2056, 1866] -Triangle: [1872, 1871, 1870] -Triangle: [1870, 1869, 1872] -Triangle: [1875, 1873, 1872] -Triangle: [1872, 1869, 1875] -Triangle: [1878, 1880, 1879] -Triangle: [1881, 1883, 1882] -Triangle: [1884, 1885, 1878] -Triangle: [1878, 1879, 1884] -Triangle: [1884, 1879, 1881] -Triangle: [1881, 1862, 1884] -Triangle: [1862, 1881, 1882] -Triangle: [1882, 1892, 1862] -Triangle: [1879, 1880, 1883] -Triangle: [1883, 1881, 1879] -Triangle: [1876, 1889, 1886] -Triangle: [1886, 1865, 1876] -Triangle: [1884, 1887, 1888] -Triangle: [1888, 1885, 1884] -Triangle: [1865, 1886, 1890] -Triangle: [1890, 1863, 1865] -Triangle: [1862, 1891, 1887] -Triangle: [1887, 1884, 1862] -Triangle: [1863, 1890, 1894] -Triangle: [1894, 1864, 1863] -Triangle: [1892, 1893, 1891] -Triangle: [1891, 1862, 1892] -Triangle: [1895, 1896, 1897] -Triangle: [1924, 1897, 1896] -Triangle: [1896, 2059, 1924] -Triangle: [1897, 1924, 1923] -Triangle: [1923, 1895, 1897] -Triangle: [2059, 1896, 1898] -Triangle: [1898, 1906, 2059] -Triangle: [1906, 1898, 1899] -Triangle: [1899, 1933, 1906] -Triangle: [1933, 1899, 1900] -Triangle: [1900, 1934, 1933] -Triangle: [1934, 1900, 1901] -Triangle: [1901, 1903, 1934] -Triangle: [1903, 1901, 1895] -Triangle: [1895, 1923, 1903] -Triangle: [1898, 1901, 1900] -Triangle: [1900, 1899, 1898] -Triangle: [1895, 1901, 1898] -Triangle: [1898, 1896, 1895] -Triangle: [1918, 2058, 1907] -Triangle: [1908, 2059, 1909] -Triangle: [1916, 1915, 1914] -Triangle: [1930, 1927, 1928] -Triangle: [1928, 1929, 1930] -Triangle: [1927, 1931, 1932] -Triangle: [1932, 1928, 1927] -Triangle: [1931, 1933, 1934] -Triangle: [1934, 1932, 1931] -Triangle: [1921, 2058, 1935] -Triangle: [1935, 1936, 1921] -Triangle: [1915, 1916, 1937] -Triangle: [1937, 1936, 1915] -Triangle: [1917, 1938, 1935] -Triangle: [1935, 2058, 1917] -Triangle: [1930, 1939, 1938] -Triangle: [1938, 1917, 1930] -Triangle: [1929, 1940, 1939] -Triangle: [1939, 1930, 1929] -Triangle: [1929, 1926, 1941] -Triangle: [1941, 1940, 1929] -Triangle: [1904, 1917, 1918] -Triangle: [1918, 1907, 1904] -Triangle: [1919, 1937, 1941] -Triangle: [1941, 1926, 1919] -Triangle: [1904, 1907, 1908] -Triangle: [1908, 1905, 1904] -Triangle: [1905, 1908, 1909] -Triangle: [1909, 1906, 1905] -Triangle: [1907, 2058, 2059] -Triangle: [2059, 1908, 1907] -Triangle: [1913, 1912, 1911] -Triangle: [1911, 1910, 1913] -Triangle: [1916, 1914, 1913] -Triangle: [1913, 1910, 1916] -Triangle: [1919, 1920, 1921] -Triangle: [1922, 1923, 1924] -Triangle: [1925, 1920, 1919] -Triangle: [1919, 1926, 1925] -Triangle: [1925, 1902, 1922] -Triangle: [1922, 1920, 1925] -Triangle: [1902, 1903, 1923] -Triangle: [1923, 1922, 1902] -Triangle: [1920, 1922, 1924] -Triangle: [1924, 1921, 1920] -Triangle: [1917, 1904, 1927] -Triangle: [1927, 1930, 1917] -Triangle: [1925, 1926, 1929] -Triangle: [1929, 1928, 1925] -Triangle: [1904, 1905, 1931] -Triangle: [1931, 1927, 1904] -Triangle: [1902, 1925, 1928] -Triangle: [1928, 1932, 1902] -Triangle: [1905, 1906, 1933] -Triangle: [1933, 1931, 1905] -Triangle: [1903, 1902, 1932] -Triangle: [1932, 1934, 1903] -Triangle: [1914, 1915, 1936] -Triangle: [1936, 1935, 1914] -Triangle: [1919, 1921, 1936] -Triangle: [1936, 1937, 1919] -Triangle: [1938, 1913, 1914] -Triangle: [1914, 1935, 1938] -Triangle: [1912, 1913, 1938] -Triangle: [1938, 1939, 1912] -Triangle: [1911, 1912, 1939] -Triangle: [1939, 1940, 1911] -Triangle: [1941, 1910, 1911] -Triangle: [1911, 1940, 1941] -Triangle: [1937, 1916, 1910] -Triangle: [1910, 1941, 1937] -Triangle: [1942, 1943, 1944] -Triangle: [1880, 1945, 1946] -Triangle: [1946, 2056, 1880] -Triangle: [1944, 1945, 1947] -Triangle: [1947, 1942, 1944] -Triangle: [1876, 2056, 1946] -Triangle: [1946, 1948, 1876] -Triangle: [1889, 1876, 1948] -Triangle: [1948, 1949, 1889] -Triangle: [1888, 1889, 1949] -Triangle: [1949, 1950, 1888] -Triangle: [1888, 1950, 1951] -Triangle: [1951, 1885, 1888] -Triangle: [1878, 1885, 1951] -Triangle: [1951, 1947, 1878] -Triangle: [1952, 1953, 1954] -Triangle: [1954, 1955, 1952] -Triangle: [1942, 1953, 1952] -Triangle: [1952, 1943, 1942] -Triangle: [1943, 1946, 1945] -Triangle: [1945, 1944, 1943] -Triangle: [1878, 1947, 1945] -Triangle: [1945, 1880, 1878] -Triangle: [1948, 1946, 1943] -Triangle: [1943, 1952, 1948] -Triangle: [1955, 1949, 1948] -Triangle: [1948, 1952, 1955] -Triangle: [1954, 1950, 1949] -Triangle: [1949, 1955, 1954] -Triangle: [1951, 1950, 1954] -Triangle: [1954, 1953, 1951] -Triangle: [1947, 1951, 1953] -Triangle: [1953, 1942, 1947] -Triangle: [1970, 1971, 1972] -Triangle: [1972, 1969, 1970] -Triangle: [2060, 1972, 1971] -Triangle: [1971, 1985, 2060] -Triangle: [1974, 1970, 1969] -Triangle: [1969, 1973, 1974] -Triangle: [1976, 1974, 1973] -Triangle: [1973, 1975, 1976] -Triangle: [1978, 1976, 1975] -Triangle: [1975, 1977, 1978] -Triangle: [1982, 1978, 1977] -Triangle: [1977, 1981, 1982] -Triangle: [1979, 1980, 1982] -Triangle: [1982, 1981, 1979] -Triangle: [1965, 1963, 1967] -Triangle: [1959, 1964, 1962] -Triangle: [1963, 1962, 1964] -Triangle: [1964, 1967, 1963] -Triangle: [1962, 1961, 1960] -Triangle: [1960, 1959, 1962] -Triangle: [1965, 1967, 1966] -Triangle: [1966, 1967, 1968] -Triangle: [1956, 2002, 1971] -Triangle: [1971, 1970, 1956] -Triangle: [1959, 1960, 1969] -Triangle: [1969, 1972, 1959] -Triangle: [1964, 1959, 1972] -Triangle: [1972, 2060, 1964] -Triangle: [2002, 2003, 1985] -Triangle: [1985, 1971, 2002] -Triangle: [1957, 1956, 1970] -Triangle: [1970, 1974, 1957] -Triangle: [1960, 1961, 1973] -Triangle: [1973, 1969, 1960] -Triangle: [2004, 1957, 1974] -Triangle: [1974, 1976, 2004] -Triangle: [1961, 1962, 1975] -Triangle: [1975, 1973, 1961] -Triangle: [1958, 2004, 1976] -Triangle: [1976, 1978, 1958] -Triangle: [1962, 1963, 1977] -Triangle: [1977, 1975, 1962] -Triangle: [2007, 1958, 1978] -Triangle: [1978, 1982, 2007] -Triangle: [1963, 1965, 1981] -Triangle: [1981, 1977, 1963] -Triangle: [1986, 2007, 1982] -Triangle: [1982, 1980, 1986] -Triangle: [1981, 1965, 2055] -Triangle: [2055, 1979, 1981] -Triangle: [1983, 1967, 1984] -Triangle: [1984, 2009, 1983] -Triangle: [1985, 1984, 1967] -Triangle: [1967, 2060, 1985] -Triangle: [1984, 1985, 2003] -Triangle: [2060, 1967, 1964] -Triangle: [2076, 2073, 2074] -Triangle: [2074, 2075, 2076] -Triangle: [2079, 2077, 2078] -Triangle: [2078, 2080, 2079] -Triangle: [2081, 1988, 2019] -Triangle: [2019, 2082, 2081] -Triangle: [2073, 2079, 2080] -Triangle: [2080, 2074, 2073] -Triangle: [2077, 2081, 2082] -Triangle: [2082, 2078, 2077] -Triangle: [1990, 1989, 1992] -Triangle: [1992, 1991, 1990] -Triangle: [1994, 1993, 1991] -Triangle: [1991, 1992, 1994] -Triangle: [1996, 1995, 1989] -Triangle: [1989, 1990, 1996] -Triangle: [1998, 1997, 1995] -Triangle: [1995, 1996, 1998] -Triangle: [2000, 1997, 1998] -Triangle: [1998, 2005, 2000] -Triangle: [2000, 2005, 2006] -Triangle: [2006, 1999, 2000] -Triangle: [1999, 2006, 2008] -Triangle: [2008, 2001, 1999] -Triangle: [1956, 1990, 1991] -Triangle: [1991, 2002, 1956] -Triangle: [2042, 1992, 1989] -Triangle: [1989, 2041, 2042] -Triangle: [2043, 1994, 1992] -Triangle: [1992, 2042, 2043] -Triangle: [2002, 1991, 1993] -Triangle: [1993, 2003, 2002] -Triangle: [1957, 1996, 1990] -Triangle: [1990, 1956, 1957] -Triangle: [2041, 1989, 1995] -Triangle: [1995, 2044, 2041] -Triangle: [2004, 1998, 1996] -Triangle: [1996, 1957, 2004] -Triangle: [2044, 1995, 1997] -Triangle: [1997, 2045, 2044] -Triangle: [1958, 2005, 1998] -Triangle: [1998, 2004, 1958] -Triangle: [2045, 1997, 2000] -Triangle: [2000, 2047, 2045] -Triangle: [2007, 2006, 2005] -Triangle: [2005, 1958, 2007] -Triangle: [2047, 2000, 1999] -Triangle: [1999, 2049, 2047] -Triangle: [1986, 2008, 2006] -Triangle: [2006, 2007, 1986] -Triangle: [1999, 2001, 2013] -Triangle: [2013, 2049, 1999] -Triangle: [2052, 2009, 1984] -Triangle: [1984, 2053, 2052] -Triangle: [1993, 1994, 2053] -Triangle: [2053, 1984, 1993] -Triangle: [1984, 2003, 1993] -Triangle: [1994, 2043, 2053] -Triangle: [2085, 2086, 2083] -Triangle: [2083, 2084, 2085] -Triangle: [2089, 2087, 2088] -Triangle: [2088, 2090, 2089] -Triangle: [2091, 2019, 2018] -Triangle: [2018, 2092, 2091] -Triangle: [2083, 2089, 2090] -Triangle: [2090, 2084, 2083] -Triangle: [2087, 2091, 2092] -Triangle: [2092, 2088, 2087] -Triangle: [2022, 2021, 2024] -Triangle: [2024, 2023, 2022] -Triangle: [2061, 2025, 2023] -Triangle: [2023, 2024, 2061] -Triangle: [2027, 2026, 2021] -Triangle: [2021, 2022, 2027] -Triangle: [2029, 2028, 2026] -Triangle: [2026, 2027, 2029] -Triangle: [2031, 2028, 2029] -Triangle: [2029, 2046, 2031] -Triangle: [2031, 2046, 2048] -Triangle: [2048, 2030, 2031] -Triangle: [2030, 2048, 2050] -Triangle: [2050, 2032, 2030] -Triangle: [2033, 2062, 2034] -Triangle: [2035, 2036, 2054] -Triangle: [2034, 2062, 2054] -Triangle: [2054, 2036, 2034] -Triangle: [2036, 2035, 2038] -Triangle: [2038, 2037, 2036] -Triangle: [2033, 2039, 2062] -Triangle: [2039, 2040, 2062] -Triangle: [2041, 2022, 2023] -Triangle: [2023, 2042, 2041] -Triangle: [2035, 2024, 2021] -Triangle: [2021, 2038, 2035] -Triangle: [2054, 2061, 2024] -Triangle: [2024, 2035, 2054] -Triangle: [2042, 2023, 2025] -Triangle: [2025, 2043, 2042] -Triangle: [2044, 2027, 2022] -Triangle: [2022, 2041, 2044] -Triangle: [2038, 2021, 2026] -Triangle: [2026, 2037, 2038] -Triangle: [2045, 2029, 2027] -Triangle: [2027, 2044, 2045] -Triangle: [2037, 2026, 2028] -Triangle: [2028, 2036, 2037] -Triangle: [2047, 2046, 2029] -Triangle: [2029, 2045, 2047] -Triangle: [2036, 2028, 2031] -Triangle: [2031, 2034, 2036] -Triangle: [2049, 2048, 2046] -Triangle: [2046, 2047, 2049] -Triangle: [2034, 2031, 2030] -Triangle: [2030, 2033, 2034] -Triangle: [2013, 2050, 2048] -Triangle: [2048, 2049, 2013] -Triangle: [2030, 2032, 2010] -Triangle: [2010, 2033, 2030] -Triangle: [2051, 2052, 2053] -Triangle: [2053, 2062, 2051] -Triangle: [2025, 2061, 2062] -Triangle: [2062, 2053, 2025] -Triangle: [2053, 2043, 2025] -Triangle: [2061, 2054, 2062] -Triangle: [1859, 1986, 2065] -Triangle: [2065, 2070, 1859] -Triangle: [2055, 1858, 2069] -Triangle: [2069, 2066, 2055] -Triangle: [1861, 1856, 2064] -Triangle: [2064, 2072, 1861] -Triangle: [1853, 1860, 2071] -Triangle: [2071, 2063, 1853] -Triangle: [1988, 1857, 2068] -Triangle: [1856, 1859, 2070] -Triangle: [2070, 2064, 1856] -Triangle: [1858, 1853, 2063] -Triangle: [2063, 2069, 1858] -Triangle: [1857, 1861, 2072] -Triangle: [2072, 2068, 1857] -Triangle: [1860, 1854, 2067] -Triangle: [2067, 2071, 1860] -Triangle: [1986, 1859, 2073] -Triangle: [2073, 2076, 1986] -Triangle: [2012, 2013, 2075] -Triangle: [2075, 2074, 2012] -Triangle: [1856, 1861, 2077] -Triangle: [2077, 2079, 1856] -Triangle: [2016, 1987, 2080] -Triangle: [2080, 2078, 2016] -Triangle: [2081, 1857, 1988] -Triangle: [2019, 2020, 2082] -Triangle: [1859, 1856, 2079] -Triangle: [2079, 2073, 1859] -Triangle: [1987, 2012, 2074] -Triangle: [2074, 2080, 1987] -Triangle: [1861, 1857, 2081] -Triangle: [2081, 2077, 1861] -Triangle: [2020, 2016, 2078] -Triangle: [2078, 2082, 2020] -Triangle: [2086, 2013, 2012] -Triangle: [2012, 2083, 2086] -Triangle: [2084, 2011, 2010] -Triangle: [2010, 2085, 2084] -Triangle: [1987, 2016, 2087] -Triangle: [2087, 2089, 1987] -Triangle: [2015, 2014, 2090] -Triangle: [2090, 2088, 2015] -Triangle: [2091, 2020, 2019] -Triangle: [2018, 2017, 2092] -Triangle: [2012, 1987, 2089] -Triangle: [2089, 2083, 2012] -Triangle: [2014, 2011, 2084] -Triangle: [2084, 2090, 2014] -Triangle: [2016, 2020, 2091] -Triangle: [2091, 2087, 2016] -Triangle: [2017, 2015, 2088] -Triangle: [2088, 2092, 2017] -Triangle: [2067, 1854, 1855] -Triangle: [2263, 2258, 2259] -Triangle: [2259, 2262, 2263] -Triangle: [2265, 2257, 2256] -Triangle: [2256, 2264, 2265] -Triangle: [2100, 2261, 2260] -Triangle: [2260, 2096, 2100] -Triangle: [2257, 2263, 2262] -Triangle: [2262, 2256, 2257] -Triangle: [2261, 2265, 2264] -Triangle: [2264, 2260, 2261] -Triangle: [2122, 2109, 2112] -Triangle: [2110, 2111, 2113] -Triangle: [2120, 2119, 2118] -Triangle: [2134, 2133, 2132] -Triangle: [2132, 2131, 2134] -Triangle: [2131, 2132, 2136] -Triangle: [2136, 2135, 2131] -Triangle: [2135, 2136, 2138] -Triangle: [2138, 2139, 2135] -Triangle: [2128, 2250, 2118] -Triangle: [2118, 2119, 2128] -Triangle: [2119, 2120, 2127] -Triangle: [2127, 2128, 2119] -Triangle: [2250, 2107, 2117] -Triangle: [2117, 2118, 2250] -Triangle: [2107, 2139, 2116] -Triangle: [2116, 2117, 2107] -Triangle: [2139, 2138, 2115] -Triangle: [2115, 2116, 2139] -Triangle: [2138, 2137, 2114] -Triangle: [2114, 2115, 2138] -Triangle: [2108, 2109, 2122] -Triangle: [2122, 2121, 2108] -Triangle: [2137, 2127, 2120] -Triangle: [2120, 2114, 2137] -Triangle: [2108, 2106, 2110] -Triangle: [2110, 2109, 2108] -Triangle: [2106, 2107, 2111] -Triangle: [2111, 2110, 2106] -Triangle: [2109, 2110, 2113] -Triangle: [2113, 2112, 2109] -Triangle: [2117, 2116, 2115] -Triangle: [2115, 2114, 2117] -Triangle: [2120, 2118, 2117] -Triangle: [2117, 2114, 2120] -Triangle: [2123, 2125, 2124] -Triangle: [2126, 2128, 2127] -Triangle: [2129, 2130, 2123] -Triangle: [2123, 2124, 2129] -Triangle: [2129, 2124, 2126] -Triangle: [2126, 2105, 2129] -Triangle: [2105, 2126, 2127] -Triangle: [2127, 2137, 2105] -Triangle: [2124, 2125, 2128] -Triangle: [2128, 2126, 2124] -Triangle: [2121, 2134, 2131] -Triangle: [2131, 2108, 2121] -Triangle: [2129, 2132, 2133] -Triangle: [2133, 2130, 2129] -Triangle: [2108, 2131, 2135] -Triangle: [2135, 2106, 2108] -Triangle: [2105, 2136, 2132] -Triangle: [2132, 2129, 2105] -Triangle: [2106, 2135, 2139] -Triangle: [2139, 2107, 2106] -Triangle: [2137, 2138, 2136] -Triangle: [2136, 2105, 2137] -Triangle: [2140, 2141, 2142] -Triangle: [2171, 2142, 2141] -Triangle: [2141, 2252, 2171] -Triangle: [2142, 2171, 2170] -Triangle: [2170, 2140, 2142] -Triangle: [2252, 2141, 2143] -Triangle: [2143, 2151, 2252] -Triangle: [2151, 2143, 2144] -Triangle: [2144, 2180, 2151] -Triangle: [2180, 2144, 2145] -Triangle: [2145, 2181, 2180] -Triangle: [2181, 2145, 2146] -Triangle: [2146, 2148, 2181] -Triangle: [2148, 2146, 2140] -Triangle: [2140, 2170, 2148] -Triangle: [2143, 2146, 2145] -Triangle: [2145, 2144, 2143] -Triangle: [2140, 2146, 2143] -Triangle: [2143, 2141, 2140] -Triangle: [2165, 2155, 2152] -Triangle: [2153, 2156, 2154] -Triangle: [2163, 2162, 2161] -Triangle: [2177, 2174, 2175] -Triangle: [2175, 2176, 2177] -Triangle: [2174, 2178, 2179] -Triangle: [2179, 2175, 2174] -Triangle: [2178, 2180, 2181] -Triangle: [2181, 2179, 2178] -Triangle: [2168, 2251, 2182] -Triangle: [2182, 2183, 2168] -Triangle: [2162, 2163, 2184] -Triangle: [2184, 2183, 2162] -Triangle: [2164, 2185, 2182] -Triangle: [2182, 2251, 2164] -Triangle: [2177, 2186, 2185] -Triangle: [2185, 2164, 2177] -Triangle: [2176, 2187, 2186] -Triangle: [2186, 2177, 2176] -Triangle: [2176, 2173, 2188] -Triangle: [2188, 2187, 2176] -Triangle: [2149, 2164, 2165] -Triangle: [2165, 2152, 2149] -Triangle: [2166, 2184, 2188] -Triangle: [2188, 2173, 2166] -Triangle: [2149, 2152, 2153] -Triangle: [2153, 2150, 2149] -Triangle: [2150, 2153, 2154] -Triangle: [2154, 2151, 2150] -Triangle: [2152, 2155, 2156] -Triangle: [2156, 2153, 2152] -Triangle: [2160, 2159, 2158] -Triangle: [2158, 2157, 2160] -Triangle: [2163, 2161, 2160] -Triangle: [2160, 2157, 2163] -Triangle: [2166, 2167, 2168] -Triangle: [2169, 2170, 2171] -Triangle: [2172, 2167, 2166] -Triangle: [2166, 2173, 2172] -Triangle: [2172, 2147, 2169] -Triangle: [2169, 2167, 2172] -Triangle: [2147, 2148, 2170] -Triangle: [2170, 2169, 2147] -Triangle: [2167, 2169, 2171] -Triangle: [2171, 2168, 2167] -Triangle: [2164, 2149, 2174] -Triangle: [2174, 2177, 2164] -Triangle: [2172, 2173, 2176] -Triangle: [2176, 2175, 2172] -Triangle: [2149, 2150, 2178] -Triangle: [2178, 2174, 2149] -Triangle: [2147, 2172, 2175] -Triangle: [2175, 2179, 2147] -Triangle: [2150, 2151, 2180] -Triangle: [2180, 2178, 2150] -Triangle: [2148, 2147, 2179] -Triangle: [2179, 2181, 2148] -Triangle: [2161, 2162, 2183] -Triangle: [2183, 2182, 2161] -Triangle: [2166, 2168, 2183] -Triangle: [2183, 2184, 2166] -Triangle: [2185, 2160, 2161] -Triangle: [2161, 2182, 2185] -Triangle: [2159, 2160, 2185] -Triangle: [2185, 2186, 2159] -Triangle: [2158, 2159, 2186] -Triangle: [2186, 2187, 2158] -Triangle: [2188, 2157, 2158] -Triangle: [2158, 2187, 2188] -Triangle: [2184, 2163, 2157] -Triangle: [2157, 2188, 2184] -Triangle: [2189, 2190, 2191] -Triangle: [2125, 2192, 2193] -Triangle: [2193, 2249, 2125] -Triangle: [2191, 2192, 2194] -Triangle: [2194, 2189, 2191] -Triangle: [2121, 2249, 2193] -Triangle: [2193, 2195, 2121] -Triangle: [2134, 2121, 2195] -Triangle: [2195, 2196, 2134] -Triangle: [2133, 2134, 2196] -Triangle: [2196, 2197, 2133] -Triangle: [2133, 2197, 2198] -Triangle: [2198, 2130, 2133] -Triangle: [2123, 2130, 2198] -Triangle: [2198, 2194, 2123] -Triangle: [2199, 2200, 2201] -Triangle: [2201, 2202, 2199] -Triangle: [2189, 2200, 2199] -Triangle: [2199, 2190, 2189] -Triangle: [2190, 2193, 2192] -Triangle: [2192, 2191, 2190] -Triangle: [2123, 2194, 2192] -Triangle: [2192, 2125, 2123] -Triangle: [2195, 2193, 2190] -Triangle: [2190, 2199, 2195] -Triangle: [2202, 2196, 2195] -Triangle: [2195, 2199, 2202] -Triangle: [2201, 2197, 2196] -Triangle: [2196, 2202, 2201] -Triangle: [2198, 2197, 2201] -Triangle: [2201, 2200, 2198] -Triangle: [2194, 2198, 2200] -Triangle: [2200, 2189, 2194] -Triangle: [2215, 2255, 2208] -Triangle: [2204, 2207, 2203] -Triangle: [2208, 2255, 2203] -Triangle: [2203, 2207, 2208] -Triangle: [2207, 2204, 2205] -Triangle: [2205, 2206, 2207] -Triangle: [2223, 2224, 2225] -Triangle: [2225, 2222, 2223] -Triangle: [2227, 2225, 2224] -Triangle: [2224, 2226, 2227] -Triangle: [2229, 2223, 2222] -Triangle: [2222, 2228, 2229] -Triangle: [2231, 2229, 2228] -Triangle: [2228, 2230, 2231] -Triangle: [2238, 2231, 2230] -Triangle: [2240, 2238, 2232] -Triangle: [2232, 2236, 2240] -Triangle: [2234, 2239, 2240] -Triangle: [2240, 2236, 2234] -Triangle: [2216, 2213, 2218] -Triangle: [2209, 2214, 2212] -Triangle: [2213, 2212, 2214] -Triangle: [2214, 2218, 2213] -Triangle: [2212, 2211, 2210] -Triangle: [2210, 2209, 2212] -Triangle: [2216, 2218, 2217] -Triangle: [2217, 2218, 2219] -Triangle: [2215, 2220, 2255] -Triangle: [2220, 2221, 2255] -Triangle: [2205, 2204, 2224] -Triangle: [2224, 2223, 2205] -Triangle: [2209, 2210, 2222] -Triangle: [2222, 2225, 2209] -Triangle: [2214, 2209, 2225] -Triangle: [2225, 2227, 2214] -Triangle: [2204, 2203, 2226] -Triangle: [2226, 2224, 2204] -Triangle: [2206, 2205, 2223] -Triangle: [2223, 2229, 2206] -Triangle: [2210, 2211, 2228] -Triangle: [2228, 2222, 2210] -Triangle: [2207, 2206, 2229] -Triangle: [2229, 2231, 2207] -Triangle: [2211, 2212, 2230] -Triangle: [2230, 2228, 2211] -Triangle: [2208, 2207, 2231] -Triangle: [2231, 2233, 2208] -Triangle: [2212, 2213, 2232] -Triangle: [2232, 2230, 2212] -Triangle: [2215, 2208, 2233] -Triangle: [2233, 2237, 2215] -Triangle: [2213, 2216, 2236] -Triangle: [2236, 2232, 2213] -Triangle: [2248, 2215, 2237] -Triangle: [2237, 2235, 2248] -Triangle: [2236, 2216, 2247] -Triangle: [2247, 2234, 2236] -Triangle: [2237, 2233, 2238] -Triangle: [2238, 2240, 2237] -Triangle: [2235, 2237, 2240] -Triangle: [2240, 2239, 2235] -Triangle: [2230, 2232, 2238] -Triangle: [2238, 2233, 2231] -Triangle: [2243, 2253, 2245] -Triangle: [2245, 2244, 2243] -Triangle: [2246, 2245, 2253] -Triangle: [2253, 2254, 2246] -Triangle: [2245, 2246, 2241] -Triangle: [2254, 2253, 2242] -Triangle: [2102, 2097, 2258] -Triangle: [2258, 2263, 2102] -Triangle: [2093, 2101, 2262] -Triangle: [2262, 2259, 2093] -Triangle: [2104, 2098, 2257] -Triangle: [2257, 2265, 2104] -Triangle: [2094, 2103, 2264] -Triangle: [2264, 2256, 2094] -Triangle: [2100, 2099, 2261] -Triangle: [2098, 2102, 2263] -Triangle: [2263, 2257, 2098] -Triangle: [2101, 2094, 2256] -Triangle: [2256, 2262, 2101] -Triangle: [2099, 2104, 2265] -Triangle: [2265, 2261, 2099] -Triangle: [2103, 2095, 2260] -Triangle: [2260, 2264, 2103] -Triangle: [2260, 2095, 2096] -Triangle: [2274, 2275, 2270] -Triangle: [2270, 2266, 2274] -Triangle: [2276, 2277, 2271] -Triangle: [2271, 2267, 2276] -Triangle: [2268, 2269, 2273] -Triangle: [2273, 2272, 2268] -Triangle: [2267, 2271, 2275] -Triangle: [2275, 2274, 2267] -Triangle: [2268, 2272, 2277] -Triangle: [2277, 2276, 2268] -Triangle: [2295, 2282, 2285] -Triangle: [2283, 2284, 2286] -Triangle: [2293, 2292, 2291] -Triangle: [2307, 2306, 2305] -Triangle: [2305, 2304, 2307] -Triangle: [2304, 2305, 2309] -Triangle: [2309, 2308, 2304] -Triangle: [2308, 2309, 2311] -Triangle: [2311, 2312, 2308] -Triangle: [2301, 2286, 2291] -Triangle: [2291, 2292, 2301] -Triangle: [2292, 2293, 2300] -Triangle: [2300, 2301, 2292] -Triangle: [2286, 2280, 2290] -Triangle: [2290, 2291, 2286] -Triangle: [2280, 2312, 2289] -Triangle: [2289, 2290, 2280] -Triangle: [2312, 2311, 2288] -Triangle: [2288, 2289, 2312] -Triangle: [2311, 2310, 2287] -Triangle: [2287, 2288, 2311] -Triangle: [2281, 2282, 2295] -Triangle: [2295, 2294, 2281] -Triangle: [2310, 2300, 2293] -Triangle: [2293, 2287, 2310] -Triangle: [2281, 2279, 2283] -Triangle: [2283, 2282, 2281] -Triangle: [2279, 2280, 2284] -Triangle: [2284, 2283, 2279] -Triangle: [2282, 2283, 2286] -Triangle: [2286, 2285, 2282] -Triangle: [2290, 2289, 2288] -Triangle: [2288, 2287, 2290] -Triangle: [2293, 2291, 2290] -Triangle: [2290, 2287, 2293] -Triangle: [2296, 2298, 2297] -Triangle: [2299, 2301, 2300] -Triangle: [2302, 2303, 2296] -Triangle: [2296, 2297, 2302] -Triangle: [2302, 2297, 2299] -Triangle: [2299, 2278, 2302] -Triangle: [2278, 2299, 2300] -Triangle: [2300, 2310, 2278] -Triangle: [2297, 2298, 2301] -Triangle: [2301, 2299, 2297] -Triangle: [2294, 2307, 2304] -Triangle: [2304, 2281, 2294] -Triangle: [2302, 2305, 2306] -Triangle: [2306, 2303, 2302] -Triangle: [2281, 2304, 2308] -Triangle: [2308, 2279, 2281] -Triangle: [2278, 2309, 2305] -Triangle: [2305, 2302, 2278] -Triangle: [2279, 2308, 2312] -Triangle: [2312, 2280, 2279] -Triangle: [2310, 2311, 2309] -Triangle: [2309, 2278, 2310] -Triangle: [2313, 2314, 2315] -Triangle: [2344, 2315, 2314] -Triangle: [2314, 2329, 2344] -Triangle: [2315, 2344, 2343] -Triangle: [2343, 2313, 2315] -Triangle: [2329, 2314, 2316] -Triangle: [2316, 2324, 2329] -Triangle: [2324, 2316, 2317] -Triangle: [2317, 2353, 2324] -Triangle: [2353, 2317, 2318] -Triangle: [2318, 2354, 2353] -Triangle: [2354, 2318, 2319] -Triangle: [2319, 2321, 2354] -Triangle: [2321, 2319, 2313] -Triangle: [2313, 2343, 2321] -Triangle: [2316, 2319, 2318] -Triangle: [2318, 2317, 2316] -Triangle: [2313, 2319, 2316] -Triangle: [2316, 2314, 2313] -Triangle: [2338, 2328, 2325] -Triangle: [2326, 2329, 2327] -Triangle: [2336, 2335, 2334] -Triangle: [2350, 2347, 2348] -Triangle: [2348, 2349, 2350] -Triangle: [2347, 2351, 2352] -Triangle: [2352, 2348, 2347] -Triangle: [2351, 2353, 2354] -Triangle: [2354, 2352, 2351] -Triangle: [2341, 2328, 2355] -Triangle: [2355, 2356, 2341] -Triangle: [2335, 2336, 2357] -Triangle: [2357, 2356, 2335] -Triangle: [2337, 2358, 2355] -Triangle: [2355, 2328, 2337] -Triangle: [2350, 2359, 2358] -Triangle: [2358, 2337, 2350] -Triangle: [2349, 2360, 2359] -Triangle: [2359, 2350, 2349] -Triangle: [2349, 2346, 2361] -Triangle: [2361, 2360, 2349] -Triangle: [2322, 2337, 2338] -Triangle: [2338, 2325, 2322] -Triangle: [2339, 2357, 2361] -Triangle: [2361, 2346, 2339] -Triangle: [2322, 2325, 2326] -Triangle: [2326, 2323, 2322] -Triangle: [2323, 2326, 2327] -Triangle: [2327, 2324, 2323] -Triangle: [2325, 2328, 2329] -Triangle: [2329, 2326, 2325] -Triangle: [2333, 2332, 2331] -Triangle: [2331, 2330, 2333] -Triangle: [2336, 2334, 2333] -Triangle: [2333, 2330, 2336] -Triangle: [2339, 2340, 2341] -Triangle: [2342, 2343, 2344] -Triangle: [2345, 2340, 2339] -Triangle: [2339, 2346, 2345] -Triangle: [2345, 2320, 2342] -Triangle: [2342, 2340, 2345] -Triangle: [2320, 2321, 2343] -Triangle: [2343, 2342, 2320] -Triangle: [2340, 2342, 2344] -Triangle: [2344, 2341, 2340] -Triangle: [2337, 2322, 2347] -Triangle: [2347, 2350, 2337] -Triangle: [2345, 2346, 2349] -Triangle: [2349, 2348, 2345] -Triangle: [2322, 2323, 2351] -Triangle: [2351, 2347, 2322] -Triangle: [2320, 2345, 2348] -Triangle: [2348, 2352, 2320] -Triangle: [2323, 2324, 2353] -Triangle: [2353, 2351, 2323] -Triangle: [2321, 2320, 2352] -Triangle: [2352, 2354, 2321] -Triangle: [2334, 2335, 2356] -Triangle: [2356, 2355, 2334] -Triangle: [2339, 2341, 2356] -Triangle: [2356, 2357, 2339] -Triangle: [2358, 2333, 2334] -Triangle: [2334, 2355, 2358] -Triangle: [2332, 2333, 2358] -Triangle: [2358, 2359, 2332] -Triangle: [2331, 2332, 2359] -Triangle: [2359, 2360, 2331] -Triangle: [2361, 2330, 2331] -Triangle: [2331, 2360, 2361] -Triangle: [2357, 2336, 2330] -Triangle: [2330, 2361, 2357] -Triangle: [2362, 2363, 2364] -Triangle: [2298, 2365, 2366] -Triangle: [2366, 2285, 2298] -Triangle: [2364, 2365, 2367] -Triangle: [2367, 2362, 2364] -Triangle: [2294, 2285, 2366] -Triangle: [2366, 2368, 2294] -Triangle: [2307, 2294, 2368] -Triangle: [2368, 2369, 2307] -Triangle: [2306, 2307, 2369] -Triangle: [2369, 2370, 2306] -Triangle: [2306, 2370, 2371] -Triangle: [2371, 2303, 2306] -Triangle: [2296, 2303, 2371] -Triangle: [2371, 2367, 2296] -Triangle: [2372, 2373, 2374] -Triangle: [2374, 2375, 2372] -Triangle: [2362, 2373, 2372] -Triangle: [2372, 2363, 2362] -Triangle: [2363, 2366, 2365] -Triangle: [2365, 2364, 2363] -Triangle: [2296, 2367, 2365] -Triangle: [2365, 2298, 2296] -Triangle: [2368, 2366, 2363] -Triangle: [2363, 2372, 2368] -Triangle: [2375, 2369, 2368] -Triangle: [2368, 2372, 2375] -Triangle: [2374, 2370, 2369] -Triangle: [2369, 2375, 2374] -Triangle: [2371, 2370, 2374] -Triangle: [2374, 2373, 2371] -Triangle: [2367, 2371, 2373] -Triangle: [2373, 2362, 2367] -Triangle: [2388, 2418, 2381] -Triangle: [2377, 2380, 2376] -Triangle: [2381, 2418, 2376] -Triangle: [2376, 2380, 2381] -Triangle: [2380, 2377, 2378] -Triangle: [2378, 2379, 2380] -Triangle: [2396, 2397, 2398] -Triangle: [2398, 2395, 2396] -Triangle: [2400, 2398, 2397] -Triangle: [2397, 2399, 2400] -Triangle: [2402, 2396, 2395] -Triangle: [2395, 2401, 2402] -Triangle: [2404, 2402, 2401] -Triangle: [2401, 2403, 2404] -Triangle: [2411, 2404, 2403] -Triangle: [2413, 2411, 2405] -Triangle: [2405, 2409, 2413] -Triangle: [2407, 2412, 2413] -Triangle: [2413, 2409, 2407] -Triangle: [2389, 2386, 2391] -Triangle: [2382, 2387, 2385] -Triangle: [2386, 2385, 2387] -Triangle: [2387, 2391, 2386] -Triangle: [2385, 2384, 2383] -Triangle: [2383, 2382, 2385] -Triangle: [2389, 2391, 2390] -Triangle: [2390, 2391, 2392] -Triangle: [2388, 2393, 2418] -Triangle: [2393, 2394, 2418] -Triangle: [2378, 2377, 2397] -Triangle: [2397, 2396, 2378] -Triangle: [2382, 2383, 2395] -Triangle: [2395, 2398, 2382] -Triangle: [2387, 2382, 2398] -Triangle: [2398, 2400, 2387] -Triangle: [2377, 2376, 2399] -Triangle: [2399, 2397, 2377] -Triangle: [2379, 2378, 2396] -Triangle: [2396, 2402, 2379] -Triangle: [2383, 2384, 2401] -Triangle: [2401, 2395, 2383] -Triangle: [2380, 2379, 2402] -Triangle: [2402, 2404, 2380] -Triangle: [2384, 2385, 2403] -Triangle: [2403, 2401, 2384] -Triangle: [2381, 2380, 2404] -Triangle: [2404, 2406, 2381] -Triangle: [2385, 2386, 2405] -Triangle: [2405, 2403, 2385] -Triangle: [2388, 2381, 2406] -Triangle: [2406, 2410, 2388] -Triangle: [2386, 2389, 2409] -Triangle: [2409, 2405, 2386] -Triangle: [2270, 2388, 2410] -Triangle: [2410, 2408, 2270] -Triangle: [2409, 2389, 2266] -Triangle: [2266, 2407, 2409] -Triangle: [2410, 2406, 2411] -Triangle: [2411, 2413, 2410] -Triangle: [2408, 2410, 2413] -Triangle: [2413, 2412, 2408] -Triangle: [2403, 2405, 2411] -Triangle: [2411, 2406, 2404] -Triangle: [2416, 2391, 2418] -Triangle: [2418, 2417, 2416] -Triangle: [2419, 2418, 2391] -Triangle: [2391, 2400, 2419] -Triangle: [2418, 2419, 2414] -Triangle: [2400, 2391, 2415] -Triangle: [2420, 2429, 2428] -Triangle: [2429, 2420, 2421] -Triangle: [2422, 2420, 2428] -Triangle: [2420, 2422, 2423] -Triangle: [2422, 2424, 2425] -Triangle: [2429, 2430, 2428] -Triangle: [2431, 2427, 2426] -Triangle: [2432, 2431, 2430] -Triangle: [2430, 2429, 2432] -Triangle: [2424, 2426, 2427] -Triangle: [2449, 2433, 2434] -Triangle: [2433, 2449, 2448] -Triangle: [2450, 2434, 2435] -Triangle: [2434, 2450, 2449] -Triangle: [2427, 2425, 2424] -Triangle: [2436, 2433, 2448] -Triangle: [2435, 2451, 2450] -Triangle: [2437, 2434, 2433] -Triangle: [2433, 2436, 2437] -Triangle: [2430, 2426, 2428] -Triangle: [2438, 2435, 2434] -Triangle: [2434, 2437, 2438] -Triangle: [2436, 2439, 2440] -Triangle: [2439, 2436, 2448] -Triangle: [2426, 2430, 2431] -Triangle: [2421, 2432, 2429] -Triangle: [2424, 2422, 2428] -Triangle: [2423, 2421, 2420] -Triangle: [2426, 2424, 2428] -Triangle: [2425, 2423, 2422] -Triangle: [2440, 2437, 2436] -Triangle: [2437, 2440, 2441] -Triangle: [2443, 2440, 2439] -Triangle: [2439, 2442, 2443] -Triangle: [2442, 2439, 2448] -Triangle: [2440, 2443, 2444] -Triangle: [2449, 2445, 2448] -Triangle: [2447, 2444, 2443] -Triangle: [2442, 2445, 2446] -Triangle: [2450, 2446, 2445] -Triangle: [2445, 2449, 2450] -Triangle: [2446, 2443, 2442] -Triangle: [2451, 2447, 2446] -Triangle: [2446, 2450, 2451] -Triangle: [2443, 2446, 2447] -Triangle: [2441, 2438, 2437] -Triangle: [2445, 2442, 2448] -Triangle: [2444, 2441, 2440] -Triangle: [2454, 2455, 2453] -Triangle: [2453, 2452, 2454] -Triangle: [2457, 2456, 2455] -Triangle: [2455, 2454, 2457] -Triangle: [2458, 2460, 2463] -Triangle: [2463, 2459, 2458] -Triangle: [2463, 2460, 2462] -Triangle: [2462, 2461, 2463] -Triangle: [2466, 2465, 2467] -Triangle: [2467, 2464, 2466] -Triangle: [2465, 2469, 2470] -Triangle: [2470, 2467, 2465] -Triangle: [2466, 2464, 2471] -Triangle: [2471, 2468, 2466] -Triangle: [2472, 2473, 2474] -Triangle: [2474, 2475, 2472] -Triangle: [2478, 2479, 2477] -Triangle: [2477, 2476, 2478] -Triangle: [2481, 2480, 2479] -Triangle: [2479, 2478, 2481] -Triangle: [2481, 2483, 2482] -Triangle: [2482, 2480, 2481] -Triangle: [2484, 2486, 2489] -Triangle: [2489, 2485, 2484] -Triangle: [2489, 2486, 2488] -Triangle: [2488, 2487, 2489] -Triangle: [2492, 2491, 2493] -Triangle: [2493, 2490, 2492] -Triangle: [2491, 2495, 2496] -Triangle: [2496, 2493, 2491] -Triangle: [2492, 2490, 2497] -Triangle: [2497, 2494, 2492] -Triangle: [2498, 2499, 2500] -Triangle: [2500, 2501, 2498] -Triangle: [2504, 2502, 2503] -Triangle: [2503, 2505, 2504] -Triangle: [2507, 2504, 2505] -Triangle: [2505, 2506, 2507] -Triangle: [2507, 2506, 2508] -Triangle: [2508, 2509, 2507] -Triangle: [2510, 2511, 2515] -Triangle: [2515, 2512, 2510] -Triangle: [2515, 2513, 2514] -Triangle: [2514, 2512, 2515] -Triangle: [2518, 2519, 2517] -Triangle: [2517, 2516, 2518] -Triangle: [2521, 2520, 2519] -Triangle: [2519, 2518, 2521] -Triangle: [2522, 2524, 2527] -Triangle: [2527, 2523, 2522] -Triangle: [2527, 2524, 2526] -Triangle: [2526, 2525, 2527] -Triangle: [2530, 2529, 2531] -Triangle: [2531, 2528, 2530] -Triangle: [2529, 2533, 2534] -Triangle: [2534, 2531, 2529] -Triangle: [2530, 2528, 2535] -Triangle: [2535, 2532, 2530] -Triangle: [2536, 2537, 2538] -Triangle: [2538, 2539, 2536] -Triangle: [2542, 2543, 2541] -Triangle: [2541, 2540, 2542] -Triangle: [2545, 2544, 2543] -Triangle: [2543, 2542, 2545] -Triangle: [2545, 2547, 2546] -Triangle: [2546, 2544, 2545] -Triangle: [2548, 2550, 2553] -Triangle: [2553, 2549, 2548] -Triangle: [2553, 2550, 2552] -Triangle: [2552, 2551, 2553] -Triangle: [2556, 2555, 2557] -Triangle: [2557, 2554, 2556] -Triangle: [2555, 2559, 2560] -Triangle: [2560, 2557, 2555] -Triangle: [2556, 2554, 2561] -Triangle: [2561, 2558, 2556] -Triangle: [2562, 2563, 2564] -Triangle: [2564, 2565, 2562] -Triangle: [2568, 2566, 2567] -Triangle: [2567, 2569, 2568] -Triangle: [2571, 2568, 2569] -Triangle: [2569, 2570, 2571] -Triangle: [2571, 2570, 2572] -Triangle: [2572, 2573, 2571] -Triangle: [2574, 2575, 2579] -Triangle: [2579, 2576, 2574] -Triangle: [2579, 2577, 2578] -Triangle: [2578, 2576, 2579] -Triangle: [2582, 2583, 2581] -Triangle: [2581, 2580, 2582] -Triangle: [2585, 2584, 2583] -Triangle: [2583, 2582, 2585] -Triangle: [2586, 2588, 2591] -Triangle: [2591, 2587, 2586] -Triangle: [2591, 2588, 2590] -Triangle: [2590, 2589, 2591] -Triangle: [2594, 2593, 2595] -Triangle: [2595, 2592, 2594] -Triangle: [2593, 2597, 2598] -Triangle: [2598, 2595, 2593] -Triangle: [2594, 2592, 2599] -Triangle: [2599, 2596, 2594] -Triangle: [2600, 2601, 2602] -Triangle: [2602, 2603, 2600] -Triangle: [2606, 2607, 2605] -Triangle: [2605, 2604, 2606] -Triangle: [2609, 2608, 2607] -Triangle: [2607, 2606, 2609] -Triangle: [2609, 2611, 2610] -Triangle: [2610, 2608, 2609] -Triangle: [2612, 2614, 2617] -Triangle: [2617, 2613, 2612] -Triangle: [2617, 2614, 2616] -Triangle: [2616, 2615, 2617] -Triangle: [2620, 2619, 2621] -Triangle: [2621, 2618, 2620] -Triangle: [2619, 2623, 2624] -Triangle: [2624, 2621, 2619] -Triangle: [2620, 2618, 2625] -Triangle: [2625, 2622, 2620] -Triangle: [2626, 2627, 2628] -Triangle: [2628, 2629, 2626] -Triangle: [2632, 2630, 2631] -Triangle: [2631, 2633, 2632] -Triangle: [2635, 2632, 2633] -Triangle: [2633, 2634, 2635] -Triangle: [2635, 2634, 2636] -Triangle: [2636, 2637, 2635] -Triangle: [2638, 2639, 2643] -Triangle: [2643, 2640, 2638] -Triangle: [2643, 2641, 2642] -Triangle: [2642, 2640, 2643] -Triangle: [2648, 2644, 2646] -Triangle: [2646, 2649, 2648] -Triangle: [2649, 2646, 2645] -Triangle: [2645, 2650, 2649] -Triangle: [2650, 2645, 2647] -Triangle: [2647, 2651, 2650] -Triangle: [2651, 2647, 2644] -Triangle: [2644, 2648, 2651] -Triangle: [2648, 2649, 2650] -Triangle: [2650, 2651, 2648] -Triangle: [2656, 2652, 2654] -Triangle: [2654, 2657, 2656] -Triangle: [2657, 2654, 2653] -Triangle: [2653, 2658, 2657] -Triangle: [2658, 2653, 2655] -Triangle: [2655, 2659, 2658] -Triangle: [2659, 2655, 2652] -Triangle: [2652, 2656, 2659] -Triangle: [2656, 2657, 2658] -Triangle: [2658, 2659, 2656] diff --git a/mesh_armature_and_animation_data.txt b/mesh_armature_and_animation_data.txt deleted file mode 100644 index 8e4de21..0000000 --- a/mesh_armature_and_animation_data.txt +++ /dev/null @@ -1,2234 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 3 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.558800236181332 - - - - Parent: None - Children: ['Bone.001'] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8454971440741952 - - - - Parent: Bone - Children: ['Bone.002'] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7277336463866313 - - - - Parent: Bone.001 - Children: [] -===Vertices: 300 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -===Triangles: 572 -Triangle: [7, 20, 19] -Triangle: [4, 17, 16] -Triangle: [11, 12, 23] -Triangle: [1, 14, 13] -Triangle: [8, 21, 20] -Triangle: [5, 18, 17] -Triangle: [2, 15, 14] -Triangle: [9, 22, 21] -Triangle: [6, 19, 18] -Triangle: [3, 16, 15] -Triangle: [10, 23, 22] -Triangle: [0, 13, 12] -Triangle: [163, 270, 63] -Triangle: [183, 284, 103] -Triangle: [243, 278, 143] -Triangle: [263, 272, 163] -Triangle: [24, 266, 223] -Triangle: [64, 280, 243] -Triangle: [104, 274, 263] -Triangle: [223, 265, 184] -Triangle: [63, 268, 24] -Triangle: [103, 282, 64] -Triangle: [143, 276, 104] -Triangle: [18, 244, 17] -Triangle: [123, 245, 244] -Triangle: [122, 246, 245] -Triangle: [121, 247, 246] -Triangle: [120, 248, 247] -Triangle: [119, 249, 248] -Triangle: [118, 250, 249] -Triangle: [117, 251, 250] -Triangle: [116, 252, 251] -Triangle: [115, 253, 252] -Triangle: [114, 254, 253] -Triangle: [113, 255, 254] -Triangle: [112, 256, 255] -Triangle: [111, 257, 256] -Triangle: [110, 258, 257] -Triangle: [109, 259, 258] -Triangle: [108, 260, 259] -Triangle: [107, 261, 260] -Triangle: [106, 262, 261] -Triangle: [105, 263, 262] -Triangle: [21, 224, 20] -Triangle: [83, 225, 224] -Triangle: [82, 226, 225] -Triangle: [81, 227, 226] -Triangle: [80, 228, 227] -Triangle: [79, 229, 228] -Triangle: [78, 230, 229] -Triangle: [77, 231, 230] -Triangle: [76, 232, 231] -Triangle: [75, 233, 232] -Triangle: [74, 234, 233] -Triangle: [73, 235, 234] -Triangle: [72, 236, 235] -Triangle: [71, 237, 236] -Triangle: [70, 238, 237] -Triangle: [69, 239, 238] -Triangle: [68, 240, 239] -Triangle: [67, 241, 240] -Triangle: [66, 242, 241] -Triangle: [65, 243, 242] -Triangle: [14, 204, 13] -Triangle: [43, 205, 204] -Triangle: [42, 206, 205] -Triangle: [41, 207, 206] -Triangle: [40, 208, 207] -Triangle: [39, 209, 208] -Triangle: [38, 210, 209] -Triangle: [37, 211, 210] -Triangle: [36, 212, 211] -Triangle: [35, 213, 212] -Triangle: [34, 214, 213] -Triangle: [33, 215, 214] -Triangle: [32, 216, 215] -Triangle: [31, 217, 216] -Triangle: [30, 218, 217] -Triangle: [29, 219, 218] -Triangle: [28, 220, 219] -Triangle: [27, 221, 220] -Triangle: [26, 222, 221] -Triangle: [25, 223, 222] -Triangle: [12, 164, 23] -Triangle: [203, 165, 164] -Triangle: [202, 166, 165] -Triangle: [201, 167, 166] -Triangle: [200, 168, 167] -Triangle: [199, 169, 168] -Triangle: [198, 170, 169] -Triangle: [197, 171, 170] -Triangle: [196, 172, 171] -Triangle: [195, 173, 172] -Triangle: [194, 174, 173] -Triangle: [193, 175, 174] -Triangle: [192, 176, 175] -Triangle: [191, 177, 176] -Triangle: [190, 178, 177] -Triangle: [189, 179, 178] -Triangle: [188, 180, 179] -Triangle: [187, 181, 180] -Triangle: [186, 182, 181] -Triangle: [185, 183, 182] -Triangle: [17, 144, 16] -Triangle: [244, 145, 144] -Triangle: [245, 146, 145] -Triangle: [246, 147, 146] -Triangle: [247, 148, 147] -Triangle: [248, 149, 148] -Triangle: [249, 150, 149] -Triangle: [250, 151, 150] -Triangle: [251, 152, 151] -Triangle: [252, 153, 152] -Triangle: [253, 154, 153] -Triangle: [254, 155, 154] -Triangle: [255, 156, 155] -Triangle: [256, 157, 156] -Triangle: [257, 158, 157] -Triangle: [258, 159, 158] -Triangle: [259, 160, 159] -Triangle: [260, 161, 160] -Triangle: [261, 162, 161] -Triangle: [262, 163, 162] -Triangle: [20, 124, 19] -Triangle: [224, 125, 124] -Triangle: [225, 126, 125] -Triangle: [226, 127, 126] -Triangle: [227, 128, 127] -Triangle: [228, 129, 128] -Triangle: [229, 130, 129] -Triangle: [230, 131, 130] -Triangle: [231, 132, 131] -Triangle: [232, 133, 132] -Triangle: [233, 134, 133] -Triangle: [234, 135, 134] -Triangle: [235, 136, 135] -Triangle: [236, 137, 136] -Triangle: [237, 138, 137] -Triangle: [238, 139, 138] -Triangle: [239, 140, 139] -Triangle: [240, 141, 140] -Triangle: [241, 142, 141] -Triangle: [242, 143, 142] -Triangle: [13, 203, 12] -Triangle: [203, 205, 202] -Triangle: [202, 206, 201] -Triangle: [201, 207, 200] -Triangle: [200, 208, 199] -Triangle: [199, 209, 198] -Triangle: [198, 210, 197] -Triangle: [197, 211, 196] -Triangle: [196, 212, 195] -Triangle: [195, 213, 194] -Triangle: [194, 214, 193] -Triangle: [193, 215, 192] -Triangle: [192, 216, 191] -Triangle: [191, 217, 190] -Triangle: [190, 218, 189] -Triangle: [189, 219, 188] -Triangle: [188, 220, 187] -Triangle: [187, 221, 186] -Triangle: [186, 222, 185] -Triangle: [185, 223, 184] -Triangle: [23, 84, 22] -Triangle: [164, 85, 84] -Triangle: [165, 86, 85] -Triangle: [166, 87, 86] -Triangle: [167, 88, 87] -Triangle: [168, 89, 88] -Triangle: [169, 90, 89] -Triangle: [170, 91, 90] -Triangle: [171, 92, 91] -Triangle: [172, 93, 92] -Triangle: [173, 94, 93] -Triangle: [174, 95, 94] -Triangle: [175, 96, 95] -Triangle: [176, 97, 96] -Triangle: [177, 98, 97] -Triangle: [178, 99, 98] -Triangle: [179, 100, 99] -Triangle: [180, 101, 100] -Triangle: [181, 102, 101] -Triangle: [182, 103, 102] -Triangle: [16, 44, 15] -Triangle: [144, 45, 44] -Triangle: [145, 46, 45] -Triangle: [146, 47, 46] -Triangle: [147, 48, 47] -Triangle: [148, 49, 48] -Triangle: [149, 50, 49] -Triangle: [150, 51, 50] -Triangle: [151, 52, 51] -Triangle: [152, 53, 52] -Triangle: [153, 54, 53] -Triangle: [154, 55, 54] -Triangle: [155, 56, 55] -Triangle: [156, 57, 56] -Triangle: [157, 58, 57] -Triangle: [158, 59, 58] -Triangle: [159, 60, 59] -Triangle: [160, 61, 60] -Triangle: [161, 62, 61] -Triangle: [162, 63, 62] -Triangle: [19, 123, 18] -Triangle: [123, 125, 122] -Triangle: [122, 126, 121] -Triangle: [121, 127, 120] -Triangle: [120, 128, 119] -Triangle: [119, 129, 118] -Triangle: [118, 130, 117] -Triangle: [117, 131, 116] -Triangle: [116, 132, 115] -Triangle: [115, 133, 114] -Triangle: [114, 134, 113] -Triangle: [113, 135, 112] -Triangle: [112, 136, 111] -Triangle: [111, 137, 110] -Triangle: [110, 138, 109] -Triangle: [109, 139, 108] -Triangle: [108, 140, 107] -Triangle: [107, 141, 106] -Triangle: [106, 142, 105] -Triangle: [105, 143, 104] -Triangle: [22, 83, 21] -Triangle: [83, 85, 82] -Triangle: [82, 86, 81] -Triangle: [81, 87, 80] -Triangle: [80, 88, 79] -Triangle: [79, 89, 78] -Triangle: [78, 90, 77] -Triangle: [77, 91, 76] -Triangle: [76, 92, 75] -Triangle: [75, 93, 74] -Triangle: [74, 94, 73] -Triangle: [73, 95, 72] -Triangle: [72, 96, 71] -Triangle: [71, 97, 70] -Triangle: [70, 98, 69] -Triangle: [69, 99, 68] -Triangle: [68, 100, 67] -Triangle: [67, 101, 66] -Triangle: [66, 102, 65] -Triangle: [65, 103, 64] -Triangle: [15, 43, 14] -Triangle: [43, 45, 42] -Triangle: [42, 46, 41] -Triangle: [41, 47, 40] -Triangle: [40, 48, 39] -Triangle: [39, 49, 38] -Triangle: [38, 50, 37] -Triangle: [37, 51, 36] -Triangle: [36, 52, 35] -Triangle: [35, 53, 34] -Triangle: [34, 54, 33] -Triangle: [33, 55, 32] -Triangle: [32, 56, 31] -Triangle: [31, 57, 30] -Triangle: [30, 58, 29] -Triangle: [29, 59, 28] -Triangle: [28, 60, 27] -Triangle: [27, 61, 26] -Triangle: [26, 62, 25] -Triangle: [25, 63, 24] -Triangle: [184, 286, 183] -Triangle: [264, 266, 267] -Triangle: [267, 268, 269] -Triangle: [269, 270, 271] -Triangle: [271, 272, 273] -Triangle: [273, 274, 275] -Triangle: [275, 276, 277] -Triangle: [277, 278, 279] -Triangle: [279, 280, 281] -Triangle: [281, 282, 283] -Triangle: [283, 284, 285] -Triangle: [285, 286, 287] -Triangle: [287, 265, 264] -Triangle: [281, 285, 264] -Triangle: [299, 295, 291] -Triangle: [7, 8, 20] -Triangle: [4, 5, 17] -Triangle: [11, 0, 12] -Triangle: [1, 2, 14] -Triangle: [8, 9, 21] -Triangle: [5, 6, 18] -Triangle: [2, 3, 15] -Triangle: [9, 10, 22] -Triangle: [6, 7, 19] -Triangle: [3, 4, 16] -Triangle: [10, 11, 23] -Triangle: [0, 1, 13] -Triangle: [163, 272, 270] -Triangle: [183, 286, 284] -Triangle: [243, 280, 278] -Triangle: [263, 274, 272] -Triangle: [24, 268, 266] -Triangle: [64, 282, 280] -Triangle: [104, 276, 274] -Triangle: [223, 266, 265] -Triangle: [63, 270, 268] -Triangle: [103, 284, 282] -Triangle: [143, 278, 276] -Triangle: [18, 123, 244] -Triangle: [123, 122, 245] -Triangle: [122, 121, 246] -Triangle: [121, 120, 247] -Triangle: [120, 119, 248] -Triangle: [119, 118, 249] -Triangle: [118, 117, 250] -Triangle: [117, 116, 251] -Triangle: [116, 115, 252] -Triangle: [115, 114, 253] -Triangle: [114, 113, 254] -Triangle: [113, 112, 255] -Triangle: [112, 111, 256] -Triangle: [111, 110, 257] -Triangle: [110, 109, 258] -Triangle: [109, 108, 259] -Triangle: [108, 107, 260] -Triangle: [107, 106, 261] -Triangle: [106, 105, 262] -Triangle: [105, 104, 263] -Triangle: [21, 83, 224] -Triangle: [83, 82, 225] -Triangle: [82, 81, 226] -Triangle: [81, 80, 227] -Triangle: [80, 79, 228] -Triangle: [79, 78, 229] -Triangle: [78, 77, 230] -Triangle: [77, 76, 231] -Triangle: [76, 75, 232] -Triangle: [75, 74, 233] -Triangle: [74, 73, 234] -Triangle: [73, 72, 235] -Triangle: [72, 71, 236] -Triangle: [71, 70, 237] -Triangle: [70, 69, 238] -Triangle: [69, 68, 239] -Triangle: [68, 67, 240] -Triangle: [67, 66, 241] -Triangle: [66, 65, 242] -Triangle: [65, 64, 243] -Triangle: [14, 43, 204] -Triangle: [43, 42, 205] -Triangle: [42, 41, 206] -Triangle: [41, 40, 207] -Triangle: [40, 39, 208] -Triangle: [39, 38, 209] -Triangle: [38, 37, 210] -Triangle: [37, 36, 211] -Triangle: [36, 35, 212] -Triangle: [35, 34, 213] -Triangle: [34, 33, 214] -Triangle: [33, 32, 215] -Triangle: [32, 31, 216] -Triangle: [31, 30, 217] -Triangle: [30, 29, 218] -Triangle: [29, 28, 219] -Triangle: [28, 27, 220] -Triangle: [27, 26, 221] -Triangle: [26, 25, 222] -Triangle: [25, 24, 223] -Triangle: [12, 203, 164] -Triangle: [203, 202, 165] -Triangle: [202, 201, 166] -Triangle: [201, 200, 167] -Triangle: [200, 199, 168] -Triangle: [199, 198, 169] -Triangle: [198, 197, 170] -Triangle: [197, 196, 171] -Triangle: [196, 195, 172] -Triangle: [195, 194, 173] -Triangle: [194, 193, 174] -Triangle: [193, 192, 175] -Triangle: [192, 191, 176] -Triangle: [191, 190, 177] -Triangle: [190, 189, 178] -Triangle: [189, 188, 179] -Triangle: [188, 187, 180] -Triangle: [187, 186, 181] -Triangle: [186, 185, 182] -Triangle: [185, 184, 183] -Triangle: [17, 244, 144] -Triangle: [244, 245, 145] -Triangle: [245, 246, 146] -Triangle: [246, 247, 147] -Triangle: [247, 248, 148] -Triangle: [248, 249, 149] -Triangle: [249, 250, 150] -Triangle: [250, 251, 151] -Triangle: [251, 252, 152] -Triangle: [252, 253, 153] -Triangle: [253, 254, 154] -Triangle: [254, 255, 155] -Triangle: [255, 256, 156] -Triangle: [256, 257, 157] -Triangle: [257, 258, 158] -Triangle: [258, 259, 159] -Triangle: [259, 260, 160] -Triangle: [260, 261, 161] -Triangle: [261, 262, 162] -Triangle: [262, 263, 163] -Triangle: [20, 224, 124] -Triangle: [224, 225, 125] -Triangle: [225, 226, 126] -Triangle: [226, 227, 127] -Triangle: [227, 228, 128] -Triangle: [228, 229, 129] -Triangle: [229, 230, 130] -Triangle: [230, 231, 131] -Triangle: [231, 232, 132] -Triangle: [232, 233, 133] -Triangle: [233, 234, 134] -Triangle: [234, 235, 135] -Triangle: [235, 236, 136] -Triangle: [236, 237, 137] -Triangle: [237, 238, 138] -Triangle: [238, 239, 139] -Triangle: [239, 240, 140] -Triangle: [240, 241, 141] -Triangle: [241, 242, 142] -Triangle: [242, 243, 143] -Triangle: [13, 204, 203] -Triangle: [203, 204, 205] -Triangle: [202, 205, 206] -Triangle: [201, 206, 207] -Triangle: [200, 207, 208] -Triangle: [199, 208, 209] -Triangle: [198, 209, 210] -Triangle: [197, 210, 211] -Triangle: [196, 211, 212] -Triangle: [195, 212, 213] -Triangle: [194, 213, 214] -Triangle: [193, 214, 215] -Triangle: [192, 215, 216] -Triangle: [191, 216, 217] -Triangle: [190, 217, 218] -Triangle: [189, 218, 219] -Triangle: [188, 219, 220] -Triangle: [187, 220, 221] -Triangle: [186, 221, 222] -Triangle: [185, 222, 223] -Triangle: [23, 164, 84] -Triangle: [164, 165, 85] -Triangle: [165, 166, 86] -Triangle: [166, 167, 87] -Triangle: [167, 168, 88] -Triangle: [168, 169, 89] -Triangle: [169, 170, 90] -Triangle: [170, 171, 91] -Triangle: [171, 172, 92] -Triangle: [172, 173, 93] -Triangle: [173, 174, 94] -Triangle: [174, 175, 95] -Triangle: [175, 176, 96] -Triangle: [176, 177, 97] -Triangle: [177, 178, 98] -Triangle: [178, 179, 99] -Triangle: [179, 180, 100] -Triangle: [180, 181, 101] -Triangle: [181, 182, 102] -Triangle: [182, 183, 103] -Triangle: [16, 144, 44] -Triangle: [144, 145, 45] -Triangle: [145, 146, 46] -Triangle: [146, 147, 47] -Triangle: [147, 148, 48] -Triangle: [148, 149, 49] -Triangle: [149, 150, 50] -Triangle: [150, 151, 51] -Triangle: [151, 152, 52] -Triangle: [152, 153, 53] -Triangle: [153, 154, 54] -Triangle: [154, 155, 55] -Triangle: [155, 156, 56] -Triangle: [156, 157, 57] -Triangle: [157, 158, 58] -Triangle: [158, 159, 59] -Triangle: [159, 160, 60] -Triangle: [160, 161, 61] -Triangle: [161, 162, 62] -Triangle: [162, 163, 63] -Triangle: [19, 124, 123] -Triangle: [123, 124, 125] -Triangle: [122, 125, 126] -Triangle: [121, 126, 127] -Triangle: [120, 127, 128] -Triangle: [119, 128, 129] -Triangle: [118, 129, 130] -Triangle: [117, 130, 131] -Triangle: [116, 131, 132] -Triangle: [115, 132, 133] -Triangle: [114, 133, 134] -Triangle: [113, 134, 135] -Triangle: [112, 135, 136] -Triangle: [111, 136, 137] -Triangle: [110, 137, 138] -Triangle: [109, 138, 139] -Triangle: [108, 139, 140] -Triangle: [107, 140, 141] -Triangle: [106, 141, 142] -Triangle: [105, 142, 143] -Triangle: [22, 84, 83] -Triangle: [83, 84, 85] -Triangle: [82, 85, 86] -Triangle: [81, 86, 87] -Triangle: [80, 87, 88] -Triangle: [79, 88, 89] -Triangle: [78, 89, 90] -Triangle: [77, 90, 91] -Triangle: [76, 91, 92] -Triangle: [75, 92, 93] -Triangle: [74, 93, 94] -Triangle: [73, 94, 95] -Triangle: [72, 95, 96] -Triangle: [71, 96, 97] -Triangle: [70, 97, 98] -Triangle: [69, 98, 99] -Triangle: [68, 99, 100] -Triangle: [67, 100, 101] -Triangle: [66, 101, 102] -Triangle: [65, 102, 103] -Triangle: [15, 44, 43] -Triangle: [43, 44, 45] -Triangle: [42, 45, 46] -Triangle: [41, 46, 47] -Triangle: [40, 47, 48] -Triangle: [39, 48, 49] -Triangle: [38, 49, 50] -Triangle: [37, 50, 51] -Triangle: [36, 51, 52] -Triangle: [35, 52, 53] -Triangle: [34, 53, 54] -Triangle: [33, 54, 55] -Triangle: [32, 55, 56] -Triangle: [31, 56, 57] -Triangle: [30, 57, 58] -Triangle: [29, 58, 59] -Triangle: [28, 59, 60] -Triangle: [27, 60, 61] -Triangle: [26, 61, 62] -Triangle: [25, 62, 63] -Triangle: [184, 265, 286] -Triangle: [264, 265, 266] -Triangle: [267, 266, 268] -Triangle: [269, 268, 270] -Triangle: [271, 270, 272] -Triangle: [273, 272, 274] -Triangle: [275, 274, 276] -Triangle: [277, 276, 278] -Triangle: [279, 278, 280] -Triangle: [281, 280, 282] -Triangle: [283, 282, 284] -Triangle: [285, 284, 286] -Triangle: [287, 286, 265] -Triangle: [264, 267, 269] -Triangle: [269, 271, 273] -Triangle: [273, 275, 277] -Triangle: [277, 279, 281] -Triangle: [281, 283, 285] -Triangle: [285, 287, 264] -Triangle: [264, 269, 281] -Triangle: [269, 273, 281] -Triangle: [273, 277, 281] -Triangle: [291, 290, 289] -Triangle: [289, 288, 291] -Triangle: [288, 299, 291] -Triangle: [299, 298, 297] -Triangle: [297, 296, 295] -Triangle: [295, 294, 293] -Triangle: [293, 292, 295] -Triangle: [292, 291, 295] -Triangle: [299, 297, 295] -=== Vertex Weights === -Vertex 0: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 3: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 6: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 7: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 8: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 9: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 10: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 11: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 12: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929085373878479 - Group: 'Bone.002', Weight: 0.0 -Vertex 13: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084777832031 - Group: 'Bone.002', Weight: 0.0 -Vertex 14: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084777832031 - Group: 'Bone.002', Weight: 0.0 -Vertex 15: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084777832031 - Group: 'Bone.002', Weight: 0.0 -Vertex 16: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084181785583 - Group: 'Bone.002', Weight: 0.0 -Vertex 17: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084181785583 - Group: 'Bone.002', Weight: 0.0 -Vertex 18: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084777832031 - Group: 'Bone.002', Weight: 0.0 -Vertex 19: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084777832031 - Group: 'Bone.002', Weight: 0.0 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084181785583 - Group: 'Bone.002', Weight: 0.0 -Vertex 21: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929085373878479 - Group: 'Bone.002', Weight: 0.0 -Vertex 22: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084777832031 - Group: 'Bone.002', Weight: 0.0 -Vertex 23: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929084181785583 - Group: 'Bone.002', Weight: 0.0 -Vertex 24: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9915997385978699 -Vertex 25: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9928441047668457 -Vertex 26: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005609579384326935 - Group: 'Bone.002', Weight: 0.9993284940719604 -Vertex 27: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.045290473848581314 - Group: 'Bone.002', Weight: 0.9999966621398926 -Vertex 28: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.09106173366308212 - Group: 'Bone.002', Weight: 1.0 -Vertex 29: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471136152744293 - Group: 'Bone.002', Weight: 0.9296255707740784 -Vertex 30: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.33562105894088745 - Group: 'Bone.002', Weight: 0.3025034964084625 -Vertex 31: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.6979458332061768 - Group: 'Bone.002', Weight: 0.0 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002342797815799713 - Group: 'Bone.001', Weight: 0.9968839287757874 - Group: 'Bone.002', Weight: 0.0 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.046516913920640945 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 34: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272120893001556 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone.002', Weight: 0.0 -Vertex 35: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17814984917640686 - Group: 'Bone.001', Weight: 0.9996907711029053 - Group: 'Bone.002', Weight: 0.0 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3422882556915283 - Group: 'Bone.001', Weight: 0.8011442422866821 - Group: 'Bone.002', Weight: 0.0 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576557159423828 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695355415344 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071379899978638 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 41: -Vertex groups: 3 - Group: 'Bone', Weight: 0.974381148815155 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 42: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.001', Weight: 0.0 -Vertex 43: -Vertex groups: 2 - Group: 'Bone', Weight: 0.991348147392273 - Group: 'Bone.002', Weight: 0.0 -Vertex 44: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 45: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 46: -Vertex groups: 3 - Group: 'Bone', Weight: 0.974381148815155 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 47: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784812927246 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 48: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 49: -Vertex groups: 3 - Group: 'Bone', Weight: 0.821769654750824 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 50: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576559543609619 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 51: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228846430778503 - Group: 'Bone.001', Weight: 0.8903093934059143 - Group: 'Bone.002', Weight: 0.0 -Vertex 52: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1781499832868576 - Group: 'Bone.001', Weight: 0.9977566003799438 - Group: 'Bone.002', Weight: 0.0 -Vertex 53: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272133558988571 - Group: 'Bone.001', Weight: 0.9999725818634033 - Group: 'Bone.002', Weight: 0.0 -Vertex 54: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651704803109169 - Group: 'Bone.001', Weight: 0.9999970197677612 - Group: 'Bone.002', Weight: 0.0 -Vertex 55: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002343505620956421 - Group: 'Bone.001', Weight: 0.9880279302597046 - Group: 'Bone.002', Weight: 0.0 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.683049201965332 - Group: 'Bone.002', Weight: 0.0 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.33555200695991516 - Group: 'Bone.002', Weight: 0.5581121444702148 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.1747114062309265 - Group: 'Bone.002', Weight: 0.9398342370986938 -Vertex 59: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0910612940788269 - Group: 'Bone.002', Weight: 0.9999799728393555 -Vertex 60: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.045287590473890305 - Group: 'Bone.002', Weight: 0.999940037727356 -Vertex 61: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005537532269954681 - Group: 'Bone.002', Weight: 0.9997937679290771 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9947390556335449 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9914706945419312 -Vertex 64: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9997836947441101 -Vertex 65: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9999962449073792 -Vertex 66: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005536675453186035 - Group: 'Bone.002', Weight: 0.9999973177909851 -Vertex 67: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.04528742656111717 - Group: 'Bone.002', Weight: 1.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.09106114506721497 - Group: 'Bone.002', Weight: 0.9999848008155823 -Vertex 69: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471115291118622 - Group: 'Bone.002', Weight: 0.999146044254303 -Vertex 70: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.34981048107147217 - Group: 'Bone.002', Weight: 0.8791214823722839 -Vertex 71: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.8219958543777466 - Group: 'Bone.002', Weight: 0.0 -Vertex 72: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00023427605628967285 - Group: 'Bone.001', Weight: 0.9974454641342163 - Group: 'Bone.002', Weight: 0.0 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651690647006035 - Group: 'Bone.001', Weight: 0.9999979138374329 - Group: 'Bone.002', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272120147943497 - Group: 'Bone.001', Weight: 0.9999397993087769 - Group: 'Bone.002', Weight: 0.0 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17814981937408447 - Group: 'Bone.001', Weight: 0.9718307256698608 - Group: 'Bone.002', Weight: 0.0 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228822588920593 - Group: 'Bone.001', Weight: 0.6721817255020142 - Group: 'Bone.002', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.657655656337738 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 78: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695355415344 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 79: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071379899978638 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 80: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9743812084197998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 83: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 84: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 85: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.974381148815155 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 87: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 88: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695951461792 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576558947563171 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228843450546265 - Group: 'Bone.001', Weight: 0.6958945989608765 - Group: 'Bone.002', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1781499683856964 - Group: 'Bone.001', Weight: 0.989952802658081 - Group: 'Bone.002', Weight: 0.0 -Vertex 93: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272133558988571 - Group: 'Bone.001', Weight: 0.999999463558197 - Group: 'Bone.002', Weight: 0.0 -Vertex 94: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651704803109169 - Group: 'Bone.001', Weight: 0.9999862909317017 - Group: 'Bone.002', Weight: 0.0 -Vertex 95: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002343505620956421 - Group: 'Bone.001', Weight: 0.9969767332077026 - Group: 'Bone.002', Weight: 0.0 -Vertex 96: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.8218942880630493 - Group: 'Bone.002', Weight: 0.15561974048614502 -Vertex 97: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.35236650705337524 - Group: 'Bone.002', Weight: 0.9226394891738892 -Vertex 98: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471164464950562 - Group: 'Bone.002', Weight: 0.9997977018356323 -Vertex 99: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.09106190502643585 - Group: 'Bone.002', Weight: 1.0 -Vertex 100: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.04529066011309624 - Group: 'Bone.002', Weight: 1.0 -Vertex 101: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005610547959804535 - Group: 'Bone.002', Weight: 0.9999993443489075 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9999912977218628 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9997423887252808 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9977610111236572 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9997137784957886 -Vertex 106: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005609579384326935 - Group: 'Bone.002', Weight: 0.9999370574951172 -Vertex 107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.04529048129916191 - Group: 'Bone.002', Weight: 0.991256594657898 -Vertex 108: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.09106174111366272 - Group: 'Bone.002', Weight: 0.9980697631835938 -Vertex 109: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471137642860413 - Group: 'Bone.002', Weight: 0.983163058757782 -Vertex 110: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.33991289138793945 - Group: 'Bone.002', Weight: 0.77480548620224 -Vertex 111: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.783668577671051 - Group: 'Bone.002', Weight: 0.0 -Vertex 112: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00023427605628967285 - Group: 'Bone.001', Weight: 0.9966400861740112 - Group: 'Bone.002', Weight: 0.0 -Vertex 113: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651689901947975 - Group: 'Bone.001', Weight: 0.999998927116394 - Group: 'Bone.002', Weight: 0.0 -Vertex 114: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272120147943497 - Group: 'Bone.001', Weight: 0.9999958872795105 - Group: 'Bone.002', Weight: 0.0 -Vertex 115: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17814981937408447 - Group: 'Bone.001', Weight: 0.999163031578064 - Group: 'Bone.002', Weight: 0.0 -Vertex 116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228819608688354 - Group: 'Bone.001', Weight: 0.7808682322502136 - Group: 'Bone.002', Weight: 0.0 -Vertex 117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.657655656337738 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695355415344 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 119: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071379899978638 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 120: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9743812084197998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 122: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 123: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 124: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 125: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 126: -Vertex groups: 3 - Group: 'Bone', Weight: 0.974381148815155 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 127: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 128: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 129: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695951461792 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 130: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576558947563171 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 131: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228843450546265 - Group: 'Bone.001', Weight: 0.8113508224487305 - Group: 'Bone.002', Weight: 0.0 -Vertex 132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1781499683856964 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272132813930511 - Group: 'Bone.001', Weight: 0.9999995827674866 - Group: 'Bone.002', Weight: 0.0 -Vertex 134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651704803109169 - Group: 'Bone.001', Weight: 0.9999998211860657 - Group: 'Bone.002', Weight: 0.0 -Vertex 135: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002343505620956421 - Group: 'Bone.001', Weight: 0.9988381266593933 - Group: 'Bone.002', Weight: 0.0 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.8271257877349854 - Group: 'Bone.002', Weight: 0.3843134045600891 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.3475956320762634 - Group: 'Bone.002', Weight: 0.891546368598938 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.1747114211320877 - Group: 'Bone.002', Weight: 0.9940401315689087 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0910613015294075 - Group: 'Bone.002', Weight: 0.9990466833114624 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0452875979244709 - Group: 'Bone.002', Weight: 0.9990135431289673 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005537569522857666 - Group: 'Bone.002', Weight: 0.999991774559021 -Vertex 142: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9999997615814209 -Vertex 143: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9999248385429382 -Vertex 144: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480281829834 - Group: 'Bone.002', Weight: 0.0 -Vertex 145: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 146: -Vertex groups: 3 - Group: 'Bone', Weight: 0.974381148815155 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 147: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 148: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071379899978638 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 149: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695951461792 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 150: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576558351516724 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228840470314026 - Group: 'Bone.001', Weight: 0.9543471932411194 - Group: 'Bone.002', Weight: 0.0 -Vertex 152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17814995348453522 - Group: 'Bone.001', Weight: 0.9998492002487183 - Group: 'Bone.002', Weight: 0.0 -Vertex 153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272132068872452 - Group: 'Bone.001', Weight: 0.9999949932098389 - Group: 'Bone.002', Weight: 0.0 -Vertex 154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.046517033129930496 - Group: 'Bone.001', Weight: 0.9999917149543762 - Group: 'Bone.002', Weight: 0.0 -Vertex 155: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00023434683680534363 - Group: 'Bone.001', Weight: 0.9845696687698364 - Group: 'Bone.002', Weight: 0.0 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.6904533505439758 - Group: 'Bone.002', Weight: 0.08419039100408554 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.33555182814598083 - Group: 'Bone.002', Weight: 0.627415657043457 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471103370189667 - Group: 'Bone.002', Weight: 0.9478302597999573 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.09106021374464035 - Group: 'Bone.002', Weight: 0.9995505809783936 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.04528088495135307 - Group: 'Bone.002', Weight: 0.9984486103057861 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005325339734554291 - Group: 'Bone.002', Weight: 0.9999223351478577 -Vertex 162: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9961919784545898 -Vertex 163: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9920867681503296 -Vertex 164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480281829834 - Group: 'Bone.002', Weight: 0.0 -Vertex 165: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650135040283 - Group: 'Bone.002', Weight: 0.0 -Vertex 166: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9743812084197998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 167: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 168: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 169: -Vertex groups: 3 - Group: 'Bone', Weight: 0.821769654750824 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576558947563171 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228843450546265 - Group: 'Bone.001', Weight: 0.6893067359924316 - Group: 'Bone.002', Weight: 0.0 -Vertex 172: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1781499683856964 - Group: 'Bone.001', Weight: 0.9799373149871826 - Group: 'Bone.002', Weight: 0.0 -Vertex 173: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272132813930511 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone.002', Weight: 0.0 -Vertex 174: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651704803109169 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 175: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002343505620956421 - Group: 'Bone.001', Weight: 0.9994792938232422 - Group: 'Bone.002', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.8541673421859741 - Group: 'Bone.002', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.3541344702243805 - Group: 'Bone.002', Weight: 0.8943359851837158 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.1747114211320877 - Group: 'Bone.002', Weight: 0.9996629953384399 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0910613015294075 - Group: 'Bone.002', Weight: 1.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0452875979244709 - Group: 'Bone.002', Weight: 0.9999998807907104 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005537569522857666 - Group: 'Bone.002', Weight: 0.9999857544898987 -Vertex 182: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9999908208847046 -Vertex 183: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9997432231903076 -Vertex 184: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9997932314872742 -Vertex 185: -Vertex groups: 1 - Group: 'Bone.002', Weight: 1.0 -Vertex 186: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005324557423591614 - Group: 'Bone.002', Weight: 0.9999878406524658 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.045280735939741135 - Group: 'Bone.002', Weight: 0.999999463558197 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0910600796341896 - Group: 'Bone.002', Weight: 1.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471081018447876 - Group: 'Bone.002', Weight: 0.9804167747497559 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.35106340050697327 - Group: 'Bone.002', Weight: 0.6755346059799194 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.8108553886413574 - Group: 'Bone.002', Weight: 0.0 -Vertex 192: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002342797815799713 - Group: 'Bone.001', Weight: 0.9993959069252014 - Group: 'Bone.002', Weight: 0.0 -Vertex 193: -Vertex groups: 3 - Group: 'Bone', Weight: 0.046516913920640945 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 194: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272120893001556 - Group: 'Bone.001', Weight: 0.9999938011169434 - Group: 'Bone.002', Weight: 0.0 -Vertex 195: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17814983427524567 - Group: 'Bone.001', Weight: 0.9439263343811035 - Group: 'Bone.002', Weight: 0.0 -Vertex 196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228822588920593 - Group: 'Bone.001', Weight: 0.5918762683868408 - Group: 'Bone.002', Weight: 0.0 -Vertex 197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576557159423828 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695355415344 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 199: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9743812084197998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480877876282 - Group: 'Bone.002', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650731086731 - Group: 'Bone.002', Weight: 0.0 -Vertex 206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.974381148815155 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 207: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 208: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 209: -Vertex groups: 3 - Group: 'Bone', Weight: 0.821769654750824 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 210: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576559543609619 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 211: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3422884941101074 - Group: 'Bone.001', Weight: 0.5819275379180908 - Group: 'Bone.002', Weight: 0.0 -Vertex 212: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1781499981880188 - Group: 'Bone.001', Weight: 0.9598990082740784 - Group: 'Bone.002', Weight: 0.0 -Vertex 213: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272134304046631 - Group: 'Bone.001', Weight: 0.9999974966049194 - Group: 'Bone.002', Weight: 0.0 -Vertex 214: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651705548167229 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone.002', Weight: 0.0 -Vertex 215: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00023435801267623901 - Group: 'Bone.001', Weight: 0.9972547888755798 - Group: 'Bone.002', Weight: 0.0 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.7241860032081604 - Group: 'Bone.002', Weight: 0.0 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.3345024287700653 - Group: 'Bone.002', Weight: 0.2510998845100403 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.1747114509344101 - Group: 'Bone.002', Weight: 0.9277483224868774 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0910613164305687 - Group: 'Bone.002', Weight: 0.9999991059303284 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0452876053750515 - Group: 'Bone.002', Weight: 0.9999761581420898 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005537644028663635 - Group: 'Bone.002', Weight: 0.9988294243812561 -Vertex 222: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9973316788673401 -Vertex 223: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9970037341117859 -Vertex 224: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480281829834 - Group: 'Bone.002', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650135040283 - Group: 'Bone.002', Weight: 0.0 -Vertex 226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9743812084197998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 227: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 228: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 229: -Vertex groups: 3 - Group: 'Bone', Weight: 0.821769654750824 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 230: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576558947563171 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 231: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228843450546265 - Group: 'Bone.001', Weight: 0.7923701405525208 - Group: 'Bone.002', Weight: 0.0 -Vertex 232: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1781499683856964 - Group: 'Bone.001', Weight: 0.9856444597244263 - Group: 'Bone.002', Weight: 0.0 -Vertex 233: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272132813930511 - Group: 'Bone.001', Weight: 0.999990701675415 - Group: 'Bone.002', Weight: 0.0 -Vertex 234: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04651704058051109 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 235: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00023434683680534363 - Group: 'Bone.001', Weight: 0.998932957649231 - Group: 'Bone.002', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.8348513841629028 - Group: 'Bone.002', Weight: 0.04197689890861511 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.34991922974586487 - Group: 'Bone.002', Weight: 0.8128846883773804 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.17471107840538025 - Group: 'Bone.002', Weight: 0.9830523133277893 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.09106022864580154 - Group: 'Bone.002', Weight: 0.9990373849868774 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.04528089985251427 - Group: 'Bone.002', Weight: 0.9998754262924194 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.000532541424036026 - Group: 'Bone.002', Weight: 0.9999824166297913 -Vertex 242: -Vertex groups: 1 - Group: 'Bone.002', Weight: 1.0 -Vertex 243: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9998623132705688 -Vertex 244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9913480281829834 - Group: 'Bone.002', Weight: 0.0 -Vertex 245: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9859650135040283 - Group: 'Bone.002', Weight: 0.0 -Vertex 246: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9743812084197998 - Group: 'Bone.001', Weight: 0.0002192854881286621 - Group: 'Bone.002', Weight: 0.0 -Vertex 247: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9514784216880798 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 248: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9071380496025085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 249: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8217695951461792 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 250: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6576558947563171 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 251: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34228843450546265 - Group: 'Bone.001', Weight: 0.9409999251365662 - Group: 'Bone.002', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17814995348453522 - Group: 'Bone.001', Weight: 0.9994750022888184 - Group: 'Bone.002', Weight: 0.0 -Vertex 253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09272132068872452 - Group: 'Bone.001', Weight: 0.9999786615371704 - Group: 'Bone.002', Weight: 0.0 -Vertex 254: -Vertex groups: 3 - Group: 'Bone', Weight: 0.046517033129930496 - Group: 'Bone.001', Weight: 0.9999879598617554 - Group: 'Bone.002', Weight: 0.0 -Vertex 255: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00023434683680534363 - Group: 'Bone.001', Weight: 0.9932835102081299 - Group: 'Bone.002', Weight: 0.0 -Vertex 256: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.7347094416618347 - Group: 'Bone.002', Weight: 0.0 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.33555200695991516 - Group: 'Bone.002', Weight: 0.6227658987045288 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.1747114062309265 - Group: 'Bone.002', Weight: 0.9514731764793396 -Vertex 259: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0910612940788269 - Group: 'Bone.002', Weight: 0.9990290999412537 -Vertex 260: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.04528758302330971 - Group: 'Bone.002', Weight: 0.9945870637893677 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0005537495017051697 - Group: 'Bone.002', Weight: 0.9999467134475708 -Vertex 262: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9984038472175598 -Vertex 263: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9933145046234131 -Vertex 264: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9978337287902832 -Vertex 265: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9995756149291992 -Vertex 266: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9967331886291504 -Vertex 267: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9960509538650513 -Vertex 268: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9921318888664246 -Vertex 269: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.994678258895874 -Vertex 270: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9919488430023193 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9944657683372498 -Vertex 272: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9923744797706604 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.995017945766449 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9930646419525146 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9946089386940002 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9971464276313782 -Vertex 277: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9961177110671997 -Vertex 278: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9997783899307251 -Vertex 279: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9979419112205505 -Vertex 280: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9996762275695801 -Vertex 281: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9979386925697327 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.999561071395874 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9975818395614624 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9995062947273254 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9975602030754089 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9995046257972717 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.002', Weight: 0.9975205659866333 -Vertex 288: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 289: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 290: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 291: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 292: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 293: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 294: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 295: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 296: -Vertex groups: 2 - Group: 'Bone', Weight: 1.000000238418579 - Group: 'Bone.002', Weight: 0.0 -Vertex 297: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -Vertex 298: -Vertex groups: 2 - Group: 'Bone', Weight: 1.000000238418579 - Group: 'Bone.002', Weight: 0.0 -Vertex 299: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0000001192092896 - Group: 'Bone.002', Weight: 0.0 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 2 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - -Frame: 100 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - diff --git a/mesh_armature_and_animation_data02.txt b/mesh_armature_and_animation_data02.txt deleted file mode 100644 index 782078b..0000000 --- a/mesh_armature_and_animation_data02.txt +++ /dev/null @@ -1,77 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 2 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.0 - - - - Parent: None - Children: ['Bone.001'] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.0736327081284343 - - - - Parent: Bone - Children: [] -===Vertices: 3 -Vertex 0: -Vertex 1: -Vertex 2: -===Triangles: 1 -Triangle: [0, 2, 1] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone.001', Weight: 0.514522135257721 -Vertex 1: -Vertex groups: 1 - Group: 'Bone.001', Weight: 0.4854777455329895 -Vertex 2: -Vertex groups: 1 - Group: 'Bone.001', Weight: 0.4942711293697357 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 2 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - -Frame: 100 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - diff --git a/photo_2025-03-03_07-51-53.bmp b/photo_2025-03-03_07-51-53.bmp deleted file mode 100644 index c7622c4..0000000 Binary files a/photo_2025-03-03_07-51-53.bmp and /dev/null differ diff --git a/start_dialog.bmp b/start_dialog.bmp deleted file mode 100644 index f795d1e..0000000 Binary files a/start_dialog.bmp and /dev/null differ diff --git a/thirdroom.txt b/thirdroom.txt deleted file mode 100644 index 485a642..0000000 --- a/thirdroom.txt +++ /dev/null @@ -1,4265 +0,0 @@ -===Vertices: 348 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -===UV Coordinates: -Face count: 594 -Face 0 -UV Count: 3 - UV - UV - UV -Face 1 -UV Count: 3 - UV - UV - UV -Face 2 -UV Count: 3 - UV - UV - UV -Face 3 -UV Count: 3 - UV - UV - UV -Face 4 -UV Count: 3 - UV - UV - UV -Face 5 -UV Count: 3 - UV - UV - UV -Face 6 -UV Count: 3 - UV - UV - UV -Face 7 -UV Count: 3 - UV - UV - UV -Face 8 -UV Count: 3 - UV - UV - UV -Face 9 -UV Count: 3 - UV - UV - UV -Face 10 -UV Count: 3 - UV - UV - UV -Face 11 -UV Count: 3 - UV - UV - UV -Face 12 -UV Count: 3 - UV - UV - UV -Face 13 -UV Count: 3 - UV - UV - UV -Face 14 -UV Count: 3 - UV - UV - UV -Face 15 -UV Count: 3 - UV - UV - UV -Face 16 -UV Count: 3 - UV - UV - UV -Face 17 -UV Count: 3 - UV - UV - UV -Face 18 -UV Count: 3 - UV - UV - UV -Face 19 -UV Count: 3 - UV - UV - UV -Face 20 -UV Count: 3 - UV - UV - UV -Face 21 -UV Count: 3 - UV - UV - UV -Face 22 -UV Count: 3 - UV - UV - UV -Face 23 -UV Count: 3 - UV - UV - UV -Face 24 -UV Count: 3 - UV - UV - UV -Face 25 -UV Count: 3 - UV - UV - UV -Face 26 -UV Count: 3 - UV - UV - UV -Face 27 -UV Count: 3 - UV - UV - UV -Face 28 -UV Count: 3 - UV - UV - UV -Face 29 -UV Count: 3 - UV - UV - UV -Face 30 -UV Count: 3 - UV - UV - UV -Face 31 -UV Count: 3 - UV - UV - UV -Face 32 -UV Count: 3 - UV - UV - UV -Face 33 -UV Count: 3 - UV - UV - UV -Face 34 -UV Count: 3 - UV - UV - UV -Face 35 -UV Count: 3 - UV - UV - UV -Face 36 -UV Count: 3 - UV - UV - UV -Face 37 -UV Count: 3 - UV - UV - UV -Face 38 -UV Count: 3 - UV - UV - UV -Face 39 -UV Count: 3 - UV - UV - UV -Face 40 -UV Count: 3 - UV - UV - UV -Face 41 -UV Count: 3 - UV - UV - UV -Face 42 -UV Count: 3 - UV - UV - UV -Face 43 -UV Count: 3 - UV - UV - UV -Face 44 -UV Count: 3 - UV - UV - UV -Face 45 -UV Count: 3 - UV - UV - UV -Face 46 -UV Count: 3 - UV - UV - UV -Face 47 -UV Count: 3 - UV - UV - UV -Face 48 -UV Count: 3 - UV - UV - UV -Face 49 -UV Count: 3 - UV - UV - UV -Face 50 -UV Count: 3 - UV - UV - UV -Face 51 -UV Count: 3 - UV - UV - UV -Face 52 -UV Count: 3 - UV - UV - UV -Face 53 -UV Count: 3 - UV - UV - UV -Face 54 -UV Count: 3 - UV - UV - UV -Face 55 -UV Count: 3 - UV - UV - UV -Face 56 -UV Count: 3 - UV - UV - UV -Face 57 -UV Count: 3 - UV - UV - UV -Face 58 -UV Count: 3 - UV - UV - UV -Face 59 -UV Count: 3 - UV - UV - UV -Face 60 -UV Count: 3 - UV - UV - UV -Face 61 -UV Count: 3 - UV - UV - UV -Face 62 -UV Count: 3 - UV - UV - UV -Face 63 -UV Count: 3 - UV - UV - UV -Face 64 -UV Count: 3 - UV - UV - UV -Face 65 -UV Count: 3 - UV - UV - UV -Face 66 -UV Count: 3 - UV - UV - UV -Face 67 -UV Count: 3 - UV - UV - UV -Face 68 -UV Count: 3 - UV - UV - UV -Face 69 -UV Count: 3 - UV - UV - UV -Face 70 -UV Count: 3 - UV - UV - UV -Face 71 -UV Count: 3 - UV - UV - UV -Face 72 -UV Count: 3 - UV - UV - UV -Face 73 -UV Count: 3 - UV - UV - UV -Face 74 -UV Count: 3 - UV - UV - UV -Face 75 -UV Count: 3 - UV - UV - UV -Face 76 -UV Count: 3 - UV - UV - UV -Face 77 -UV Count: 3 - UV - UV - UV -Face 78 -UV Count: 3 - UV - UV - UV -Face 79 -UV Count: 3 - UV - UV - UV -Face 80 -UV Count: 3 - UV - UV - UV -Face 81 -UV Count: 3 - UV - UV - UV -Face 82 -UV Count: 3 - UV - UV - UV -Face 83 -UV Count: 3 - UV - UV - UV -Face 84 -UV Count: 3 - UV - UV - UV -Face 85 -UV Count: 3 - UV - UV - UV -Face 86 -UV Count: 3 - UV - UV - UV -Face 87 -UV Count: 3 - UV - UV - UV -Face 88 -UV Count: 3 - UV - UV - UV -Face 89 -UV Count: 3 - UV - UV - UV -Face 90 -UV Count: 3 - UV - UV - UV -Face 91 -UV Count: 3 - UV - UV - UV -Face 92 -UV Count: 3 - UV - UV - UV -Face 93 -UV Count: 3 - UV - UV - UV -Face 94 -UV Count: 3 - UV - UV - UV -Face 95 -UV Count: 3 - UV - UV - UV -Face 96 -UV Count: 3 - UV - UV - UV -Face 97 -UV Count: 3 - UV - UV - UV -Face 98 -UV Count: 3 - UV - UV - UV -Face 99 -UV Count: 3 - UV - UV - UV -Face 100 -UV Count: 3 - UV - UV - UV -Face 101 -UV Count: 3 - UV - UV - UV -Face 102 -UV Count: 3 - UV - UV - UV -Face 103 -UV Count: 3 - UV - UV - UV -Face 104 -UV Count: 3 - UV - UV - UV -Face 105 -UV Count: 3 - UV - UV - UV -Face 106 -UV Count: 3 - UV - UV - UV -Face 107 -UV Count: 3 - UV - UV - UV -Face 108 -UV Count: 3 - UV - UV - UV -Face 109 -UV Count: 3 - UV - UV - UV -Face 110 -UV Count: 3 - UV - UV - UV -Face 111 -UV Count: 3 - UV - UV - UV -Face 112 -UV Count: 3 - UV - UV - UV -Face 113 -UV Count: 3 - UV - UV - UV -Face 114 -UV Count: 3 - UV - UV - UV -Face 115 -UV Count: 3 - UV - UV - UV -Face 116 -UV Count: 3 - UV - UV - UV -Face 117 -UV Count: 3 - UV - UV - UV -Face 118 -UV Count: 3 - UV - UV - UV -Face 119 -UV Count: 3 - UV - UV - UV -Face 120 -UV Count: 3 - UV - UV - UV -Face 121 -UV Count: 3 - UV - UV - UV -Face 122 -UV Count: 3 - UV - UV - UV -Face 123 -UV Count: 3 - UV - UV - UV -Face 124 -UV Count: 3 - UV - UV - UV -Face 125 -UV Count: 3 - UV - UV - UV -Face 126 -UV Count: 3 - UV - UV - UV -Face 127 -UV Count: 3 - UV - UV - UV -Face 128 -UV Count: 3 - UV - UV - UV -Face 129 -UV Count: 3 - UV - UV - UV -Face 130 -UV Count: 3 - UV - UV - UV -Face 131 -UV Count: 3 - UV - UV - UV -Face 132 -UV Count: 3 - UV - UV - UV -Face 133 -UV Count: 3 - UV - UV - UV -Face 134 -UV Count: 3 - UV - UV - UV -Face 135 -UV Count: 3 - UV - UV - UV -Face 136 -UV Count: 3 - UV - UV - UV -Face 137 -UV Count: 3 - UV - UV - UV -Face 138 -UV Count: 3 - UV - UV - UV -Face 139 -UV Count: 3 - UV - UV - UV -Face 140 -UV Count: 3 - UV - UV - UV -Face 141 -UV Count: 3 - UV - UV - UV -Face 142 -UV Count: 3 - UV - UV - UV -Face 143 -UV Count: 3 - UV - UV - UV -Face 144 -UV Count: 3 - UV - UV - UV -Face 145 -UV Count: 3 - UV - UV - UV -Face 146 -UV Count: 3 - UV - UV - UV -Face 147 -UV Count: 3 - UV - UV - UV -Face 148 -UV Count: 3 - UV - UV - UV -Face 149 -UV Count: 3 - UV - UV - UV -Face 150 -UV Count: 3 - UV - UV - UV -Face 151 -UV Count: 3 - UV - UV - UV -Face 152 -UV Count: 3 - UV - UV - UV -Face 153 -UV Count: 3 - UV - UV - UV -Face 154 -UV Count: 3 - UV - UV - UV -Face 155 -UV Count: 3 - UV - UV - UV -Face 156 -UV Count: 3 - UV - UV - UV -Face 157 -UV Count: 3 - UV - UV - UV -Face 158 -UV Count: 3 - UV - UV - UV -Face 159 -UV Count: 3 - UV - UV - UV -Face 160 -UV Count: 3 - UV - UV - UV -Face 161 -UV Count: 3 - UV - UV - UV -Face 162 -UV Count: 3 - UV - UV - UV -Face 163 -UV Count: 3 - UV - UV - UV -Face 164 -UV Count: 3 - UV - UV - UV -Face 165 -UV Count: 3 - UV - UV - UV -Face 166 -UV Count: 3 - UV - UV - UV -Face 167 -UV Count: 3 - UV - UV - UV -Face 168 -UV Count: 3 - UV - UV - UV -Face 169 -UV Count: 3 - UV - UV - UV -Face 170 -UV Count: 3 - UV - UV - UV -Face 171 -UV Count: 3 - UV - UV - UV -Face 172 -UV Count: 3 - UV - UV - UV -Face 173 -UV Count: 3 - UV - UV - UV -Face 174 -UV Count: 3 - UV - UV - UV -Face 175 -UV Count: 3 - UV - UV - UV -Face 176 -UV Count: 3 - UV - UV - UV -Face 177 -UV Count: 3 - UV - UV - UV -Face 178 -UV Count: 3 - UV - UV - UV -Face 179 -UV Count: 3 - UV - UV - UV -Face 180 -UV Count: 3 - UV - UV - UV -Face 181 -UV Count: 3 - UV - UV - UV -Face 182 -UV Count: 3 - UV - UV - UV -Face 183 -UV Count: 3 - UV - UV - UV -Face 184 -UV Count: 3 - UV - UV - UV -Face 185 -UV Count: 3 - UV - UV - UV -Face 186 -UV Count: 3 - UV - UV - UV -Face 187 -UV Count: 3 - UV - UV - UV -Face 188 -UV Count: 3 - UV - UV - UV -Face 189 -UV Count: 3 - UV - UV - UV -Face 190 -UV Count: 3 - UV - UV - UV -Face 191 -UV Count: 3 - UV - UV - UV -Face 192 -UV Count: 3 - UV - UV - UV -Face 193 -UV Count: 3 - UV - UV - UV -Face 194 -UV Count: 3 - UV - UV - UV -Face 195 -UV Count: 3 - UV - UV - UV -Face 196 -UV Count: 3 - UV - UV - UV -Face 197 -UV Count: 3 - UV - UV - UV -Face 198 -UV Count: 3 - UV - UV - UV -Face 199 -UV Count: 3 - UV - UV - UV -Face 200 -UV Count: 3 - UV - UV - UV -Face 201 -UV Count: 3 - UV - UV - UV -Face 202 -UV Count: 3 - UV - UV - UV -Face 203 -UV Count: 3 - UV - UV - UV -Face 204 -UV Count: 3 - UV - UV - UV -Face 205 -UV Count: 3 - UV - UV - UV -Face 206 -UV Count: 3 - UV - UV - UV -Face 207 -UV Count: 3 - UV - UV - UV -Face 208 -UV Count: 3 - UV - UV - UV -Face 209 -UV Count: 3 - UV - UV - UV -Face 210 -UV Count: 3 - UV - UV - UV -Face 211 -UV Count: 3 - UV - UV - UV -Face 212 -UV Count: 3 - UV - UV - UV -Face 213 -UV Count: 3 - UV - UV - UV -Face 214 -UV Count: 3 - UV - UV - UV -Face 215 -UV Count: 3 - UV - UV - UV -Face 216 -UV Count: 3 - UV - UV - UV -Face 217 -UV Count: 3 - UV - UV - UV -Face 218 -UV Count: 3 - UV - UV - UV -Face 219 -UV Count: 3 - UV - UV - UV -Face 220 -UV Count: 3 - UV - UV - UV -Face 221 -UV Count: 3 - UV - UV - UV -Face 222 -UV Count: 3 - UV - UV - UV -Face 223 -UV Count: 3 - UV - UV - UV -Face 224 -UV Count: 3 - UV - UV - UV -Face 225 -UV Count: 3 - UV - UV - UV -Face 226 -UV Count: 3 - UV - UV - UV -Face 227 -UV Count: 3 - UV - UV - UV -Face 228 -UV Count: 3 - UV - UV - UV -Face 229 -UV Count: 3 - UV - UV - UV -Face 230 -UV Count: 3 - UV - UV - UV -Face 231 -UV Count: 3 - UV - UV - UV -Face 232 -UV Count: 3 - UV - UV - UV -Face 233 -UV Count: 3 - UV - UV - UV -Face 234 -UV Count: 3 - UV - UV - UV -Face 235 -UV Count: 3 - UV - UV - UV -Face 236 -UV Count: 3 - UV - UV - UV -Face 237 -UV Count: 3 - UV - UV - UV -Face 238 -UV Count: 3 - UV - UV - UV -Face 239 -UV Count: 3 - UV - UV - UV -Face 240 -UV Count: 3 - UV - UV - UV -Face 241 -UV Count: 3 - UV - UV - UV -Face 242 -UV Count: 3 - UV - UV - UV -Face 243 -UV Count: 3 - UV - UV - UV -Face 244 -UV Count: 3 - UV - UV - UV -Face 245 -UV Count: 3 - UV - UV - UV -Face 246 -UV Count: 3 - UV - UV - UV -Face 247 -UV Count: 3 - UV - UV - UV -Face 248 -UV Count: 3 - UV - UV - UV -Face 249 -UV Count: 3 - UV - UV - UV -Face 250 -UV Count: 3 - UV - UV - UV -Face 251 -UV Count: 3 - UV - UV - UV -Face 252 -UV Count: 3 - UV - UV - UV -Face 253 -UV Count: 3 - UV - UV - UV -Face 254 -UV Count: 3 - UV - UV - UV -Face 255 -UV Count: 3 - UV - UV - UV -Face 256 -UV Count: 3 - UV - UV - UV -Face 257 -UV Count: 3 - UV - UV - UV -Face 258 -UV Count: 3 - UV - UV - UV -Face 259 -UV Count: 3 - UV - UV - UV -Face 260 -UV Count: 3 - UV - UV - UV -Face 261 -UV Count: 3 - UV - UV - UV -Face 262 -UV Count: 3 - UV - UV - UV -Face 263 -UV Count: 3 - UV - UV - UV -Face 264 -UV Count: 3 - UV - UV - UV -Face 265 -UV Count: 3 - UV - UV - UV -Face 266 -UV Count: 3 - UV - UV - UV -Face 267 -UV Count: 3 - UV - UV - UV -Face 268 -UV Count: 3 - UV - UV - UV -Face 269 -UV Count: 3 - UV - UV - UV -Face 270 -UV Count: 3 - UV - UV - UV -Face 271 -UV Count: 3 - UV - UV - UV -Face 272 -UV Count: 3 - UV - UV - UV -Face 273 -UV Count: 3 - UV - UV - UV -Face 274 -UV Count: 3 - UV - UV - UV -Face 275 -UV Count: 3 - UV - UV - UV -Face 276 -UV Count: 3 - UV - UV - UV -Face 277 -UV Count: 3 - UV - UV - UV -Face 278 -UV Count: 3 - UV - UV - UV -Face 279 -UV Count: 3 - UV - UV - UV -Face 280 -UV Count: 3 - UV - UV - UV -Face 281 -UV Count: 3 - UV - UV - UV -Face 282 -UV Count: 3 - UV - UV - UV -Face 283 -UV Count: 3 - UV - UV - UV -Face 284 -UV Count: 3 - UV - UV - UV -Face 285 -UV Count: 3 - UV - UV - UV -Face 286 -UV Count: 3 - UV - UV - UV -Face 287 -UV Count: 3 - UV - UV - UV -Face 288 -UV Count: 3 - UV - UV - UV -Face 289 -UV Count: 3 - UV - UV - UV -Face 290 -UV Count: 3 - UV - UV - UV -Face 291 -UV Count: 3 - UV - UV - UV -Face 292 -UV Count: 3 - UV - UV - UV -Face 293 -UV Count: 3 - UV - UV - UV -Face 294 -UV Count: 3 - UV - UV - UV -Face 295 -UV Count: 3 - UV - UV - UV -Face 296 -UV Count: 3 - UV - UV - UV -Face 297 -UV Count: 3 - UV - UV - UV -Face 298 -UV Count: 3 - UV - UV - UV -Face 299 -UV Count: 3 - UV - UV - UV -Face 300 -UV Count: 3 - UV - UV - UV -Face 301 -UV Count: 3 - UV - UV - UV -Face 302 -UV Count: 3 - UV - UV - UV -Face 303 -UV Count: 3 - UV - UV - UV -Face 304 -UV Count: 3 - UV - UV - UV -Face 305 -UV Count: 3 - UV - UV - UV -Face 306 -UV Count: 3 - UV - UV - UV -Face 307 -UV Count: 3 - UV - UV - UV -Face 308 -UV Count: 3 - UV - UV - UV -Face 309 -UV Count: 3 - UV - UV - UV -Face 310 -UV Count: 3 - UV - UV - UV -Face 311 -UV Count: 3 - UV - UV - UV -Face 312 -UV Count: 3 - UV - UV - UV -Face 313 -UV Count: 3 - UV - UV - UV -Face 314 -UV Count: 3 - UV - UV - UV -Face 315 -UV Count: 3 - UV - UV - UV -Face 316 -UV Count: 3 - UV - UV - UV -Face 317 -UV Count: 3 - UV - UV - UV -Face 318 -UV Count: 3 - UV - UV - UV -Face 319 -UV Count: 3 - UV - UV - UV -Face 320 -UV Count: 3 - UV - UV - UV -Face 321 -UV Count: 3 - UV - UV - UV -Face 322 -UV Count: 3 - UV - UV - UV -Face 323 -UV Count: 3 - UV - UV - UV -Face 324 -UV Count: 3 - UV - UV - UV -Face 325 -UV Count: 3 - UV - UV - UV -Face 326 -UV Count: 3 - UV - UV - UV -Face 327 -UV Count: 3 - UV - UV - UV -Face 328 -UV Count: 3 - UV - UV - UV -Face 329 -UV Count: 3 - UV - UV - UV -Face 330 -UV Count: 3 - UV - UV - UV -Face 331 -UV Count: 3 - UV - UV - UV -Face 332 -UV Count: 3 - UV - UV - UV -Face 333 -UV Count: 3 - UV - UV - UV -Face 334 -UV Count: 3 - UV - UV - UV -Face 335 -UV Count: 3 - UV - UV - UV -Face 336 -UV Count: 3 - UV - UV - UV -Face 337 -UV Count: 3 - UV - UV - UV -Face 338 -UV Count: 3 - UV - UV - UV -Face 339 -UV Count: 3 - UV - UV - UV -Face 340 -UV Count: 3 - UV - UV - UV -Face 341 -UV Count: 3 - UV - UV - UV -Face 342 -UV Count: 3 - UV - UV - UV -Face 343 -UV Count: 3 - UV - UV - UV -Face 344 -UV Count: 3 - UV - UV - UV -Face 345 -UV Count: 3 - UV - UV - UV -Face 346 -UV Count: 3 - UV - UV - UV -Face 347 -UV Count: 3 - UV - UV - UV -Face 348 -UV Count: 3 - UV - UV - UV -Face 349 -UV Count: 3 - UV - UV - UV -Face 350 -UV Count: 3 - UV - UV - UV -Face 351 -UV Count: 3 - UV - UV - UV -Face 352 -UV Count: 3 - UV - UV - UV -Face 353 -UV Count: 3 - UV - UV - UV -Face 354 -UV Count: 3 - UV - UV - UV -Face 355 -UV Count: 3 - UV - UV - UV -Face 356 -UV Count: 3 - UV - UV - UV -Face 357 -UV Count: 3 - UV - UV - UV -Face 358 -UV Count: 3 - UV - UV - UV -Face 359 -UV Count: 3 - UV - UV - UV -Face 360 -UV Count: 3 - UV - UV - UV -Face 361 -UV Count: 3 - UV - UV - UV -Face 362 -UV Count: 3 - UV - UV - UV -Face 363 -UV Count: 3 - UV - UV - UV -Face 364 -UV Count: 3 - UV - UV - UV -Face 365 -UV Count: 3 - UV - UV - UV -Face 366 -UV Count: 3 - UV - UV - UV -Face 367 -UV Count: 3 - UV - UV - UV -Face 368 -UV Count: 3 - UV - UV - UV -Face 369 -UV Count: 3 - UV - UV - UV -Face 370 -UV Count: 3 - UV - UV - UV -Face 371 -UV Count: 3 - UV - UV - UV -Face 372 -UV Count: 3 - UV - UV - UV -Face 373 -UV Count: 3 - UV - UV - UV -Face 374 -UV Count: 3 - UV - UV - UV -Face 375 -UV Count: 3 - UV - UV - UV -Face 376 -UV Count: 3 - UV - UV - UV -Face 377 -UV Count: 3 - UV - UV - UV -Face 378 -UV Count: 3 - UV - UV - UV -Face 379 -UV Count: 3 - UV - UV - UV -Face 380 -UV Count: 3 - UV - UV - UV -Face 381 -UV Count: 3 - UV - UV - UV -Face 382 -UV Count: 3 - UV - UV - UV -Face 383 -UV Count: 3 - UV - UV - UV -Face 384 -UV Count: 3 - UV - UV - UV -Face 385 -UV Count: 3 - UV - UV - UV -Face 386 -UV Count: 3 - UV - UV - UV -Face 387 -UV Count: 3 - UV - UV - UV -Face 388 -UV Count: 3 - UV - UV - UV -Face 389 -UV Count: 3 - UV - UV - UV -Face 390 -UV Count: 3 - UV - UV - UV -Face 391 -UV Count: 3 - UV - UV - UV -Face 392 -UV Count: 3 - UV - UV - UV -Face 393 -UV Count: 3 - UV - UV - UV -Face 394 -UV Count: 3 - UV - UV - UV -Face 395 -UV Count: 3 - UV - UV - UV -Face 396 -UV Count: 3 - UV - UV - UV -Face 397 -UV Count: 3 - UV - UV - UV -Face 398 -UV Count: 3 - UV - UV - UV -Face 399 -UV Count: 3 - UV - UV - UV -Face 400 -UV Count: 3 - UV - UV - UV -Face 401 -UV Count: 3 - UV - UV - UV -Face 402 -UV Count: 3 - UV - UV - UV -Face 403 -UV Count: 3 - UV - UV - UV -Face 404 -UV Count: 3 - UV - UV - UV -Face 405 -UV Count: 3 - UV - UV - UV -Face 406 -UV Count: 3 - UV - UV - UV -Face 407 -UV Count: 3 - UV - UV - UV -Face 408 -UV Count: 3 - UV - UV - UV -Face 409 -UV Count: 3 - UV - UV - UV -Face 410 -UV Count: 3 - UV - UV - UV -Face 411 -UV Count: 3 - UV - UV - UV -Face 412 -UV Count: 3 - UV - UV - UV -Face 413 -UV Count: 3 - UV - UV - UV -Face 414 -UV Count: 3 - UV - UV - UV -Face 415 -UV Count: 3 - UV - UV - UV -Face 416 -UV Count: 3 - UV - UV - UV -Face 417 -UV Count: 3 - UV - UV - UV -Face 418 -UV Count: 3 - UV - UV - UV -Face 419 -UV Count: 3 - UV - UV - UV -Face 420 -UV Count: 3 - UV - UV - UV -Face 421 -UV Count: 3 - UV - UV - UV -Face 422 -UV Count: 3 - UV - UV - UV -Face 423 -UV Count: 3 - UV - UV - UV -Face 424 -UV Count: 3 - UV - UV - UV -Face 425 -UV Count: 3 - UV - UV - UV -Face 426 -UV Count: 3 - UV - UV - UV -Face 427 -UV Count: 3 - UV - UV - UV -Face 428 -UV Count: 3 - UV - UV - UV -Face 429 -UV Count: 3 - UV - UV - UV -Face 430 -UV Count: 3 - UV - UV - UV -Face 431 -UV Count: 3 - UV - UV - UV -Face 432 -UV Count: 3 - UV - UV - UV -Face 433 -UV Count: 3 - UV - UV - UV -Face 434 -UV Count: 3 - UV - UV - UV -Face 435 -UV Count: 3 - UV - UV - UV -Face 436 -UV Count: 3 - UV - UV - UV -Face 437 -UV Count: 3 - UV - UV - UV -Face 438 -UV Count: 3 - UV - UV - UV -Face 439 -UV Count: 3 - UV - UV - UV -Face 440 -UV Count: 3 - UV - UV - UV -Face 441 -UV Count: 3 - UV - UV - UV -Face 442 -UV Count: 3 - UV - UV - UV -Face 443 -UV Count: 3 - UV - UV - UV -Face 444 -UV Count: 3 - UV - UV - UV -Face 445 -UV Count: 3 - UV - UV - UV -Face 446 -UV Count: 3 - UV - UV - UV -Face 447 -UV Count: 3 - UV - UV - UV -Face 448 -UV Count: 3 - UV - UV - UV -Face 449 -UV Count: 3 - UV - UV - UV -Face 450 -UV Count: 3 - UV - UV - UV -Face 451 -UV Count: 3 - UV - UV - UV -Face 452 -UV Count: 3 - UV - UV - UV -Face 453 -UV Count: 3 - UV - UV - UV -Face 454 -UV Count: 3 - UV - UV - UV -Face 455 -UV Count: 3 - UV - UV - UV -Face 456 -UV Count: 3 - UV - UV - UV -Face 457 -UV Count: 3 - UV - UV - UV -Face 458 -UV Count: 3 - UV - UV - UV -Face 459 -UV Count: 3 - UV - UV - UV -Face 460 -UV Count: 3 - UV - UV - UV -Face 461 -UV Count: 3 - UV - UV - UV -Face 462 -UV Count: 3 - UV - UV - UV -Face 463 -UV Count: 3 - UV - UV - UV -Face 464 -UV Count: 3 - UV - UV - UV -Face 465 -UV Count: 3 - UV - UV - UV -Face 466 -UV Count: 3 - UV - UV - UV -Face 467 -UV Count: 3 - UV - UV - UV -Face 468 -UV Count: 3 - UV - UV - UV -Face 469 -UV Count: 3 - UV - UV - UV -Face 470 -UV Count: 3 - UV - UV - UV -Face 471 -UV Count: 3 - UV - UV - UV -Face 472 -UV Count: 3 - UV - UV - UV -Face 473 -UV Count: 3 - UV - UV - UV -Face 474 -UV Count: 3 - UV - UV - UV -Face 475 -UV Count: 3 - UV - UV - UV -Face 476 -UV Count: 3 - UV - UV - UV -Face 477 -UV Count: 3 - UV - UV - UV -Face 478 -UV Count: 3 - UV - UV - UV -Face 479 -UV Count: 3 - UV - UV - UV -Face 480 -UV Count: 3 - UV - UV - UV -Face 481 -UV Count: 3 - UV - UV - UV -Face 482 -UV Count: 3 - UV - UV - UV -Face 483 -UV Count: 3 - UV - UV - UV -Face 484 -UV Count: 3 - UV - UV - UV -Face 485 -UV Count: 3 - UV - UV - UV -Face 486 -UV Count: 3 - UV - UV - UV -Face 487 -UV Count: 3 - UV - UV - UV -Face 488 -UV Count: 3 - UV - UV - UV -Face 489 -UV Count: 3 - UV - UV - UV -Face 490 -UV Count: 3 - UV - UV - UV -Face 491 -UV Count: 3 - UV - UV - UV -Face 492 -UV Count: 3 - UV - UV - UV -Face 493 -UV Count: 3 - UV - UV - UV -Face 494 -UV Count: 3 - UV - UV - UV -Face 495 -UV Count: 3 - UV - UV - UV -Face 496 -UV Count: 3 - UV - UV - UV -Face 497 -UV Count: 3 - UV - UV - UV -Face 498 -UV Count: 3 - UV - UV - UV -Face 499 -UV Count: 3 - UV - UV - UV -Face 500 -UV Count: 3 - UV - UV - UV -Face 501 -UV Count: 3 - UV - UV - UV -Face 502 -UV Count: 3 - UV - UV - UV -Face 503 -UV Count: 3 - UV - UV - UV -Face 504 -UV Count: 3 - UV - UV - UV -Face 505 -UV Count: 3 - UV - UV - UV -Face 506 -UV Count: 3 - UV - UV - UV -Face 507 -UV Count: 3 - UV - UV - UV -Face 508 -UV Count: 3 - UV - UV - UV -Face 509 -UV Count: 3 - UV - UV - UV -Face 510 -UV Count: 3 - UV - UV - UV -Face 511 -UV Count: 3 - UV - UV - UV -Face 512 -UV Count: 3 - UV - UV - UV -Face 513 -UV Count: 3 - UV - UV - UV -Face 514 -UV Count: 3 - UV - UV - UV -Face 515 -UV Count: 3 - UV - UV - UV -Face 516 -UV Count: 3 - UV - UV - UV -Face 517 -UV Count: 3 - UV - UV - UV -Face 518 -UV Count: 3 - UV - UV - UV -Face 519 -UV Count: 3 - UV - UV - UV -Face 520 -UV Count: 3 - UV - UV - UV -Face 521 -UV Count: 3 - UV - UV - UV -Face 522 -UV Count: 3 - UV - UV - UV -Face 523 -UV Count: 3 - UV - UV - UV -Face 524 -UV Count: 3 - UV - UV - UV -Face 525 -UV Count: 3 - UV - UV - UV -Face 526 -UV Count: 3 - UV - UV - UV -Face 527 -UV Count: 3 - UV - UV - UV -Face 528 -UV Count: 3 - UV - UV - UV -Face 529 -UV Count: 3 - UV - UV - UV -Face 530 -UV Count: 3 - UV - UV - UV -Face 531 -UV Count: 3 - UV - UV - UV -Face 532 -UV Count: 3 - UV - UV - UV -Face 533 -UV Count: 3 - UV - UV - UV -Face 534 -UV Count: 3 - UV - UV - UV -Face 535 -UV Count: 3 - UV - UV - UV -Face 536 -UV Count: 3 - UV - UV - UV -Face 537 -UV Count: 3 - UV - UV - UV -Face 538 -UV Count: 3 - UV - UV - UV -Face 539 -UV Count: 3 - UV - UV - UV -Face 540 -UV Count: 3 - UV - UV - UV -Face 541 -UV Count: 3 - UV - UV - UV -Face 542 -UV Count: 3 - UV - UV - UV -Face 543 -UV Count: 3 - UV - UV - UV -Face 544 -UV Count: 3 - UV - UV - UV -Face 545 -UV Count: 3 - UV - UV - UV -Face 546 -UV Count: 3 - UV - UV - UV -Face 547 -UV Count: 3 - UV - UV - UV -Face 548 -UV Count: 3 - UV - UV - UV -Face 549 -UV Count: 3 - UV - UV - UV -Face 550 -UV Count: 3 - UV - UV - UV -Face 551 -UV Count: 3 - UV - UV - UV -Face 552 -UV Count: 3 - UV - UV - UV -Face 553 -UV Count: 3 - UV - UV - UV -Face 554 -UV Count: 3 - UV - UV - UV -Face 555 -UV Count: 3 - UV - UV - UV -Face 556 -UV Count: 3 - UV - UV - UV -Face 557 -UV Count: 3 - UV - UV - UV -Face 558 -UV Count: 3 - UV - UV - UV -Face 559 -UV Count: 3 - UV - UV - UV -Face 560 -UV Count: 3 - UV - UV - UV -Face 561 -UV Count: 3 - UV - UV - UV -Face 562 -UV Count: 3 - UV - UV - UV -Face 563 -UV Count: 3 - UV - UV - UV -Face 564 -UV Count: 3 - UV - UV - UV -Face 565 -UV Count: 3 - UV - UV - UV -Face 566 -UV Count: 3 - UV - UV - UV -Face 567 -UV Count: 3 - UV - UV - UV -Face 568 -UV Count: 3 - UV - UV - UV -Face 569 -UV Count: 3 - UV - UV - UV -Face 570 -UV Count: 3 - UV - UV - UV -Face 571 -UV Count: 3 - UV - UV - UV -Face 572 -UV Count: 3 - UV - UV - UV -Face 573 -UV Count: 3 - UV - UV - UV -Face 574 -UV Count: 3 - UV - UV - UV -Face 575 -UV Count: 3 - UV - UV - UV -Face 576 -UV Count: 3 - UV - UV - UV -Face 577 -UV Count: 3 - UV - UV - UV -Face 578 -UV Count: 3 - UV - UV - UV -Face 579 -UV Count: 3 - UV - UV - UV -Face 580 -UV Count: 3 - UV - UV - UV -Face 581 -UV Count: 3 - UV - UV - UV -Face 582 -UV Count: 3 - UV - UV - UV -Face 583 -UV Count: 3 - UV - UV - UV -Face 584 -UV Count: 3 - UV - UV - UV -Face 585 -UV Count: 3 - UV - UV - UV -Face 586 -UV Count: 3 - UV - UV - UV -Face 587 -UV Count: 3 - UV - UV - UV -Face 588 -UV Count: 3 - UV - UV - UV -Face 589 -UV Count: 3 - UV - UV - UV -Face 590 -UV Count: 3 - UV - UV - UV -Face 591 -UV Count: 3 - UV - UV - UV -Face 592 -UV Count: 3 - UV - UV - UV -Face 593 -UV Count: 3 - UV - UV - UV -===Normals: -Vertex 0: Normal -Vertex 1: Normal -Vertex 2: Normal -Vertex 3: Normal -Vertex 4: Normal -Vertex 5: Normal -Vertex 6: Normal -Vertex 7: Normal -Vertex 8: Normal -Vertex 9: Normal -Vertex 10: Normal -Vertex 11: Normal -Vertex 12: Normal -Vertex 13: Normal -Vertex 14: Normal -Vertex 15: Normal -Vertex 16: Normal -Vertex 17: Normal -Vertex 18: Normal -Vertex 19: Normal -Vertex 20: Normal -Vertex 21: Normal -Vertex 22: Normal -Vertex 23: Normal -Vertex 24: Normal -Vertex 25: Normal -Vertex 26: Normal -Vertex 27: Normal -Vertex 28: Normal -Vertex 29: Normal -Vertex 30: Normal -Vertex 31: Normal -Vertex 32: Normal -Vertex 33: Normal -Vertex 34: Normal -Vertex 35: Normal -Vertex 36: Normal -Vertex 37: Normal -Vertex 38: Normal -Vertex 39: Normal -Vertex 40: Normal -Vertex 41: Normal -Vertex 42: Normal -Vertex 43: Normal -Vertex 44: Normal -Vertex 45: Normal -Vertex 46: Normal -Vertex 47: Normal -Vertex 48: Normal -Vertex 49: Normal -Vertex 50: Normal -Vertex 51: Normal -Vertex 52: Normal -Vertex 53: Normal -Vertex 54: Normal -Vertex 55: Normal -Vertex 56: Normal -Vertex 57: Normal -Vertex 58: Normal -Vertex 59: Normal -Vertex 60: Normal -Vertex 61: Normal -Vertex 62: Normal -Vertex 63: Normal -Vertex 64: Normal -Vertex 65: Normal -Vertex 66: Normal -Vertex 67: Normal -Vertex 68: Normal -Vertex 69: Normal -Vertex 70: Normal -Vertex 71: Normal -Vertex 72: Normal -Vertex 73: Normal -Vertex 74: Normal -Vertex 75: Normal -Vertex 76: Normal -Vertex 77: Normal -Vertex 78: Normal -Vertex 79: Normal -Vertex 80: Normal -Vertex 81: Normal -Vertex 82: Normal -Vertex 83: Normal -Vertex 84: Normal -Vertex 85: Normal -Vertex 86: Normal -Vertex 87: Normal -Vertex 88: Normal -Vertex 89: Normal -Vertex 90: Normal -Vertex 91: Normal -Vertex 92: Normal -Vertex 93: Normal -Vertex 94: Normal -Vertex 95: Normal -Vertex 96: Normal -Vertex 97: Normal -Vertex 98: Normal -Vertex 99: Normal -Vertex 100: Normal -Vertex 101: Normal -Vertex 102: Normal -Vertex 103: Normal -Vertex 104: Normal -Vertex 105: Normal -Vertex 106: Normal -Vertex 107: Normal -Vertex 108: Normal -Vertex 109: Normal -Vertex 110: Normal -Vertex 111: Normal -Vertex 112: Normal -Vertex 113: Normal -Vertex 114: Normal -Vertex 115: Normal -Vertex 116: Normal -Vertex 117: Normal -Vertex 118: Normal -Vertex 119: Normal -Vertex 120: Normal -Vertex 121: Normal -Vertex 122: Normal -Vertex 123: Normal -Vertex 124: Normal -Vertex 125: Normal -Vertex 126: Normal -Vertex 127: Normal -Vertex 128: Normal -Vertex 129: Normal -Vertex 130: Normal -Vertex 131: Normal -Vertex 132: Normal -Vertex 133: Normal -Vertex 134: Normal -Vertex 135: Normal -Vertex 136: Normal -Vertex 137: Normal -Vertex 138: Normal -Vertex 139: Normal -Vertex 140: Normal -Vertex 141: Normal -Vertex 142: Normal -Vertex 143: Normal -Vertex 144: Normal -Vertex 145: Normal -Vertex 146: Normal -Vertex 147: Normal -Vertex 148: Normal -Vertex 149: Normal -Vertex 150: Normal -Vertex 151: Normal -Vertex 152: Normal -Vertex 153: Normal -Vertex 154: Normal -Vertex 155: Normal -Vertex 156: Normal -Vertex 157: Normal -Vertex 158: Normal -Vertex 159: Normal -Vertex 160: Normal -Vertex 161: Normal -Vertex 162: Normal -Vertex 163: Normal -Vertex 164: Normal -Vertex 165: Normal -Vertex 166: Normal -Vertex 167: Normal -Vertex 168: Normal -Vertex 169: Normal -Vertex 170: Normal -Vertex 171: Normal -Vertex 172: Normal -Vertex 173: Normal -Vertex 174: Normal -Vertex 175: Normal -Vertex 176: Normal -Vertex 177: Normal -Vertex 178: Normal -Vertex 179: Normal -Vertex 180: Normal -Vertex 181: Normal -Vertex 182: Normal -Vertex 183: Normal -Vertex 184: Normal -Vertex 185: Normal -Vertex 186: Normal -Vertex 187: Normal -Vertex 188: Normal -Vertex 189: Normal -Vertex 190: Normal -Vertex 191: Normal -Vertex 192: Normal -Vertex 193: Normal -Vertex 194: Normal -Vertex 195: Normal -Vertex 196: Normal -Vertex 197: Normal -Vertex 198: Normal -Vertex 199: Normal -Vertex 200: Normal -Vertex 201: Normal -Vertex 202: Normal -Vertex 203: Normal -Vertex 204: Normal -Vertex 205: Normal -Vertex 206: Normal -Vertex 207: Normal -Vertex 208: Normal -Vertex 209: Normal -Vertex 210: Normal -Vertex 211: Normal -Vertex 212: Normal -Vertex 213: Normal -Vertex 214: Normal -Vertex 215: Normal -Vertex 216: Normal -Vertex 217: Normal -Vertex 218: Normal -Vertex 219: Normal -Vertex 220: Normal -Vertex 221: Normal -Vertex 222: Normal -Vertex 223: Normal -Vertex 224: Normal -Vertex 225: Normal -Vertex 226: Normal -Vertex 227: Normal -Vertex 228: Normal -Vertex 229: Normal -Vertex 230: Normal -Vertex 231: Normal -Vertex 232: Normal -Vertex 233: Normal -Vertex 234: Normal -Vertex 235: Normal -Vertex 236: Normal -Vertex 237: Normal -Vertex 238: Normal -Vertex 239: Normal -Vertex 240: Normal -Vertex 241: Normal -Vertex 242: Normal -Vertex 243: Normal -Vertex 244: Normal -Vertex 245: Normal -Vertex 246: Normal -Vertex 247: Normal -Vertex 248: Normal -Vertex 249: Normal -Vertex 250: Normal -Vertex 251: Normal -Vertex 252: Normal -Vertex 253: Normal -Vertex 254: Normal -Vertex 255: Normal -Vertex 256: Normal -Vertex 257: Normal -Vertex 258: Normal -Vertex 259: Normal -Vertex 260: Normal -Vertex 261: Normal -Vertex 262: Normal -Vertex 263: Normal -Vertex 264: Normal -Vertex 265: Normal -Vertex 266: Normal -Vertex 267: Normal -Vertex 268: Normal -Vertex 269: Normal -Vertex 270: Normal -Vertex 271: Normal -Vertex 272: Normal -Vertex 273: Normal -Vertex 274: Normal -Vertex 275: Normal -Vertex 276: Normal -Vertex 277: Normal -Vertex 278: Normal -Vertex 279: Normal -Vertex 280: Normal -Vertex 281: Normal -Vertex 282: Normal -Vertex 283: Normal -Vertex 284: Normal -Vertex 285: Normal -Vertex 286: Normal -Vertex 287: Normal -Vertex 288: Normal -Vertex 289: Normal -Vertex 290: Normal -Vertex 291: Normal -Vertex 292: Normal -Vertex 293: Normal -Vertex 294: Normal -Vertex 295: Normal -Vertex 296: Normal -Vertex 297: Normal -Vertex 298: Normal -Vertex 299: Normal -Vertex 300: Normal -Vertex 301: Normal -Vertex 302: Normal -Vertex 303: Normal -Vertex 304: Normal -Vertex 305: Normal -Vertex 306: Normal -Vertex 307: Normal -Vertex 308: Normal -Vertex 309: Normal -Vertex 310: Normal -Vertex 311: Normal -Vertex 312: Normal -Vertex 313: Normal -Vertex 314: Normal -Vertex 315: Normal -Vertex 316: Normal -Vertex 317: Normal -Vertex 318: Normal -Vertex 319: Normal -Vertex 320: Normal -Vertex 321: Normal -Vertex 322: Normal -Vertex 323: Normal -Vertex 324: Normal -Vertex 325: Normal -Vertex 326: Normal -Vertex 327: Normal -Vertex 328: Normal -Vertex 329: Normal -Vertex 330: Normal -Vertex 331: Normal -Vertex 332: Normal -Vertex 333: Normal -Vertex 334: Normal -Vertex 335: Normal -Vertex 336: Normal -Vertex 337: Normal -Vertex 338: Normal -Vertex 339: Normal -Vertex 340: Normal -Vertex 341: Normal -Vertex 342: Normal -Vertex 343: Normal -Vertex 344: Normal -Vertex 345: Normal -Vertex 346: Normal -Vertex 347: Normal -===Triangles: 594 -Triangle: [17, 3, 22] -Triangle: [10, 25, 1] -Triangle: [59, 119, 132] -Triangle: [0, 18, 19] -Triangle: [14, 49, 50] -Triangle: [13, 60, 61] -Triangle: [7, 10, 1] -Triangle: [11, 5, 0] -Triangle: [4, 8, 3] -Triangle: [6, 9, 14] -Triangle: [21, 6, 20] -Triangle: [12, 116, 115] -Triangle: [15, 93, 91] -Triangle: [31, 22, 42] -Triangle: [62, 36, 64] -Triangle: [25, 7, 1] -Triangle: [26, 0, 19] -Triangle: [9, 21, 23] -Triangle: [94, 33, 96] -Triangle: [37, 31, 42] -Triangle: [64, 32, 63] -Triangle: [117, 35, 118] -Triangle: [52, 38, 56] -Triangle: [117, 17, 31] -Triangle: [19, 28, 43] -Triangle: [23, 41, 38] -Triangle: [114, 4, 17] -Triangle: [41, 20, 30] -Triangle: [125, 5, 127] -Triangle: [24, 66, 68] -Triangle: [25, 39, 40] -Triangle: [16, 40, 29] -Triangle: [88, 29, 94] -Triangle: [8, 22, 3] -Triangle: [26, 43, 36] -Triangle: [22, 37, 42] -Triangle: [72, 130, 136] -Triangle: [83, 46, 59] -Triangle: [81, 98, 111] -Triangle: [73, 71, 75] -Triangle: [60, 26, 62] -Triangle: [96, 69, 104] -Triangle: [56, 34, 55] -Triangle: [30, 38, 41] -Triangle: [39, 29, 40] -Triangle: [28, 36, 43] -Triangle: [70, 55, 69] -Triangle: [100, 34, 97] -Triangle: [8, 53, 27] -Triangle: [82, 45, 81] -Triangle: [52, 9, 23] -Triangle: [68, 56, 70] -Triangle: [37, 54, 35] -Triangle: [27, 57, 37] -Triangle: [51, 8, 12] -Triangle: [50, 66, 67] -Triangle: [47, 134, 130] -Triangle: [67, 10, 15] -Triangle: [24, 70, 39] -Triangle: [74, 47, 72] -Triangle: [39, 69, 33] -Triangle: [104, 55, 100] -Triangle: [48, 62, 53] -Triangle: [121, 65, 74] -Triangle: [68, 49, 52] -Triangle: [57, 63, 54] -Triangle: [53, 64, 57] -Triangle: [61, 48, 51] -Triangle: [110, 58, 82] -Triangle: [105, 67, 102] -Triangle: [122, 74, 78] -Triangle: [78, 72, 77] -Triangle: [76, 75, 79] -Triangle: [137, 72, 136] -Triangle: [126, 77, 137] -Triangle: [15, 79, 67] -Triangle: [61, 77, 13] -Triangle: [133, 78, 61] -Triangle: [113, 82, 86] -Triangle: [86, 81, 85] -Triangle: [85, 111, 112] -Triangle: [87, 80, 83] -Triangle: [51, 84, 87] -Triangle: [14, 112, 90] -Triangle: [50, 85, 14] -Triangle: [105, 86, 50] -Triangle: [139, 105, 120] -Triangle: [90, 124, 115] -Triangle: [112, 123, 124] -Triangle: [139, 109, 113] -Triangle: [79, 102, 67] -Triangle: [91, 76, 15] -Triangle: [108, 73, 76] -Triangle: [75, 109, 79] -Triangle: [133, 105, 102] -Triangle: [132, 110, 138] -Triangle: [71, 106, 75] -Triangle: [135, 100, 131] -Triangle: [99, 71, 44] -Triangle: [131, 97, 118] -Triangle: [129, 104, 135] -Triangle: [111, 119, 123] -Triangle: [107, 44, 73] -Triangle: [125, 94, 128] -Triangle: [16, 93, 7] -Triangle: [20, 92, 89] -Triangle: [30, 89, 95] -Triangle: [30, 97, 34] -Triangle: [128, 96, 129] -Triangle: [91, 127, 126] -Triangle: [90, 6, 14] -Triangle: [101, 45, 58] -Triangle: [126, 5, 13] -Triangle: [28, 129, 32] -Triangle: [18, 128, 28] -Triangle: [123, 46, 80] -Triangle: [32, 135, 63] -Triangle: [54, 118, 35] -Triangle: [63, 131, 54] -Triangle: [59, 138, 83] -Triangle: [61, 120, 133] -Triangle: [83, 139, 87] -Triangle: [124, 80, 84] -Triangle: [115, 84, 12] -Triangle: [87, 120, 51] -Triangle: [109, 133, 102] -Triangle: [91, 137, 108] -Triangle: [108, 136, 107] -Triangle: [110, 109, 106] -Triangle: [106, 134, 121] -Triangle: [130, 103, 99] -Triangle: [136, 99, 107] -Triangle: [88, 127, 93] -Triangle: [89, 116, 114] -Triangle: [95, 114, 117] -Triangle: [95, 118, 97] -Triangle: [115, 92, 90] -Triangle: [132, 98, 101] -Triangle: [138, 106, 121] -Triangle: [138, 122, 139] -Triangle: [141, 144, 145] -Triangle: [143, 146, 142] -Triangle: [148, 151, 149] -Triangle: [150, 153, 151] -Triangle: [140, 149, 144] -Triangle: [143, 145, 147] -Triangle: [152, 155, 153] -Triangle: [154, 157, 155] -Triangle: [156, 159, 157] -Triangle: [158, 161, 159] -Triangle: [160, 163, 161] -Triangle: [162, 165, 163] -Triangle: [164, 167, 165] -Triangle: [166, 169, 167] -Triangle: [168, 171, 169] -Triangle: [170, 173, 171] -Triangle: [172, 175, 173] -Triangle: [174, 177, 175] -Triangle: [176, 179, 177] -Triangle: [178, 181, 179] -Triangle: [180, 183, 181] -Triangle: [182, 185, 183] -Triangle: [184, 187, 185] -Triangle: [186, 189, 187] -Triangle: [188, 191, 189] -Triangle: [190, 193, 191] -Triangle: [192, 195, 193] -Triangle: [194, 197, 195] -Triangle: [196, 199, 197] -Triangle: [198, 201, 199] -Triangle: [200, 203, 201] -Triangle: [202, 205, 203] -Triangle: [204, 207, 205] -Triangle: [206, 209, 207] -Triangle: [208, 211, 209] -Triangle: [210, 213, 211] -Triangle: [212, 215, 213] -Triangle: [214, 217, 215] -Triangle: [216, 219, 217] -Triangle: [218, 221, 219] -Triangle: [220, 223, 221] -Triangle: [222, 225, 223] -Triangle: [146, 226, 142] -Triangle: [146, 145, 227] -Triangle: [227, 228, 226] -Triangle: [229, 230, 228] -Triangle: [231, 232, 230] -Triangle: [233, 234, 232] -Triangle: [235, 236, 234] -Triangle: [237, 238, 236] -Triangle: [239, 240, 238] -Triangle: [241, 242, 240] -Triangle: [243, 244, 242] -Triangle: [245, 246, 244] -Triangle: [247, 248, 246] -Triangle: [249, 250, 248] -Triangle: [251, 252, 250] -Triangle: [253, 254, 252] -Triangle: [255, 256, 254] -Triangle: [257, 258, 256] -Triangle: [259, 260, 258] -Triangle: [261, 262, 260] -Triangle: [263, 264, 262] -Triangle: [265, 266, 264] -Triangle: [267, 268, 266] -Triangle: [269, 270, 268] -Triangle: [271, 272, 270] -Triangle: [273, 274, 272] -Triangle: [275, 276, 274] -Triangle: [277, 278, 276] -Triangle: [279, 280, 278] -Triangle: [281, 282, 280] -Triangle: [283, 284, 282] -Triangle: [285, 286, 284] -Triangle: [287, 288, 286] -Triangle: [289, 290, 288] -Triangle: [291, 292, 290] -Triangle: [293, 294, 292] -Triangle: [295, 296, 294] -Triangle: [297, 298, 296] -Triangle: [299, 300, 298] -Triangle: [301, 302, 300] -Triangle: [303, 304, 302] -Triangle: [305, 306, 304] -Triangle: [306, 225, 224] -Triangle: [223, 307, 221] -Triangle: [221, 305, 303] -Triangle: [221, 217, 219] -Triangle: [299, 303, 301] -Triangle: [217, 213, 215] -Triangle: [295, 299, 297] -Triangle: [213, 209, 211] -Triangle: [291, 295, 293] -Triangle: [209, 205, 207] -Triangle: [287, 291, 289] -Triangle: [205, 201, 203] -Triangle: [283, 287, 285] -Triangle: [201, 197, 199] -Triangle: [279, 283, 281] -Triangle: [197, 193, 195] -Triangle: [275, 279, 277] -Triangle: [193, 189, 191] -Triangle: [271, 275, 273] -Triangle: [189, 185, 187] -Triangle: [267, 271, 269] -Triangle: [185, 181, 183] -Triangle: [263, 267, 265] -Triangle: [181, 177, 179] -Triangle: [259, 263, 261] -Triangle: [177, 173, 175] -Triangle: [255, 259, 257] -Triangle: [173, 169, 171] -Triangle: [251, 255, 253] -Triangle: [169, 165, 167] -Triangle: [247, 251, 249] -Triangle: [165, 161, 163] -Triangle: [243, 247, 245] -Triangle: [161, 157, 159] -Triangle: [239, 243, 241] -Triangle: [157, 153, 155] -Triangle: [235, 239, 237] -Triangle: [153, 149, 151] -Triangle: [231, 235, 233] -Triangle: [149, 145, 144] -Triangle: [231, 227, 145] -Triangle: [309, 310, 308] -Triangle: [311, 312, 310] -Triangle: [313, 314, 312] -Triangle: [309, 317, 315] -Triangle: [315, 316, 314] -Triangle: [317, 308, 316] -Triangle: [310, 312, 314] -Triangle: [319, 320, 318] -Triangle: [321, 322, 320] -Triangle: [323, 324, 322] -Triangle: [319, 327, 325] -Triangle: [325, 326, 324] -Triangle: [327, 318, 326] -Triangle: [320, 322, 324] -Triangle: [329, 330, 328] -Triangle: [331, 332, 330] -Triangle: [333, 334, 332] -Triangle: [329, 337, 335] -Triangle: [335, 336, 334] -Triangle: [337, 328, 336] -Triangle: [330, 334, 336] -Triangle: [339, 340, 338] -Triangle: [341, 342, 340] -Triangle: [343, 344, 342] -Triangle: [339, 347, 345] -Triangle: [345, 346, 344] -Triangle: [347, 338, 346] -Triangle: [340, 342, 344] -Triangle: [17, 4, 3] -Triangle: [10, 24, 25] -Triangle: [59, 46, 119] -Triangle: [0, 5, 18] -Triangle: [14, 9, 49] -Triangle: [13, 11, 60] -Triangle: [7, 15, 10] -Triangle: [11, 13, 5] -Triangle: [4, 12, 8] -Triangle: [6, 2, 9] -Triangle: [21, 2, 6] -Triangle: [12, 4, 116] -Triangle: [15, 7, 93] -Triangle: [31, 17, 22] -Triangle: [62, 26, 36] -Triangle: [25, 16, 7] -Triangle: [26, 11, 0] -Triangle: [9, 2, 21] -Triangle: [94, 29, 33] -Triangle: [37, 35, 31] -Triangle: [64, 36, 32] -Triangle: [117, 31, 35] -Triangle: [52, 23, 38] -Triangle: [117, 114, 17] -Triangle: [19, 18, 28] -Triangle: [23, 21, 41] -Triangle: [114, 116, 4] -Triangle: [41, 21, 20] -Triangle: [125, 18, 5] -Triangle: [24, 10, 66] -Triangle: [25, 24, 39] -Triangle: [16, 25, 40] -Triangle: [88, 16, 29] -Triangle: [8, 27, 22] -Triangle: [26, 19, 43] -Triangle: [22, 27, 37] -Triangle: [72, 47, 130] -Triangle: [83, 80, 46] -Triangle: [81, 45, 98] -Triangle: [73, 44, 71] -Triangle: [60, 11, 26] -Triangle: [96, 33, 69] -Triangle: [56, 38, 34] -Triangle: [30, 34, 38] -Triangle: [39, 33, 29] -Triangle: [28, 32, 36] -Triangle: [70, 56, 55] -Triangle: [100, 55, 34] -Triangle: [8, 48, 53] -Triangle: [82, 58, 45] -Triangle: [52, 49, 9] -Triangle: [68, 52, 56] -Triangle: [37, 57, 54] -Triangle: [27, 53, 57] -Triangle: [51, 48, 8] -Triangle: [50, 49, 66] -Triangle: [47, 65, 134] -Triangle: [67, 66, 10] -Triangle: [24, 68, 70] -Triangle: [74, 65, 47] -Triangle: [39, 70, 69] -Triangle: [104, 69, 55] -Triangle: [48, 60, 62] -Triangle: [121, 134, 65] -Triangle: [68, 66, 49] -Triangle: [57, 64, 63] -Triangle: [53, 62, 64] -Triangle: [61, 60, 48] -Triangle: [110, 101, 58] -Triangle: [105, 50, 67] -Triangle: [122, 121, 74] -Triangle: [78, 74, 72] -Triangle: [76, 73, 75] -Triangle: [137, 77, 72] -Triangle: [126, 13, 77] -Triangle: [15, 76, 79] -Triangle: [61, 78, 77] -Triangle: [133, 122, 78] -Triangle: [113, 110, 82] -Triangle: [86, 82, 81] -Triangle: [85, 81, 111] -Triangle: [87, 84, 80] -Triangle: [51, 12, 84] -Triangle: [14, 85, 112] -Triangle: [50, 86, 85] -Triangle: [105, 113, 86] -Triangle: [139, 113, 105] -Triangle: [90, 112, 124] -Triangle: [112, 111, 123] -Triangle: [139, 122, 109] -Triangle: [79, 109, 102] -Triangle: [91, 108, 76] -Triangle: [108, 107, 73] -Triangle: [75, 106, 109] -Triangle: [133, 120, 105] -Triangle: [132, 101, 110] -Triangle: [71, 103, 106] -Triangle: [135, 104, 100] -Triangle: [99, 103, 71] -Triangle: [131, 100, 97] -Triangle: [129, 96, 104] -Triangle: [111, 98, 119] -Triangle: [107, 99, 44] -Triangle: [125, 88, 94] -Triangle: [16, 88, 93] -Triangle: [20, 6, 92] -Triangle: [30, 20, 89] -Triangle: [30, 95, 97] -Triangle: [128, 94, 96] -Triangle: [91, 93, 127] -Triangle: [90, 92, 6] -Triangle: [101, 98, 45] -Triangle: [126, 127, 5] -Triangle: [28, 128, 129] -Triangle: [18, 125, 128] -Triangle: [123, 119, 46] -Triangle: [32, 129, 135] -Triangle: [54, 131, 118] -Triangle: [63, 135, 131] -Triangle: [59, 132, 138] -Triangle: [61, 51, 120] -Triangle: [83, 138, 139] -Triangle: [124, 123, 80] -Triangle: [115, 124, 84] -Triangle: [87, 139, 120] -Triangle: [109, 122, 133] -Triangle: [91, 126, 137] -Triangle: [108, 137, 136] -Triangle: [110, 113, 109] -Triangle: [106, 103, 134] -Triangle: [130, 134, 103] -Triangle: [136, 130, 99] -Triangle: [88, 125, 127] -Triangle: [89, 92, 116] -Triangle: [95, 89, 114] -Triangle: [95, 117, 118] -Triangle: [115, 116, 92] -Triangle: [132, 119, 98] -Triangle: [138, 110, 106] -Triangle: [138, 121, 122] -Triangle: [141, 140, 144] -Triangle: [143, 147, 146] -Triangle: [148, 150, 151] -Triangle: [150, 152, 153] -Triangle: [140, 148, 149] -Triangle: [143, 141, 145] -Triangle: [152, 154, 155] -Triangle: [154, 156, 157] -Triangle: [156, 158, 159] -Triangle: [158, 160, 161] -Triangle: [160, 162, 163] -Triangle: [162, 164, 165] -Triangle: [164, 166, 167] -Triangle: [166, 168, 169] -Triangle: [168, 170, 171] -Triangle: [170, 172, 173] -Triangle: [172, 174, 175] -Triangle: [174, 176, 177] -Triangle: [176, 178, 179] -Triangle: [178, 180, 181] -Triangle: [180, 182, 183] -Triangle: [182, 184, 185] -Triangle: [184, 186, 187] -Triangle: [186, 188, 189] -Triangle: [188, 190, 191] -Triangle: [190, 192, 193] -Triangle: [192, 194, 195] -Triangle: [194, 196, 197] -Triangle: [196, 198, 199] -Triangle: [198, 200, 201] -Triangle: [200, 202, 203] -Triangle: [202, 204, 205] -Triangle: [204, 206, 207] -Triangle: [206, 208, 209] -Triangle: [208, 210, 211] -Triangle: [210, 212, 213] -Triangle: [212, 214, 215] -Triangle: [214, 216, 217] -Triangle: [216, 218, 219] -Triangle: [218, 220, 221] -Triangle: [220, 222, 223] -Triangle: [222, 224, 225] -Triangle: [146, 227, 226] -Triangle: [146, 147, 145] -Triangle: [227, 229, 228] -Triangle: [229, 231, 230] -Triangle: [231, 233, 232] -Triangle: [233, 235, 234] -Triangle: [235, 237, 236] -Triangle: [237, 239, 238] -Triangle: [239, 241, 240] -Triangle: [241, 243, 242] -Triangle: [243, 245, 244] -Triangle: [245, 247, 246] -Triangle: [247, 249, 248] -Triangle: [249, 251, 250] -Triangle: [251, 253, 252] -Triangle: [253, 255, 254] -Triangle: [255, 257, 256] -Triangle: [257, 259, 258] -Triangle: [259, 261, 260] -Triangle: [261, 263, 262] -Triangle: [263, 265, 264] -Triangle: [265, 267, 266] -Triangle: [267, 269, 268] -Triangle: [269, 271, 270] -Triangle: [271, 273, 272] -Triangle: [273, 275, 274] -Triangle: [275, 277, 276] -Triangle: [277, 279, 278] -Triangle: [279, 281, 280] -Triangle: [281, 283, 282] -Triangle: [283, 285, 284] -Triangle: [285, 287, 286] -Triangle: [287, 289, 288] -Triangle: [289, 291, 290] -Triangle: [291, 293, 292] -Triangle: [293, 295, 294] -Triangle: [295, 297, 296] -Triangle: [297, 299, 298] -Triangle: [299, 301, 300] -Triangle: [301, 303, 302] -Triangle: [303, 305, 304] -Triangle: [305, 307, 306] -Triangle: [306, 307, 225] -Triangle: [223, 225, 307] -Triangle: [221, 307, 305] -Triangle: [221, 303, 217] -Triangle: [299, 217, 303] -Triangle: [217, 299, 213] -Triangle: [295, 213, 299] -Triangle: [213, 295, 209] -Triangle: [291, 209, 295] -Triangle: [209, 291, 205] -Triangle: [287, 205, 291] -Triangle: [205, 287, 201] -Triangle: [283, 201, 287] -Triangle: [201, 283, 197] -Triangle: [279, 197, 283] -Triangle: [197, 279, 193] -Triangle: [275, 193, 279] -Triangle: [193, 275, 189] -Triangle: [271, 189, 275] -Triangle: [189, 271, 185] -Triangle: [267, 185, 271] -Triangle: [185, 267, 181] -Triangle: [263, 181, 267] -Triangle: [181, 263, 177] -Triangle: [259, 177, 263] -Triangle: [177, 259, 173] -Triangle: [255, 173, 259] -Triangle: [173, 255, 169] -Triangle: [251, 169, 255] -Triangle: [169, 251, 165] -Triangle: [247, 165, 251] -Triangle: [165, 247, 161] -Triangle: [243, 161, 247] -Triangle: [161, 243, 157] -Triangle: [239, 157, 243] -Triangle: [157, 239, 153] -Triangle: [235, 153, 239] -Triangle: [153, 235, 149] -Triangle: [231, 149, 235] -Triangle: [149, 231, 145] -Triangle: [231, 229, 227] -Triangle: [309, 311, 310] -Triangle: [311, 313, 312] -Triangle: [313, 315, 314] -Triangle: [313, 311, 315] -Triangle: [311, 309, 315] -Triangle: [315, 317, 316] -Triangle: [317, 309, 308] -Triangle: [316, 308, 314] -Triangle: [308, 310, 314] -Triangle: [319, 321, 320] -Triangle: [321, 323, 322] -Triangle: [323, 325, 324] -Triangle: [323, 321, 325] -Triangle: [321, 319, 325] -Triangle: [325, 327, 326] -Triangle: [327, 319, 318] -Triangle: [326, 318, 324] -Triangle: [318, 320, 324] -Triangle: [329, 331, 330] -Triangle: [331, 333, 332] -Triangle: [333, 335, 334] -Triangle: [333, 331, 335] -Triangle: [331, 329, 335] -Triangle: [335, 337, 336] -Triangle: [337, 329, 328] -Triangle: [336, 328, 330] -Triangle: [330, 332, 334] -Triangle: [339, 341, 340] -Triangle: [341, 343, 342] -Triangle: [343, 345, 344] -Triangle: [343, 341, 345] -Triangle: [341, 339, 345] -Triangle: [345, 347, 346] -Triangle: [347, 339, 338] -Triangle: [346, 338, 344] -Triangle: [338, 340, 344] diff --git a/via004.txt b/via004.txt deleted file mode 100644 index e612e43..0000000 --- a/via004.txt +++ /dev/null @@ -1,17393 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 3 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.032267597310272 - - - - Parent: None - Children: ['Bone.001', 'Bone.002'] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.806300542240752 - - - - Parent: Bone - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.441302752064764 - - - - Parent: Bone - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993494749069214 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999140501022339 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998976588249207 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 8.886320756573696e-06 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995018839836121 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0014024199917912483 -Vertex 4: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9966136813163757 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.002796382177621126 -Vertex 5: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9901708364486694 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.000261378416325897 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995607137680054 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996989965438843 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 8: -Vertex groups: 2 - Group: 'Bone', Weight: 0.99933922290802 - Group: 'Bone.002', Weight: 0.0 -Vertex 9: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9898892641067505 - Group: 'Bone.002', Weight: 0.0 -Vertex 10: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8973925709724426 - Group: 'Bone.002', Weight: 0.0 -Vertex 11: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9977955222129822 - Group: 'Bone.002', Weight: 0.0 -Vertex 12: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9994223713874817 - Group: 'Bone.002', Weight: 0.0 -Vertex 13: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9975454211235046 - Group: 'Bone.002', Weight: 0.0 -Vertex 14: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9930512309074402 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 15: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9890105724334717 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 16: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9926339983940125 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 17: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9901430010795593 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 18: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9945638179779053 - Group: 'Bone.002', Weight: 0.0 -Vertex 19: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9989067912101746 - Group: 'Bone.002', Weight: 0.0 -Vertex 20: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995865821838379 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998484253883362 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999358057975769 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998714327812195 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998821020126343 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999128580093384 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997749924659729 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998809695243835 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999704957008362 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999953031539917 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998546242713928 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 31: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9993270039558411 - Group: 'Bone.002', Weight: 0.0 -Vertex 32: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999361038208008 - Group: 'Bone.002', Weight: 0.0 -Vertex 33: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999458372592926 - Group: 'Bone.002', Weight: 0.0 -Vertex 34: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9875554442405701 - Group: 'Bone.002', Weight: 0.0 -Vertex 35: -Vertex groups: 2 - Group: 'Bone', Weight: 0.992088794708252 - Group: 'Bone.002', Weight: 0.0 -Vertex 36: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9835594892501831 - Group: 'Bone.002', Weight: 0.0 -Vertex 37: -Vertex groups: 2 - Group: 'Bone', Weight: 0.99681556224823 - Group: 'Bone.002', Weight: 0.0 -Vertex 38: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9988539218902588 - Group: 'Bone.002', Weight: 0.0 -Vertex 39: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997683763504028 - Group: 'Bone.002', Weight: 0.0 -Vertex 40: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999881982803345 - Group: 'Bone.002', Weight: 0.0 -Vertex 41: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999693632125854 - Group: 'Bone.002', Weight: 0.0 -Vertex 42: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9931342005729675 - Group: 'Bone.002', Weight: 0.0 -Vertex 43: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9885873794555664 - Group: 'Bone.002', Weight: 0.0 -Vertex 44: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9938858151435852 - Group: 'Bone.002', Weight: 0.0 -Vertex 45: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9986885786056519 - Group: 'Bone.002', Weight: 0.0 -Vertex 46: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999690055847168 - Group: 'Bone.002', Weight: 0.0 -Vertex 47: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999625086784363 - Group: 'Bone.002', Weight: 0.0 -Vertex 48: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999620318412781 - Group: 'Bone.002', Weight: 0.0 -Vertex 49: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999991655349731 - Group: 'Bone.002', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 51: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 52: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999983906745911 - Group: 'Bone.002', Weight: 0.0 -Vertex 53: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9956710934638977 - Group: 'Bone.002', Weight: 0.0 -Vertex 54: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9983327388763428 - Group: 'Bone.002', Weight: 0.0 -Vertex 55: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998527765274048 - Group: 'Bone.002', Weight: 0.0 -Vertex 56: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999991655349731 - Group: 'Bone.002', Weight: 0.0 -Vertex 57: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9984515905380249 - Group: 'Bone.002', Weight: 0.0 -Vertex 58: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9328348636627197 -Vertex 59: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9878579378128052 -Vertex 60: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9875026345252991 -Vertex 61: -Vertex groups: 1 - Group: 'Bone', Weight: 0.995783805847168 -Vertex 62: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9909143447875977 -Vertex 63: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9988660216331482 - Group: 'Bone.002', Weight: 0.0 -Vertex 64: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987876415252686 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9915236234664917 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 66: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9669307470321655 - Group: 'Bone.002', Weight: 0.0 -Vertex 67: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9855842590332031 - Group: 'Bone.001', Weight: 0.00035250975633971393 - Group: 'Bone.002', Weight: 0.0 -Vertex 68: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987730979919434 - Group: 'Bone.001', Weight: 0.0015351208858191967 - Group: 'Bone.002', Weight: 0.0 -Vertex 69: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9936056137084961 - Group: 'Bone.002', Weight: 0.0 -Vertex 70: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9982860088348389 - Group: 'Bone.002', Weight: 0.0 -Vertex 71: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991427659988403 - Group: 'Bone.001', Weight: 0.000677319651003927 - Group: 'Bone.002', Weight: 0.0 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9976086616516113 - Group: 'Bone.002', Weight: 0.0 -Vertex 73: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9991620779037476 - Group: 'Bone.002', Weight: 0.0 -Vertex 74: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9964457750320435 - Group: 'Bone.002', Weight: 0.0 -Vertex 75: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9989970326423645 - Group: 'Bone.002', Weight: 0.0 -Vertex 76: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9959878921508789 - Group: 'Bone.002', Weight: 0.0 -Vertex 77: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9904032349586487 - Group: 'Bone.002', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9973605275154114 - Group: 'Bone.002', Weight: 0.0 -Vertex 79: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995262622833252 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 80: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998663663864136 - Group: 'Bone.002', Weight: 0.0 -Vertex 81: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9996852278709412 - Group: 'Bone.002', Weight: 0.0 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9967193007469177 - Group: 'Bone.002', Weight: 0.0 -Vertex 83: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9950937032699585 - Group: 'Bone.002', Weight: 0.0 -Vertex 84: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9927351474761963 - Group: 'Bone.002', Weight: 0.0 -Vertex 85: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9921258687973022 - Group: 'Bone.002', Weight: 0.0 -Vertex 86: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9994399547576904 - Group: 'Bone.002', Weight: 0.0 -Vertex 87: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9996784925460815 - Group: 'Bone.002', Weight: 0.0 -Vertex 88: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9996234178543091 - Group: 'Bone.002', Weight: 0.0 -Vertex 89: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9980675578117371 - Group: 'Bone.002', Weight: 0.0 -Vertex 90: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9964366555213928 - Group: 'Bone.002', Weight: 0.0 -Vertex 91: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9896067976951599 - Group: 'Bone.002', Weight: 0.0 -Vertex 92: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9923672676086426 - Group: 'Bone.002', Weight: 0.0 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9985401630401611 - Group: 'Bone.002', Weight: 0.0 -Vertex 94: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999905824661255 - Group: 'Bone.002', Weight: 0.0 -Vertex 95: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998685121536255 - Group: 'Bone.002', Weight: 0.0 -Vertex 96: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9975008964538574 - Group: 'Bone.002', Weight: 0.0 -Vertex 97: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9875757098197937 - Group: 'Bone.002', Weight: 0.0 -Vertex 98: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999995768070221 - Group: 'Bone.002', Weight: 0.0 -Vertex 99: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999992847442627 -Vertex 100: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9991328716278076 -Vertex 101: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9974058866500854 -Vertex 102: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998012781143188 -Vertex 103: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999918341636658 - Group: 'Bone.002', Weight: 0.0 -Vertex 104: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999992847442627 - Group: 'Bone.002', Weight: 0.0 -Vertex 105: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999931454658508 - Group: 'Bone.002', Weight: 0.0 -Vertex 106: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999552369117737 - Group: 'Bone.002', Weight: 0.0 -Vertex 107: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999707937240601 - Group: 'Bone.002', Weight: 0.0 -Vertex 108: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9778648614883423 -Vertex 109: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999997615814209 -Vertex 110: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999837875366211 -Vertex 111: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999995768070221 -Vertex 112: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999997615814209 -Vertex 113: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9989330768585205 -Vertex 114: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999974250793457 -Vertex 115: -Vertex groups: 1 - Group: 'Bone', Weight: 0.983939528465271 -Vertex 116: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9860344529151917 -Vertex 117: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9410684704780579 -Vertex 118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999970197677612 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 119: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 120: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984687566757202 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9665141105651855 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9964662194252014 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 123: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993263483047485 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 124: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13656632602214813 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 125: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05648178979754448 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 126: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 127: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999981701374054 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 128: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999648928642273 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 129: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9889998435974121 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 130: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5369105935096741 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 131: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02825029566884041 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10189791768789291 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9403721690177917 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9048107862472534 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 135: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989590048789978 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 136: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999933242797852 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 137: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 138: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999975860118866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 139: -Vertex groups: 3 - Group: 'Bone', Weight: 0.17993703484535217 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 140: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9291378855705261 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 141: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9902095794677734 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999541163444519 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999479353427887 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 146: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9623599648475647 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 147: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9469801783561707 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 148: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999527335166931 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 149: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9988829493522644 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 150: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45572513341903687 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3374010920524597 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997487664222717 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993814826011658 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999554753303528 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 155: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9681450128555298 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 156: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7415648102760315 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 157: -Vertex groups: 3 - Group: 'Bone', Weight: 0.09939457476139069 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 158: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4395977854728699 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 159: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9534762501716614 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9416903257369995 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992632865905762 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999810457229614 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 163: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982290267944336 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 164: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999953508377075 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 165: -Vertex groups: 3 - Group: 'Bone', Weight: 0.196673184633255 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 166: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9694257974624634 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 167: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991483688354492 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 168: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998725056648254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 169: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9919360280036926 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999024868011475 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 171: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 172: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999454021453857 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 173: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994763135910034 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 174: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999935626983643 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 175: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999980926513672 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 176: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9988188743591309 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 177: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999263286590576 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 178: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999169707298279 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 179: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994115829467773 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 180: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998322129249573 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 181: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994419813156128 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 182: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989365339279175 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 183: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996470212936401 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 184: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9976351261138916 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 185: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9974293112754822 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 186: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998065233230591 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 187: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993095397949219 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 188: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984397888183594 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 189: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992796778678894 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 190: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998985528945923 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 191: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999977350234985 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 192: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999902606010437 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 193: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996678829193115 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 194: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999842643737793 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 195: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999060034751892 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998624920845032 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 197: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999924898147583 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 199: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998538494110107 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998122453689575 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996516108512878 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 202: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999672174453735 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 203: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999630451202393 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 204: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999743700027466 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 205: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999871253967285 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999112486839294 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 207: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995536804199219 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 208: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997031092643738 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 209: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999663829803467 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 210: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998994469642639 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 211: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999599456787109 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 212: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998582601547241 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 213: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998067617416382 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 214: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999251365661621 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 215: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999758005142212 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 216: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999265670776367 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 217: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998090863227844 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 218: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999857544898987 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 219: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 220: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 221: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 222: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 223: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999808073043823 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 224: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 225: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 227: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 228: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999986886978149 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 229: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999832510948181 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 230: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999440312385559 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 231: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999971330165863 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 232: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999904632568359 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 233: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996528625488281 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 234: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 235: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 236: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999981701374054 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 237: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999967813491821 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999492168426514 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 239: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 240: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999723434448242 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 241: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999860525131226 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00012288331345189363 -Vertex 242: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999949932098389 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0008773925947025418 -Vertex 243: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999974370002747 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0017749837134033442 -Vertex 244: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999686479568481 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0011073192581534386 -Vertex 245: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999893307685852 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00012030086509184912 -Vertex 246: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 247: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999881386756897 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 248: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 249: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999914169311523 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 250: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999980926513672 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 251: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998274445533752 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998955726623535 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995160102844238 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 254: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9873847365379333 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 255: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9967389106750488 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 256: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999668598175049 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 257: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996683597564697 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 258: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991827011108398 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 259: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998806715011597 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00023249034711625427 -Vertex 260: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998887181282043 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00024489988572895527 -Vertex 261: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999951958656311 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00018559017917141318 -Vertex 262: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.003564464394003153 -Vertex 263: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992847442627 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008755754679441452 -Vertex 264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01322602853178978 -Vertex 265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999707341194153 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.011140457354485989 -Vertex 266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999918341636658 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.004931670613586903 -Vertex 267: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999417662620544 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 268: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995821714401245 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996018409729004 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 270: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997426271438599 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 271: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997210502624512 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 272: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999420046806335 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 273: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999402761459351 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 274: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0001728601346258074 -Vertex 275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999850988388062 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0017232410609722137 -Vertex 276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999993443489075 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.013790298253297806 -Vertex 277: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03080158494412899 -Vertex 278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999898672103882 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03221651166677475 -Vertex 279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999999463558197 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.02222486399114132 -Vertex 280: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01338772103190422 -Vertex 281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998940825462341 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00033574062399566174 -Vertex 282: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999103546142578 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996775388717651 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9978793859481812 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982677102088928 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 286: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998517036437988 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999926686286926 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 288: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995614290237427 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 289: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 290: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990357160568237 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 291: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999667406082153 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 292: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999365210533142 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 293: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9966245293617249 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 294: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9972779154777527 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 296: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999096691608429 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 297: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995604753494263 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 298: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998631477355957 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 299: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 300: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994884729385376 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 301: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997768998146057 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 302: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999933242797852 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 303: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999949038028717 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 304: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 305: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993661642074585 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 306: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993976950645447 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 307: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996969103813171 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 308: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999788403511047 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 309: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 310: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999975562095642 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 311: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999758005142212 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 312: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999546408653259 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 313: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999533295631409 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 314: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992302060127258 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 315: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9859316349029541 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 316: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9967353940010071 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 317: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999993443489075 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 318: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 319: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998969435691833 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 320: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9961526989936829 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 321: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9576131701469421 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 322: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9331770539283752 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 323: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997254610061646 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 324: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998437762260437 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 325: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996889233589172 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 326: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999440312385559 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 327: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999301433563232 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 328: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993872046470642 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 329: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998568296432495 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 330: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999865293502808 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 331: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999583959579468 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009316429495811462 -Vertex 332: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996576309204102 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0019012560369446874 -Vertex 333: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9978016018867493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.010786124505102634 -Vertex 334: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999179840087891 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 3.956871296395548e-05 -Vertex 335: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996876120567322 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00485511589795351 -Vertex 336: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997678399085999 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.001953128259629011 -Vertex 337: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9988194108009338 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 2.6683435862651095e-05 -Vertex 338: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999431371688843 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01502913236618042 -Vertex 339: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999787211418152 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0424349345266819 -Vertex 340: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9953295588493347 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0052465652115643024 -Vertex 341: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9941897392272949 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.026648182421922684 -Vertex 342: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984111785888672 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.022367872297763824 -Vertex 343: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993993043899536 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05675549805164337 -Vertex 344: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.033230170607566833 -Vertex 345: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998005032539368 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.07206934690475464 -Vertex 346: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9903466701507568 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 347: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996842741966248 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 348: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999753832817078 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0011597329284995794 -Vertex 349: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998535513877869 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0003178885963279754 -Vertex 350: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998673796653748 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0024882936850190163 -Vertex 351: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999505281448364 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 352: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999838471412659 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 353: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999290704727173 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.001022307318635285 -Vertex 354: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998811483383179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0018548439256846905 -Vertex 355: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999688267707825 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 7.987501157913357e-05 -Vertex 356: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999973177909851 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 9.685372788226232e-06 -Vertex 357: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999895095825195 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0013542429078370333 -Vertex 358: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999580979347229 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 359: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999956488609314 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 360: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999731183052063 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 361: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999715089797974 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00018320504750590771 -Vertex 362: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999955892562866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00036996265407651663 -Vertex 363: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999943375587463 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.001464280765503645 -Vertex 364: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.002655570162460208 -Vertex 365: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999948740005493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.003069458529353142 -Vertex 366: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999825358390808 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0042037987150251865 -Vertex 367: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999796748161316 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.014732735231518745 -Vertex 368: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999914169311523 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.022533919662237167 -Vertex 369: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01812240667641163 -Vertex 370: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.027901984751224518 -Vertex 371: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.013408998027443886 -Vertex 372: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.020903348922729492 -Vertex 373: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0073663173243403435 -Vertex 374: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.012793264351785183 -Vertex 375: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0029728375375270844 -Vertex 376: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.006054474972188473 -Vertex 377: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00046238512732088566 -Vertex 378: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0015202256618067622 -Vertex 379: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 380: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 5.712005804525688e-05 -Vertex 381: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999987781047821 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0006712661706842482 -Vertex 382: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999856948852539 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0023292347323149443 -Vertex 383: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999889135360718 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0045168157666921616 -Vertex 384: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998970627784729 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.020642874762415886 -Vertex 385: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999949336051941 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03634805604815483 -Vertex 386: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.043511394411325455 -Vertex 387: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03290313109755516 -Vertex 388: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.021295180544257164 -Vertex 389: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.011249031871557236 -Vertex 390: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0032442151568830013 -Vertex 391: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00040295158396475017 -Vertex 392: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999971389770508 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 393: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.012826342135667801 -Vertex 394: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008795028552412987 -Vertex 395: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.004040618427097797 -Vertex 396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0011178128188475966 -Vertex 397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999987483024597 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 5.6040640629362315e-05 -Vertex 398: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999934434890747 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 399: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999821186065674 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 8.559704292565584e-05 -Vertex 400: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997069835662842 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00023194386449176818 -Vertex 401: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999855756759644 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 4.3204407120356336e-05 -Vertex 402: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998152256012 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009194676764309406 -Vertex 403: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.002688489854335785 -Vertex 404: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999979734420776 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0004408805980347097 -Vertex 405: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999971985816956 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 406: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988079071045 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 407: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999113082885742 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 8.977699326351285e-05 -Vertex 408: -Vertex groups: 3 - Group: 'Bone', Weight: 0.99998539686203 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009795838966965675 -Vertex 409: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0018158280290663242 -Vertex 410: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 8.89782386366278e-05 -Vertex 411: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 412: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 413: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999975562095642 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 414: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 415: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 416: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 417: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 418: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 419: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 420: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 421: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999963045120239 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 422: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 423: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996612071990967 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 424: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0014376906910911202 -Vertex 425: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992333650588989 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 426: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996216297149658 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0002626751665957272 -Vertex 427: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999779462814331 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 1.223145955009386e-05 -Vertex 428: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998263120651245 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0014928141608834267 -Vertex 429: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999979734420776 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 5.2120492910034955e-05 -Vertex 430: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997223615646362 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 431: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 432: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998758435249329 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 433: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999967217445374 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 434: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 435: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999269247055054 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 436: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992846250534058 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 437: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999302864074707 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 438: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992881417274475 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 439: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999857544898987 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 440: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996179938316345 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 441: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999426007270813 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 442: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 443: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 444: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999999463558197 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 445: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 446: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 447: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 448: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 449: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 450: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997850656509399 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 451: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9963912963867188 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 452: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9969407320022583 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 453: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996772408485413 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 454: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999489963054657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 455: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999850869178772 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 456: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998323321342468 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 457: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997162818908691 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 458: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999995768070221 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 459: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999987781047821 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 460: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999637603759766 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 461: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999898672103882 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 462: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998701810836792 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 463: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9966903328895569 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 464: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999565482139587 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 465: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997943639755249 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 466: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9863417148590088 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 467: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999287128448486 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 468: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999342560768127 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 469: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999975562095642 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 470: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999957799911499 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 471: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9973278045654297 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 472: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999788761138916 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 473: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998971164226532 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 474: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9973424673080444 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 475: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996464848518372 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 476: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999956488609314 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 477: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999793171882629 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 478: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989707469940186 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 479: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998487651348114 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 480: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982736110687256 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 481: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999936819076538 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00266234390437603 -Vertex 482: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.000817081134300679 -Vertex 483: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984895586967468 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009174998849630356 -Vertex 484: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987809062004089 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0003584224032238126 -Vertex 485: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0005300515913404524 -Vertex 486: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0005466095171868801 -Vertex 487: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996894598007202 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.08230508118867874 -Vertex 488: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.025097681209445 -Vertex 489: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00916995294392109 -Vertex 490: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.002244403585791588 -Vertex 491: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0016704959562048316 -Vertex 492: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.005134686827659607 -Vertex 493: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999572038650513 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 494: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999820590019226 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0007210864569060504 -Vertex 495: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997081160545349 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009440776892006397 -Vertex 496: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999977350234985 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.013041676953434944 -Vertex 497: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998884797096252 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0586375817656517 -Vertex 498: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.16845200955867767 -Vertex 499: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998761415481567 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0674382895231247 -Vertex 500: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999986290931702 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01874304749071598 -Vertex 501: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00881212204694748 -Vertex 502: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.016609465703368187 -Vertex 503: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999803304672241 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 504: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992480874061584 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009340077638626099 -Vertex 505: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990990161895752 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.15984342992305756 -Vertex 506: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9913684129714966 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.39569875597953796 -Vertex 507: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9985595941543579 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5897568464279175 -Vertex 508: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998142719268799 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.32958635687828064 -Vertex 509: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998965859413147 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.02520555816590786 -Vertex 510: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999096393585205 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.09321025758981705 -Vertex 511: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9966505765914917 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.015619201585650444 -Vertex 512: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982714653015 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 513: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.04570813477039337 -Vertex 514: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.032474540174007416 -Vertex 515: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999741911888123 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.04921639710664749 -Vertex 516: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997791051864624 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.18468230962753296 -Vertex 517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999958276748657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.12445764243602753 -Vertex 518: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.09782565385103226 -Vertex 519: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9810036420822144 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01875966042280197 -Vertex 521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996950030326843 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.14653974771499634 -Vertex 522: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986147880554199 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7572050094604492 -Vertex 523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989152550697327 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5894435048103333 -Vertex 524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9972444772720337 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7847380042076111 -Vertex 525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983991980552673 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.056952740997076035 -Vertex 526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9963884353637695 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1793602705001831 -Vertex 527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9833149909973145 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.02236171066761017 -Vertex 528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999984502792358 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.22461535036563873 -Vertex 530: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.31905144453048706 -Vertex 531: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998499155044556 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.4052160978317261 -Vertex 532: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999033808708191 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5619263648986816 -Vertex 533: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999529719352722 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.4102277159690857 -Vertex 534: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999724626541138 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.31565916538238525 -Vertex 535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9973145127296448 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9789534211158752 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.055653512477874756 -Vertex 537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9767932891845703 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.15693551301956177 -Vertex 538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986164569854736 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.07978400588035583 -Vertex 539: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996263384819031 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8735532164573669 -Vertex 540: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991037845611572 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7643727660179138 -Vertex 541: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999334454536438 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.6930586099624634 -Vertex 542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9974350929260254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.039098892360925674 -Vertex 543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9889463186264038 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03422299027442932 -Vertex 544: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997444152832031 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999950647354126 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.001285220729187131 -Vertex 546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999111890792847 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.003792918985709548 -Vertex 547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999592304229736 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0039772046729922295 -Vertex 548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999943733215332 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.007242455147206783 -Vertex 549: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997580051422119 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03211253881454468 -Vertex 550: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999939203262329 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.055691223591566086 -Vertex 551: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0652494877576828 -Vertex 552: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.04945043474435806 -Vertex 553: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.029558971524238586 -Vertex 554: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999975562095642 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.015599019825458527 -Vertex 555: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999993622303009 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0049021197482943535 -Vertex 556: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0007436602609232068 -Vertex 557: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999887228012085 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008465276099741459 -Vertex 558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997564554214478 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.02937522530555725 -Vertex 559: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997672438621521 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.06844642013311386 -Vertex 560: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999961256980896 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1150512844324112 -Vertex 561: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.15114974975585938 -Vertex 562: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988079071045 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.10964338481426239 -Vertex 563: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999885559082031 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05222625285387039 -Vertex 564: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999935030937195 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.023472700268030167 -Vertex 565: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999986290931702 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.006554079242050648 -Vertex 566: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999971389770508 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0011952179484069347 -Vertex 567: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999394416809082 - Group: 'Bone.001', Weight: 2.795727959892247e-05 - Group: 'Bone.002', Weight: 0.0018906767945736647 -Vertex 568: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999517798423767 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.015594683587551117 -Vertex 569: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996131062507629 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.04462820664048195 -Vertex 570: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997227787971497 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.083021380007267 -Vertex 571: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999503493309021 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.13299164175987244 -Vertex 572: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999898076057434 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.2984304428100586 -Vertex 573: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998152256012 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.3601067066192627 -Vertex 574: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999850392341614 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.42261338233947754 -Vertex 575: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999872446060181 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1363813579082489 -Vertex 576: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03926926851272583 -Vertex 577: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008790645748376846 -Vertex 578: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999973773956299 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0013572005555033684 -Vertex 579: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999911189079285 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0016123964451253414 -Vertex 580: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999918341636658 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01107463613152504 -Vertex 581: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999884366989136 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05126358941197395 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.923469066619873 - Group: 'Bone', Weight: 0.9999927282333374 - Group: 'Bone.001', Weight: 0.0 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9980578422546387 - Group: 'Bone', Weight: 0.9999947547912598 - Group: 'Bone.001', Weight: 0.0 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.999395489692688 - Group: 'Bone', Weight: 0.9999976754188538 - Group: 'Bone.001', Weight: 0.0 -Vertex 585: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9999045133590698 - Group: 'Bone', Weight: 0.9998378157615662 - Group: 'Bone.001', Weight: 0.0 -Vertex 586: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9997257590293884 - Group: 'Bone', Weight: 0.9998906850814819 - Group: 'Bone.001', Weight: 0.0 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999312162399292 - Group: 'Bone', Weight: 0.9999390244483948 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9998325109481812 - Group: 'Bone', Weight: 0.9998281002044678 -Vertex 589: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9993796944618225 - Group: 'Bone', Weight: 0.9999966025352478 -Vertex 590: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9997034072875977 - Group: 'Bone', Weight: 0.9999988675117493 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9986349940299988 - Group: 'Bone', Weight: 0.9998547434806824 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9963699579238892 - Group: 'Bone', Weight: 0.9994606971740723 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9946269392967224 - Group: 'Bone', Weight: 0.9987334609031677 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9907718300819397 - Group: 'Bone', Weight: 0.9961543083190918 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8759185075759888 - Group: 'Bone', Weight: 0.9999833703041077 - Group: 'Bone.001', Weight: 0.0 -Vertex 596: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999237656593323 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.25310438871383667 -Vertex 597: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999449253082275 - Group: 'Bone.002', Weight: 0.5988920331001282 - Group: 'Bone.001', Weight: 0.0 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999544620513916 - Group: 'Bone.002', Weight: 0.8347110152244568 - Group: 'Bone.001', Weight: 0.0 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9942851066589355 - Group: 'Bone.002', Weight: 0.7956002950668335 - Group: 'Bone.001', Weight: 0.0 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.994565486907959 - Group: 'Bone.002', Weight: 0.8303196430206299 - Group: 'Bone.001', Weight: 0.0 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996248483657837 - Group: 'Bone.002', Weight: 0.8023561239242554 - Group: 'Bone.001', Weight: 0.0 -Vertex 602: -Vertex groups: 3 - Group: 'Bone', Weight: 0.99998939037323 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.598012387752533 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9146872758865356 - Group: 'Bone', Weight: 0.9993077516555786 - Group: 'Bone.001', Weight: 0.0 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9429665803909302 - Group: 'Bone', Weight: 0.9992150068283081 - Group: 'Bone.001', Weight: 0.0 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9676110148429871 - Group: 'Bone', Weight: 0.9979714751243591 - Group: 'Bone.001', Weight: 0.0 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.930732786655426 - Group: 'Bone', Weight: 0.9928622245788574 - Group: 'Bone.001', Weight: 0.0 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8814728856086731 - Group: 'Bone', Weight: 0.9846072793006897 - Group: 'Bone.001', Weight: 0.0 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9169280529022217 - Group: 'Bone', Weight: 0.9993974566459656 - Group: 'Bone.001', Weight: 0.0 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7909039258956909 - Group: 'Bone', Weight: 0.9997313022613525 - Group: 'Bone.001', Weight: 0.0 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6711060404777527 - Group: 'Bone', Weight: 0.9999934434890747 - Group: 'Bone.001', Weight: 0.0 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9966622591018677 - Group: 'Bone', Weight: 0.9999962449073792 - Group: 'Bone.001', Weight: 0.0 -Vertex 612: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9995862245559692 - Group: 'Bone', Weight: 0.9998652338981628 - Group: 'Bone.001', Weight: 0.0 -Vertex 613: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9999734163284302 - Group: 'Bone', Weight: 0.999609649181366 - Group: 'Bone.001', Weight: 0.0 -Vertex 614: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9995982050895691 - Group: 'Bone', Weight: 0.9999089241027832 - Group: 'Bone.001', Weight: 0.0 -Vertex 615: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9999423027038574 - Group: 'Bone', Weight: 0.9999753832817078 - Group: 'Bone.001', Weight: 0.0 -Vertex 616: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999156594276428 - Group: 'Bone', Weight: 0.9997916221618652 -Vertex 617: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9996527433395386 - Group: 'Bone', Weight: 0.9999973177909851 -Vertex 618: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9990848302841187 - Group: 'Bone', Weight: 0.9999872446060181 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9990772604942322 - Group: 'Bone', Weight: 0.999234139919281 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9986538290977478 - Group: 'Bone', Weight: 0.9981839060783386 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9982002973556519 - Group: 'Bone', Weight: 0.9960882067680359 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9977119565010071 - Group: 'Bone', Weight: 0.9902539253234863 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9818002581596375 - Group: 'Bone', Weight: 0.9999557733535767 - Group: 'Bone.001', Weight: 0.0 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9893187880516052 - Group: 'Bone', Weight: 0.9995526075363159 - Group: 'Bone.001', Weight: 0.0 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9884119629859924 - Group: 'Bone', Weight: 0.9989886283874512 - Group: 'Bone.001', Weight: 0.0 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9183441400527954 - Group: 'Bone', Weight: 0.9858736991882324 - Group: 'Bone.001', Weight: 0.0 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9599908590316772 - Group: 'Bone', Weight: 0.9524491429328918 - Group: 'Bone.001', Weight: 0.0 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9971223473548889 - Group: 'Bone', Weight: 0.99833083152771 - Group: 'Bone.001', Weight: 0.0 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.999099612236023 - Group: 'Bone', Weight: 0.9970372915267944 - Group: 'Bone.001', Weight: 0.0 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9966017007827759 - Group: 'Bone', Weight: 0.9995534420013428 - Group: 'Bone.001', Weight: 0.0 -Vertex 631: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.999291181564331 - Group: 'Bone', Weight: 0.9954209327697754 - Group: 'Bone.001', Weight: 0.0 -Vertex 632: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.999759316444397 - Group: 'Bone', Weight: 0.9976599216461182 - Group: 'Bone.001', Weight: 0.0 -Vertex 633: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9999500513076782 - Group: 'Bone', Weight: 0.996829092502594 - Group: 'Bone.001', Weight: 0.0 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9996972680091858 - Group: 'Bone', Weight: 0.9946499466896057 -Vertex 635: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999724626541138 - Group: 'Bone', Weight: 0.999992311000824 -Vertex 636: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999887943267822 - Group: 'Bone', Weight: 0.9999752044677734 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.999692976474762 - Group: 'Bone', Weight: 0.9999979734420776 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9985702633857727 - Group: 'Bone', Weight: 0.999973475933075 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9973607659339905 - Group: 'Bone', Weight: 0.9999752044677734 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.994629442691803 - Group: 'Bone', Weight: 0.9999907612800598 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9995477199554443 - Group: 'Bone', Weight: 0.9961274266242981 - Group: 'Bone.001', Weight: 0.0 -Vertex 642: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9977265000343323 - Group: 'Bone', Weight: 0.9992119669914246 - Group: 'Bone.001', Weight: 0.0 -Vertex 643: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9986304640769958 - Group: 'Bone', Weight: 0.9989516735076904 - Group: 'Bone.001', Weight: 0.0 -Vertex 644: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9996674656867981 - Group: 'Bone', Weight: 0.9995225667953491 - Group: 'Bone.001', Weight: 0.0 -Vertex 645: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9998922944068909 - Group: 'Bone', Weight: 0.9991153478622437 - Group: 'Bone.001', Weight: 0.0 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9992789626121521 - Group: 'Bone', Weight: 0.9989103078842163 -Vertex 647: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999879598617554 - Group: 'Bone', Weight: 0.9993593692779541 -Vertex 648: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999925494194031 - Group: 'Bone', Weight: 0.9998734593391418 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999391436576843 - Group: 'Bone', Weight: 0.9999916553497314 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9993279576301575 - Group: 'Bone', Weight: 0.9998896718025208 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9983905553817749 - Group: 'Bone', Weight: 0.9999186992645264 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9754817485809326 - Group: 'Bone', Weight: 0.997921884059906 - Group: 'Bone.001', Weight: 0.0 -Vertex 653: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9768460988998413 - Group: 'Bone', Weight: 0.9978486895561218 - Group: 'Bone.001', Weight: 0.0 -Vertex 654: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9758068323135376 - Group: 'Bone', Weight: 0.9986057877540588 - Group: 'Bone.001', Weight: 0.0 -Vertex 655: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9823458790779114 - Group: 'Bone', Weight: 0.998256266117096 - Group: 'Bone.001', Weight: 0.0 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9785882234573364 - Group: 'Bone', Weight: 0.9987844228744507 -Vertex 657: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9905589818954468 - Group: 'Bone', Weight: 0.9995749592781067 -Vertex 658: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9929848909378052 - Group: 'Bone', Weight: 0.9994262456893921 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9987969994544983 - Group: 'Bone', Weight: 0.9998974204063416 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9946125149726868 - Group: 'Bone', Weight: 0.9994920492172241 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9922517538070679 - Group: 'Bone', Weight: 0.9997602701187134 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.901542067527771 - Group: 'Bone', Weight: 0.8408640027046204 - Group: 'Bone.001', Weight: 0.0 -Vertex 663: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8814685940742493 - Group: 'Bone', Weight: 0.8202143907546997 - Group: 'Bone.001', Weight: 0.0 -Vertex 664: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8796067237854004 - Group: 'Bone', Weight: 0.8449786901473999 - Group: 'Bone.001', Weight: 0.0 -Vertex 665: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8903717398643494 - Group: 'Bone', Weight: 0.8649781346321106 - Group: 'Bone.001', Weight: 0.0 -Vertex 666: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9028704166412354 - Group: 'Bone', Weight: 0.8968266844749451 -Vertex 667: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9431918859481812 - Group: 'Bone', Weight: 0.9724026918411255 -Vertex 668: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9599204659461975 - Group: 'Bone', Weight: 0.9838087558746338 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9928718209266663 - Group: 'Bone', Weight: 0.995404064655304 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9891787767410278 - Group: 'Bone', Weight: 0.9832557439804077 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9860968589782715 - Group: 'Bone', Weight: 0.9988484978675842 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.979873776435852 - Group: 'Bone', Weight: 0.99366295337677 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8985537886619568 - Group: 'Bone', Weight: 0.9516888856887817 - Group: 'Bone.001', Weight: 0.0 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8712033629417419 - Group: 'Bone', Weight: 0.8425947427749634 - Group: 'Bone.001', Weight: 0.0 -Vertex 675: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8620827198028564 - Group: 'Bone', Weight: 0.7697464823722839 - Group: 'Bone.001', Weight: 0.0 -Vertex 676: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.831993579864502 - Group: 'Bone', Weight: 0.7558072805404663 - Group: 'Bone.001', Weight: 0.0 -Vertex 677: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.8510757088661194 - Group: 'Bone', Weight: 0.783178448677063 - Group: 'Bone.001', Weight: 0.0 -Vertex 678: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9048309326171875 - Group: 'Bone', Weight: 0.7370744347572327 -Vertex 679: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9154532551765442 - Group: 'Bone', Weight: 0.8775427341461182 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9333289861679077 - Group: 'Bone', Weight: 0.9129071831703186 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9521539211273193 - Group: 'Bone', Weight: 0.8895713686943054 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9624306559562683 - Group: 'Bone', Weight: 0.9081023931503296 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.973168134689331 - Group: 'Bone', Weight: 0.9491047859191895 -Vertex 684: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9981743693351746 - Group: 'Bone', Weight: 0.9829258918762207 - Group: 'Bone.001', Weight: 0.0 -Vertex 685: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9899376630783081 - Group: 'Bone', Weight: 0.9819826483726501 - Group: 'Bone.001', Weight: 0.0 -Vertex 686: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9887811541557312 - Group: 'Bone', Weight: 0.9817973375320435 - Group: 'Bone.001', Weight: 0.0 -Vertex 687: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9860764145851135 - Group: 'Bone', Weight: 0.9688435792922974 - Group: 'Bone.001', Weight: 0.0 -Vertex 688: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9287066459655762 - Group: 'Bone', Weight: 0.9865943789482117 - Group: 'Bone.001', Weight: 0.0 -Vertex 689: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9063692092895508 - Group: 'Bone', Weight: 0.983535885810852 -Vertex 690: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9327207803726196 - Group: 'Bone', Weight: 0.9726294875144958 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9601430892944336 - Group: 'Bone', Weight: 0.9901481866836548 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.975913405418396 - Group: 'Bone', Weight: 0.9963647723197937 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9825366735458374 - Group: 'Bone', Weight: 0.9979172348976135 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9938434958457947 - Group: 'Bone', Weight: 0.9995325803756714 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9994486570358276 - Group: 'Bone', Weight: 0.9985846281051636 - Group: 'Bone.001', Weight: 0.0 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9995219111442566 - Group: 'Bone', Weight: 0.999632716178894 - Group: 'Bone.001', Weight: 0.0 -Vertex 697: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9992939233779907 - Group: 'Bone', Weight: 0.9997493028640747 - Group: 'Bone.001', Weight: 0.0 -Vertex 698: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9982247352600098 - Group: 'Bone', Weight: 0.9996792078018188 - Group: 'Bone.001', Weight: 0.0 -Vertex 699: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9929965734481812 - Group: 'Bone', Weight: 0.9999219179153442 - Group: 'Bone.001', Weight: 0.0 -Vertex 700: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9948813319206238 - Group: 'Bone', Weight: 0.9992424845695496 - Group: 'Bone.001', Weight: 0.0 -Vertex 701: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9975477457046509 - Group: 'Bone', Weight: 0.9999530911445618 - Group: 'Bone.001', Weight: 0.0 -Vertex 702: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.9966479539871216 - Group: 'Bone', Weight: 0.9873231053352356 - Group: 'Bone.001', Weight: 0.0 -Vertex 703: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9977725744247437 - Group: 'Bone', Weight: 0.9999002814292908 -Vertex 704: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.991780698299408 - Group: 'Bone', Weight: 0.9954706430435181 -Vertex 705: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9979382753372192 - Group: 'Bone', Weight: 0.9999674558639526 -Vertex 706: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.996033787727356 - Group: 'Bone', Weight: 0.9919121265411377 -Vertex 707: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9888468980789185 - Group: 'Bone', Weight: 0.9999160170555115 -Vertex 708: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9932327270507812 - Group: 'Bone', Weight: 0.9911994934082031 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9901022911071777 - Group: 'Bone', Weight: 0.9983452558517456 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9959675669670105 - Group: 'Bone', Weight: 0.9553627371788025 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9973169565200806 - Group: 'Bone', Weight: 0.9465808272361755 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9916553497314453 - Group: 'Bone', Weight: 0.9962525367736816 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9929556846618652 - Group: 'Bone', Weight: 0.9935692548751831 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9973981380462646 - Group: 'Bone', Weight: 0.9379026293754578 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9991281628608704 - Group: 'Bone', Weight: 0.9499312043190002 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9948171377182007 - Group: 'Bone', Weight: 0.9869480133056641 -Vertex 717: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999564290046692 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1497507393360138 -Vertex 718: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999881386756897 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.04725243151187897 -Vertex 719: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999993085861206 - Group: 'Bone.001', Weight: 8.933640492614359e-05 - Group: 'Bone.002', Weight: 0.006333204451948404 -Vertex 720: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.3082031011581421 -Vertex 721: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999330043792725 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.08564800769090652 -Vertex 722: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999906063079834 - Group: 'Bone.001', Weight: 9.467185009270906e-05 - Group: 'Bone.002', Weight: 0.01316281408071518 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999259114265442 - Group: 'Bone.002', Weight: 0.7649521231651306 - Group: 'Bone.001', Weight: 0.0 -Vertex 724: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999955296516418 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.39776909351348877 -Vertex 725: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999861121177673 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.12454669177532196 -Vertex 726: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999046325683594 - Group: 'Bone.001', Weight: 1.026466088660527e-05 - Group: 'Bone.002', Weight: 0.020050957798957825 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982905983924866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0201918575912714 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992139339447021 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.12190490961074829 -Vertex 729: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994516968727112 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.4175105094909668 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998890221118927 - Group: 'Bone.002', Weight: 0.7759019136428833 - Group: 'Bone.001', Weight: 0.0 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983842372894287 - Group: 'Bone.002', Weight: 0.8342798948287964 - Group: 'Bone.001', Weight: 0.0 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9927424192428589 - Group: 'Bone.002', Weight: 0.8769819140434265 - Group: 'Bone.001', Weight: 0.0 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9950547814369202 - Group: 'Bone.002', Weight: 0.7368948459625244 - Group: 'Bone.001', Weight: 0.0 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9955756664276123 - Group: 'Bone.002', Weight: 0.8385193347930908 - Group: 'Bone.001', Weight: 0.0 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.993298351764679 - Group: 'Bone.002', Weight: 0.8379689455032349 - Group: 'Bone.001', Weight: 0.0 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9904836416244507 - Group: 'Bone.002', Weight: 0.5917633175849915 - Group: 'Bone.001', Weight: 0.0 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9926464557647705 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.011683269403874874 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9981962442398071 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.08608585596084595 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986191987991333 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.3140798807144165 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.997402548789978 - Group: 'Bone.002', Weight: 0.6309459209442139 - Group: 'Bone.001', Weight: 0.0 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9947559833526611 - Group: 'Bone.002', Weight: 0.7024577260017395 - Group: 'Bone.001', Weight: 0.0 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9945875406265259 - Group: 'Bone.002', Weight: 0.6598004698753357 - Group: 'Bone.001', Weight: 0.0 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9823240041732788 - Group: 'Bone.002', Weight: 0.3358905017375946 - Group: 'Bone.001', Weight: 0.0 -Vertex 744: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9947345852851868 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0029216445982456207 -Vertex 745: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986491203308105 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.04213593155145645 -Vertex 746: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991783499717712 - Group: 'Bone.002', Weight: 0.170243501663208 - Group: 'Bone.001', Weight: 0.0 -Vertex 747: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9978029131889343 - Group: 'Bone.002', Weight: 0.38559770584106445 - Group: 'Bone.001', Weight: 0.0 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9934074878692627 - Group: 'Bone.002', Weight: 0.43576931953430176 - Group: 'Bone.001', Weight: 0.0 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9927197694778442 - Group: 'Bone.002', Weight: 0.36468571424484253 - Group: 'Bone.001', Weight: 0.0 -Vertex 750: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9898863434791565 - Group: 'Bone.002', Weight: 0.12332004308700562 - Group: 'Bone.001', Weight: 0.0 -Vertex 751: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999895095825195 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1739703118801117 -Vertex 752: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999236464500427 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.31168049573898315 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994992017745972 - Group: 'Bone.002', Weight: 0.6578315496444702 - Group: 'Bone.001', Weight: 0.0 -Vertex 754: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998558163642883 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.3402913212776184 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991281032562256 - Group: 'Bone.002', Weight: 0.23831818997859955 - Group: 'Bone.001', Weight: 0.0 -Vertex 756: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9976746439933777 - Group: 'Bone.002', Weight: 0.05005349591374397 - Group: 'Bone.001', Weight: 0.0 -Vertex 757: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993566870689392 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997756481170654 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.004404372535645962 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997110962867737 - Group: 'Bone.002', Weight: 0.03569106012582779 - Group: 'Bone.001', Weight: 0.0 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991164803504944 - Group: 'Bone.002', Weight: 0.10064825415611267 - Group: 'Bone.001', Weight: 0.0 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9971724152565002 - Group: 'Bone.002', Weight: 0.11181771755218506 - Group: 'Bone.001', Weight: 0.0 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9948607087135315 - Group: 'Bone.002', Weight: 0.0794815719127655 - Group: 'Bone.001', Weight: 0.0 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9951550960540771 - Group: 'Bone.002', Weight: 0.009465034119784832 - Group: 'Bone.001', Weight: 0.0 -Vertex 764: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982595443725586 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0017522216076031327 -Vertex 765: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999970555305481 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.07418815046548843 -Vertex 766: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999935626983643 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.014804010279476643 -Vertex 767: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999951124191284 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.002008989918977022 -Vertex 768: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998978972434998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.07736806571483612 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999281167984009 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0021338132210075855 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996896982192993 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.06672654300928116 -Vertex 771: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9988108277320862 - Group: 'Bone.002', Weight: 0.010414824821054935 - Group: 'Bone.001', Weight: 0.0 -Vertex 772: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992695450782776 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 773: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989023804664612 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 774: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993821978569031 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 775: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9723092913627625 - Group: 'Bone', Weight: 0.9934614896774292 -Vertex 776: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9837288856506348 - Group: 'Bone', Weight: 0.9987549185752869 -Vertex 777: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.9994329214096069 -Vertex 778: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.000000238418579 - Group: 'Bone', Weight: 0.9810086488723755 -Vertex 779: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9973642826080322 - Group: 'Bone', Weight: 0.9841403961181641 -Vertex 780: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.999448835849762 - Group: 'Bone', Weight: 0.9991854429244995 -Vertex 781: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.99958336353302 -Vertex 782: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.9858097434043884 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9777987599372864 - Group: 'Bone', Weight: 0.999986469745636 -Vertex 784: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9728248715400696 - Group: 'Bone', Weight: 0.9999914765357971 -Vertex 785: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9954147934913635 - Group: 'Bone', Weight: 0.9999988675117493 -Vertex 786: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9998913407325745 - Group: 'Bone', Weight: 0.9999986290931702 -Vertex 787: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.000000238418579 - Group: 'Bone', Weight: 0.9912772178649902 -Vertex 788: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.9999092817306519 -Vertex 789: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9998847842216492 - Group: 'Bone', Weight: 0.999997079372406 -Vertex 790: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.99759840965271 -Vertex 791: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999122023582458 - Group: 'Bone', Weight: 0.9956228733062744 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9996305704116821 - Group: 'Bone', Weight: 0.9924596548080444 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9979488849639893 - Group: 'Bone', Weight: 0.9774491786956787 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9997336268424988 - Group: 'Bone', Weight: 0.9926109313964844 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9997143149375916 - Group: 'Bone', Weight: 0.9555279016494751 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9997518062591553 - Group: 'Bone', Weight: 0.9895250797271729 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9981691241264343 - Group: 'Bone', Weight: 0.9999735355377197 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.998760461807251 - Group: 'Bone', Weight: 0.9999858140945435 -Vertex 799: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9989573359489441 - Group: 'Bone', Weight: 0.9999547004699707 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9544483423233032 - Group: 'Bone', Weight: 0.999239981174469 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9927539229393005 - Group: 'Bone', Weight: 0.998943567276001 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9946842789649963 - Group: 'Bone', Weight: 0.9849550724029541 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999775290489197 - Group: 'Bone', Weight: 0.9990578889846802 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999657869338989 - Group: 'Bone', Weight: 0.9990001916885376 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9998128414154053 - Group: 'Bone', Weight: 0.9999866485595703 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9766346216201782 - Group: 'Bone', Weight: 0.9927542209625244 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9797604084014893 - Group: 'Bone', Weight: 0.9917773008346558 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.9998372197151184 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999995827674866 - Group: 'Bone', Weight: 1.0 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999973773956299 - Group: 'Bone', Weight: 0.9999983310699463 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9871970415115356 - Group: 'Bone', Weight: 0.9609414935112 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9885782599449158 - Group: 'Bone', Weight: 0.9656912088394165 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9952448010444641 - Group: 'Bone', Weight: 0.9338346123695374 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9991775751113892 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.002', Weight: 1.0 - Group: 'Bone', Weight: 0.9992429614067078 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9969768524169922 - Group: 'Bone', Weight: 0.9571751952171326 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9999997615814209 - Group: 'Bone', Weight: 0.9999146461486816 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9939866065979004 - Group: 'Bone', Weight: 0.9018319249153137 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9648475646972656 - Group: 'Bone', Weight: 0.9999962449073792 -Vertex 820: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9698792099952698 - Group: 'Bone', Weight: 0.9999998807907104 -Vertex 821: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9955655932426453 - Group: 'Bone', Weight: 0.9999967813491821 -Vertex 822: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9754363894462585 - Group: 'Bone', Weight: 0.998410701751709 -Vertex 823: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9865885972976685 - Group: 'Bone', Weight: 0.9909824728965759 -Vertex 824: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9989475011825562 - Group: 'Bone', Weight: 0.9932569861412048 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9691634774208069 - Group: 'Bone', Weight: 0.9967003464698792 -Vertex 826: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9880331754684448 - Group: 'Bone', Weight: 0.9998246431350708 -Vertex 827: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9185092449188232 - Group: 'Bone', Weight: 0.9891437292098999 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.002', Weight: 0.9955356121063232 - Group: 'Bone', Weight: 0.9999997615814209 -Vertex 829: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999857544898987 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 830: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999994695186615 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999911785125732 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999809265136719 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0007868270040489733 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999036192893982 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0018051138613373041 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997469782829285 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0003360750270076096 -Vertex 835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999953508377075 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 836: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999997079372406 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999978542327881 - Group: 'Bone.002', Weight: 0.0 -Vertex 838: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999977946281433 - Group: 'Bone.002', Weight: 0.0 -Vertex 839: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999980330467224 - Group: 'Bone.002', Weight: 0.0 -Vertex 840: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.002', Weight: 0.0 -Vertex 841: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.002', Weight: 0.0 -Vertex 842: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999934434890747 - Group: 'Bone.002', Weight: 0.0 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999123811721802 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 844: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998764395713806 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998643398284912 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997662901878357 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 847: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999845623970032 - Group: 'Bone.002', Weight: 0.0 -Vertex 848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999916553497314 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999958276748657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999995768070221 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999970197677612 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999983310699463 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 853: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999974966049194 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 854: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999974370002747 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 855: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999953508377075 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 856: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999971389770508 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999980926513672 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982118606567 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999960660934448 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 861: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.002', Weight: 0.0 -Vertex 862: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.002', Weight: 0.0 -Vertex 863: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999937415122986 - Group: 'Bone.002', Weight: 0.0 -Vertex 864: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999877214431763 - Group: 'Bone.002', Weight: 0.0 -Vertex 865: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999603033065796 - Group: 'Bone.002', Weight: 0.0 -Vertex 866: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999940395355225 - Group: 'Bone.002', Weight: 0.0 -Vertex 867: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999962449073792 - Group: 'Bone.002', Weight: 0.0 -Vertex 868: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.002', Weight: 0.0 -Vertex 869: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.002', Weight: 0.0 -Vertex 870: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.002', Weight: 0.0 -Vertex 871: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999979138374329 - Group: 'Bone.002', Weight: 0.0 -Vertex 872: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999973177909851 - Group: 'Bone.002', Weight: 0.0 -Vertex 873: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999961256980896 - Group: 'Bone.002', Weight: 0.0 -Vertex 874: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.002', Weight: 0.0 -Vertex 875: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.002', Weight: 0.0 -Vertex 876: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 877: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 878: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 879: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 880: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 881: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.002', Weight: 0.0 -Vertex 882: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999948143959045 - Group: 'Bone.002', Weight: 0.0 -Vertex 883: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.002', Weight: 0.0 -Vertex 884: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 885: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 886: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999914169311523 - Group: 'Bone.002', Weight: 0.0 -Vertex 887: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999727010726929 -Vertex 888: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999880194664001 -Vertex 889: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999971389770508 -Vertex 890: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999994039535522 -Vertex 891: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 892: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.002', Weight: 0.0 -Vertex 893: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999933242797852 -Vertex 894: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999521970748901 -Vertex 895: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998311996459961 -Vertex 896: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999999403953552 -Vertex 897: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999997615814209 -Vertex 898: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999995231628418 -Vertex 899: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999999403953552 -Vertex 900: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 901: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999197125434875 -Vertex 902: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998865127563477 -Vertex 903: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999944806098938 -Vertex 904: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999819993972778 -Vertex 905: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999999463558197 -Vertex 906: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999998807907104 -Vertex 907: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999998211860657 -Vertex 908: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 909: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 910: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997185468673706 -Vertex 911: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997320175170898 -Vertex 912: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998316764831543 -Vertex 913: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998993873596191 -Vertex 914: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998061656951904 -Vertex 915: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999998807907104 -Vertex 916: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 917: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 918: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 919: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998114705085754 -Vertex 920: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997419118881226 -Vertex 921: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999675989151001 -Vertex 922: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997658729553223 -Vertex 923: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9996109008789062 -Vertex 924: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999659061431885 -Vertex 925: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 926: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 927: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 928: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 929: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 930: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998722076416016 -Vertex 931: -Vertex groups: 1 - Group: 'Bone', Weight: 0.99961256980896 -Vertex 932: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9996099472045898 -Vertex 933: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999568521976471 -Vertex 934: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995675086975098 -Vertex 935: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 936: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 937: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 938: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 939: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 940: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 941: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997483491897583 -Vertex 942: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995947480201721 -Vertex 943: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995681047439575 -Vertex 944: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999568521976471 -Vertex 945: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 946: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995679259300232 -Vertex 947: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 948: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 949: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 950: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 951: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 952: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 953: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 954: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 955: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 956: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 957: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995681643486023 -Vertex 958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995681047439575 -Vertex 959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995681047439575 -Vertex 960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995681047439575 -Vertex 961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995682835578918 -Vertex 962: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 963: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 964: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 965: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 966: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995682835578918 -Vertex 968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995682239532471 -Vertex 969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995682239532471 -Vertex 970: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995682239532471 -Vertex 971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995682835578918 -Vertex 972: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995683431625366 -Vertex 973: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 974: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 975: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684027671814 -Vertex 979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995683431625366 -Vertex 980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995683431625366 -Vertex 981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995683431625366 -Vertex 982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684027671814 -Vertex 983: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 984: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 985: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 986: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 987: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995685815811157 -Vertex 988: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 989: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995685815811157 -Vertex 991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999568521976471 -Vertex 992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999568521976471 -Vertex 993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 998: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 999: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1000: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1001: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 1004: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 1005: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995684623718262 -Vertex 1006: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1007: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1008: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1009: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1011: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999568521976471 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999568521976471 -Vertex 1014: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995685815811157 -Vertex 1015: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1017: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1018: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1019: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9975693225860596 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1020: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995577931404114 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1021: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979099035263062 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1022: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999656081199646 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1023: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998958706855774 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1024: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1025: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994099140167236 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998665452003479 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9985196590423584 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9962402582168579 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1029: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990958571434021 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1030: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998827576637268 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1031: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991180896759033 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1032: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999924898147583 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1033: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986181855201721 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1034: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979994297027588 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1035: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986324310302734 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1036: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9960317015647888 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1037: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1038: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987533688545227 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997040629386902 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984092116355896 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1041: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998859763145447 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1043: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992259740829468 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992055892944336 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989604949951172 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1046: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992812871932983 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1047: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995219707489014 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1048: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992753267288208 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1049: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998407959938049 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1050: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996231198310852 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1051: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999452829360962 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1052: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994291067123413 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1053: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998183250427246 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1054: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979478120803833 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1055: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999263286590576 - Group: 'Bone.001', Weight: 9.02524043340236e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 1056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992961883544922 - Group: 'Bone.001', Weight: 0.00024225177185144275 - Group: 'Bone.002', Weight: 0.0 -Vertex 1057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999717473983765 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988079071045 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979329109191895 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998112320899963 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992423057556152 - Group: 'Bone.001', Weight: 0.0004054339078720659 - Group: 'Bone.002', Weight: 0.0 -Vertex 1062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997427463531494 - Group: 'Bone.001', Weight: 0.00034925033105537295 - Group: 'Bone.002', Weight: 0.0 -Vertex 1063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996581077575684 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998963475227356 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995636940002441 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999365210533142 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1067: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999914765357971 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999818801879883 - Group: 'Bone.001', Weight: 0.00010270130587741733 - Group: 'Bone.002', Weight: 0.0 -Vertex 1070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999908804893494 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1071: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999999463558197 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999954104423523 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1073: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999808669090271 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999738335609436 - Group: 'Bone.001', Weight: 0.0001991837634705007 - Group: 'Bone.002', Weight: 0.0 -Vertex 1075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999904036521912 - Group: 'Bone.001', Weight: 0.0020091147162020206 - Group: 'Bone.002', Weight: 0.0 -Vertex 1076: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996709823608398 - Group: 'Bone.001', Weight: 0.004161413758993149 - Group: 'Bone.002', Weight: 0.0 -Vertex 1077: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999949932098389 - Group: 'Bone.001', Weight: 0.005962698254734278 - Group: 'Bone.002', Weight: 0.0 -Vertex 1078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999937415122986 - Group: 'Bone.001', Weight: 0.005327930673956871 - Group: 'Bone.002', Weight: 0.0 -Vertex 1079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0031787995249032974 - Group: 'Bone.002', Weight: 0.0 -Vertex 1080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.00018677990010473877 - Group: 'Bone.002', Weight: 0.0 -Vertex 1081: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1082: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999915957450867 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1083: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999889731407166 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1084: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999980330467224 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1085: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991655349731 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990514516830444 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1087: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9985617995262146 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1088: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990150332450867 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999991238117218 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998325109481812 - Group: 'Bone.001', Weight: 0.0016760228900238872 - Group: 'Bone.002', Weight: 0.0 -Vertex 1091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998083710670471 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999152421951294 - Group: 'Bone.001', Weight: 0.006307572592049837 - Group: 'Bone.002', Weight: 0.0 -Vertex 1093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999265670776367 - Group: 'Bone.001', Weight: 0.011444145813584328 - Group: 'Bone.002', Weight: 0.0 -Vertex 1094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999980330467224 - Group: 'Bone.001', Weight: 0.015709444880485535 - Group: 'Bone.002', Weight: 0.0 -Vertex 1095: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999986290931702 - Group: 'Bone.001', Weight: 0.015623744577169418 - Group: 'Bone.002', Weight: 0.0 -Vertex 1096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.011328108608722687 - Group: 'Bone.002', Weight: 0.0 -Vertex 1097: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.001584252342581749 - Group: 'Bone.002', Weight: 0.0 -Vertex 1098: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 7.883393845986575e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 1099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999989867210388 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999947547912598 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1101: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999867081642151 - Group: 'Bone.001', Weight: 0.0010843026684597135 - Group: 'Bone.002', Weight: 0.0 -Vertex 1102: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0020866449922323227 - Group: 'Bone.002', Weight: 0.0 -Vertex 1103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999863505363464 - Group: 'Bone.001', Weight: 0.003429217729717493 - Group: 'Bone.002', Weight: 0.0 -Vertex 1104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.005204841028898954 - Group: 'Bone.002', Weight: 0.0 -Vertex 1105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.008143546991050243 - Group: 'Bone.002', Weight: 0.0 -Vertex 1106: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.018843866884708405 - Group: 'Bone.002', Weight: 0.0 -Vertex 1107: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.025469006970524788 - Group: 'Bone.002', Weight: 0.0 -Vertex 1108: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1109: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999969005584717 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1110: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999874830245972 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1111: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999476075172424 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1112: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999995231628418 - Group: 'Bone.001', Weight: 8.55465914355591e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 1113: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999113142490387 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1114: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999718070030212 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1115: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998019933700562 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999147653579712 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999993443489075 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998663067817688 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1119: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989999532699585 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1120: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999481737613678 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9880771636962891 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9759722948074341 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1123: -Vertex groups: 3 - Group: 'Bone', Weight: 0.988934338092804 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1124: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999001622200012 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1125: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998809099197388 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1126: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9930937886238098 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1127: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993095993995667 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1128: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991374611854553 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1129: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995837807655334 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1130: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997760057449341 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1131: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999832510948181 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999918341636658 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999460577964783 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999727010726929 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1135: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999983906745911 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1136: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1137: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999803304672241 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1138: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979948401451111 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1139: -Vertex groups: 3 - Group: 'Bone', Weight: 0.981663703918457 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1140: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9534091949462891 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1141: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9645131826400757 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999787211418152 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.019276022911071777 -Vertex 1143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997843503952026 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.060590192675590515 -Vertex 1144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999753475189209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987654685974121 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1146: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9959813952445984 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1147: -Vertex groups: 3 - Group: 'Bone', Weight: 0.991712212562561 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1148: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996049404144287 - Group: 'Bone.001', Weight: 0.00051615055417642 - Group: 'Bone.002', Weight: 0.0 -Vertex 1149: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9968918561935425 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1150: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996674060821533 - Group: 'Bone.001', Weight: 0.0012421145802363753 - Group: 'Bone.002', Weight: 0.0 -Vertex 1151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999805212020874 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999975860118866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999061226844788 - Group: 'Bone.001', Weight: 0.0010190973989665508 - Group: 'Bone.002', Weight: 0.0 -Vertex 1154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999525547027588 - Group: 'Bone.001', Weight: 0.005339194554835558 - Group: 'Bone.002', Weight: 0.0 -Vertex 1155: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999656677246094 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1156: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986093044281006 - Group: 'Bone.001', Weight: 0.002296695951372385 - Group: 'Bone.002', Weight: 0.0 -Vertex 1157: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999130964279175 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1158: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999920129776001 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1159: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.01995464414358139 - Group: 'Bone.002', Weight: 0.0 -Vertex 1160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999939799308777 - Group: 'Bone.001', Weight: 0.020015180110931396 - Group: 'Bone.002', Weight: 0.0 -Vertex 1161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999845027923584 - Group: 'Bone.001', Weight: 0.003486641915515065 - Group: 'Bone.002', Weight: 0.0 -Vertex 1162: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.02817416563630104 - Group: 'Bone.002', Weight: 0.0 -Vertex 1163: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.042815595865249634 - Group: 'Bone.002', Weight: 0.0 -Vertex 1164: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9972561597824097 - Group: 'Bone.001', Weight: 0.010119431652128696 - Group: 'Bone.002', Weight: 0.0 -Vertex 1165: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995453357696533 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1166: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999987483024597 - Group: 'Bone.001', Weight: 0.04214727133512497 - Group: 'Bone.002', Weight: 0.0 -Vertex 1167: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.05478031933307648 - Group: 'Bone.002', Weight: 0.0 -Vertex 1168: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.02925954945385456 - Group: 'Bone.002', Weight: 0.0 -Vertex 1169: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999279975891113 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1172: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1173: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1174: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1175: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1176: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1177: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999983906745911 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1178: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1179: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999991774559021 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1182: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999598264694214 - Group: 'Bone.001', Weight: 0.0001822965277824551 - Group: 'Bone.002', Weight: 0.0 -Vertex 1183: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999977171421051 - Group: 'Bone.001', Weight: 0.0006354118813760579 - Group: 'Bone.002', Weight: 0.0 -Vertex 1184: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999969005584717 - Group: 'Bone.001', Weight: 0.001044614240527153 - Group: 'Bone.002', Weight: 0.0 -Vertex 1185: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0011964982841163874 - Group: 'Bone.002', Weight: 0.0 -Vertex 1186: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999966621398926 - Group: 'Bone.001', Weight: 0.0014996121171861887 - Group: 'Bone.002', Weight: 0.0 -Vertex 1187: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.000962734455242753 - Group: 'Bone.002', Weight: 0.0 -Vertex 1188: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982118606567 - Group: 'Bone.001', Weight: 0.0014600161230191588 - Group: 'Bone.002', Weight: 0.0 -Vertex 1189: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1190: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0007485605892725289 - Group: 'Bone.002', Weight: 0.0 -Vertex 1191: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1192: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1193: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1194: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1195: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1199: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999862909317017 - Group: 'Bone.001', Weight: 0.00029635627288371325 - Group: 'Bone.002', Weight: 0.0 -Vertex 1200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999634623527527 - Group: 'Bone.001', Weight: 0.0009228747221641243 - Group: 'Bone.002', Weight: 0.0 -Vertex 1201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999962568283081 - Group: 'Bone.001', Weight: 0.0016506698448210955 - Group: 'Bone.002', Weight: 0.0 -Vertex 1202: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999558925628662 - Group: 'Bone.001', Weight: 0.002558746375143528 - Group: 'Bone.002', Weight: 0.0 -Vertex 1203: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999977350234985 - Group: 'Bone.001', Weight: 0.002503001829609275 - Group: 'Bone.002', Weight: 0.0 -Vertex 1204: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0014632628299295902 - Group: 'Bone.002', Weight: 0.0 -Vertex 1205: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1207: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1208: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1211: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1212: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1213: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1216: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1219: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1220: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1221: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1222: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1223: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1224: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1225: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1226: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1227: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999970197677612 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1228: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1229: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1230: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1231: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1232: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1233: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9906799793243408 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1234: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1235: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9679883718490601 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1236: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999948740005493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1237: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999984085559845 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982118606567 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1239: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999749064445496 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1240: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999932050704956 - Group: 'Bone.001', Weight: 0.0001431780110578984 - Group: 'Bone.002', Weight: 0.0 -Vertex 1241: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1242: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1243: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999833106994629 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1244: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999376535415649 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1245: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1246: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1247: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998579621315002 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1248: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9980593919754028 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1249: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984525442123413 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1250: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994308948516846 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1251: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994142055511475 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997446537017822 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05470770597457886 -Vertex 1253: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1254: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1255: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999904632568359 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1256: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1257: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1258: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998054504394531 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1259: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996711015701294 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1260: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9931454658508301 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1261: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9934849739074707 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1262: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994649887084961 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1263: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9956032037734985 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9908348917961121 - Group: 'Bone.001', Weight: 0.004053875803947449 - Group: 'Bone.002', Weight: 0.0 -Vertex 1265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9775219559669495 - Group: 'Bone.001', Weight: 0.018894363194704056 - Group: 'Bone.002', Weight: 0.0 -Vertex 1266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9910882711410522 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1267: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993250370025635 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1268: -Vertex groups: 3 - Group: 'Bone', Weight: 0.993199348449707 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9970826506614685 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1270: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9940013885498047 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1271: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987190961837769 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1272: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1273: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999314546585083 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1274: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995891451835632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997807145118713 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9944789409637451 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1277: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9934650659561157 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994597434997559 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995900988578796 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1280: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9978851675987244 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984123110771179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1282: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 1.57998401846271e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 1283: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999976754188538 - Group: 'Bone.001', Weight: 0.0010308044729754329 - Group: 'Bone.002', Weight: 0.0 -Vertex 1285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993226528167725 - Group: 'Bone.001', Weight: 0.0023107973393052816 - Group: 'Bone.002', Weight: 0.0 -Vertex 1286: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999912977218628 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1287: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1288: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.016664139926433563 - Group: 'Bone.002', Weight: 0.0 -Vertex 1289: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.002178139053285122 - Group: 'Bone.002', Weight: 0.0 -Vertex 1290: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1291: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985098838806 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1292: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999860525131226 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1293: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999964833259583 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1294: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9973392486572266 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9947616457939148 - Group: 'Bone.001', Weight: 0.000963423284702003 - Group: 'Bone.002', Weight: 0.0 -Vertex 1296: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997749924659729 - Group: 'Bone.001', Weight: 0.010434663854539394 - Group: 'Bone.002', Weight: 0.0 -Vertex 1297: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.03410020470619202 - Group: 'Bone.002', Weight: 0.0 -Vertex 1298: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.034433312714099884 - Group: 'Bone.002', Weight: 0.0 -Vertex 1299: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.029167689383029938 - Group: 'Bone.002', Weight: 0.0 -Vertex 1300: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999987483024597 - Group: 'Bone.001', Weight: 0.0028242687694728374 - Group: 'Bone.002', Weight: 0.0 -Vertex 1301: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999893307685852 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1302: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999986290931702 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1303: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991655349731 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1304: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984694123268127 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1305: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999276399612427 - Group: 'Bone.001', Weight: 0.005103888921439648 - Group: 'Bone.002', Weight: 0.0 -Vertex 1306: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999939203262329 - Group: 'Bone.001', Weight: 0.026581263169646263 - Group: 'Bone.002', Weight: 0.0 -Vertex 1307: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999420046806335 - Group: 'Bone.001', Weight: 0.11105813831090927 - Group: 'Bone.002', Weight: 0.0 -Vertex 1308: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999803900718689 - Group: 'Bone.001', Weight: 0.14311525225639343 - Group: 'Bone.002', Weight: 0.0 -Vertex 1309: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.08423826843500137 - Group: 'Bone.002', Weight: 0.0 -Vertex 1310: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999993443489075 - Group: 'Bone.001', Weight: 0.04554247111082077 - Group: 'Bone.002', Weight: 0.0 -Vertex 1311: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999996542930603 - Group: 'Bone.001', Weight: 0.0504329577088356 - Group: 'Bone.002', Weight: 0.0 -Vertex 1312: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991530179977417 - Group: 'Bone.001', Weight: 0.007579599507153034 - Group: 'Bone.002', Weight: 0.0 -Vertex 1313: -Vertex groups: 3 - Group: 'Bone', Weight: 0.995247483253479 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1314: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.0001429205876775086 - Group: 'Bone.002', Weight: 0.0 -Vertex 1315: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999899864196777 - Group: 'Bone.001', Weight: 0.0005104154697619379 - Group: 'Bone.002', Weight: 0.0 -Vertex 1316: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999924898147583 - Group: 'Bone.001', Weight: 0.0031964543741196394 - Group: 'Bone.002', Weight: 0.0 -Vertex 1317: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999570846557617 - Group: 'Bone.001', Weight: 0.03346680477261543 - Group: 'Bone.002', Weight: 0.0 -Vertex 1318: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999744892120361 - Group: 'Bone.001', Weight: 0.009744859300553799 - Group: 'Bone.002', Weight: 0.0 -Vertex 1319: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999989867210388 - Group: 'Bone.001', Weight: 0.002097753109410405 - Group: 'Bone.002', Weight: 0.0 -Vertex 1320: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9910025000572205 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1321: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9975854158401489 - Group: 'Bone.001', Weight: 0.008369965478777885 - Group: 'Bone.002', Weight: 0.0 -Vertex 1322: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999312162399292 - Group: 'Bone.001', Weight: 0.07613816112279892 - Group: 'Bone.002', Weight: 0.0 -Vertex 1323: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999948740005493 - Group: 'Bone.001', Weight: 0.05298875272274017 - Group: 'Bone.002', Weight: 0.0 -Vertex 1324: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999978542327881 - Group: 'Bone.001', Weight: 0.19103476405143738 - Group: 'Bone.002', Weight: 0.0 -Vertex 1325: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.001', Weight: 0.21395815908908844 - Group: 'Bone.002', Weight: 0.0 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.06660668551921844 - Group: 'Bone.002', Weight: 0.0 -Vertex 1327: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9985113143920898 - Group: 'Bone.001', Weight: 0.09629464149475098 - Group: 'Bone.002', Weight: 0.0 -Vertex 1328: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9909380674362183 - Group: 'Bone.001', Weight: 0.010050008073449135 - Group: 'Bone.002', Weight: 0.0 -Vertex 1329: -Vertex groups: 3 - Group: 'Bone', Weight: 0.977986752986908 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1330: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999971389770508 - Group: 'Bone.001', Weight: 0.012616081163287163 - Group: 'Bone.002', Weight: 0.0 -Vertex 1331: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999822378158569 - Group: 'Bone.001', Weight: 0.04180034250020981 - Group: 'Bone.002', Weight: 0.0 -Vertex 1332: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999383091926575 - Group: 'Bone.001', Weight: 0.07980252802371979 - Group: 'Bone.002', Weight: 0.0 -Vertex 1333: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982714653015 - Group: 'Bone.001', Weight: 0.10104548186063766 - Group: 'Bone.002', Weight: 0.0 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992847442627 - Group: 'Bone.001', Weight: 0.07102678716182709 - Group: 'Bone.002', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.04066450148820877 - Group: 'Bone.002', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9192671179771423 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1337: -Vertex groups: 3 - Group: 'Bone', Weight: 0.967975378036499 - Group: 'Bone.001', Weight: 0.023555075749754906 - Group: 'Bone.002', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9951410293579102 - Group: 'Bone.001', Weight: 0.08910240232944489 - Group: 'Bone.002', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999997615814209 - Group: 'Bone.001', Weight: 0.07450614869594574 - Group: 'Bone.002', Weight: 0.0 -Vertex 1340: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.24746984243392944 - Group: 'Bone.002', Weight: 0.0 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999957084655762 - Group: 'Bone.001', Weight: 0.1808345466852188 - Group: 'Bone.002', Weight: 0.0 -Vertex 1342: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.14325572550296783 - Group: 'Bone.002', Weight: 0.0 -Vertex 1343: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999966621398926 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1344: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999375343322754 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1345: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999927878379822 - Group: 'Bone.001', Weight: 0.09097888320684433 - Group: 'Bone.002', Weight: 0.0 -Vertex 1346: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999868273735046 - Group: 'Bone.001', Weight: 0.0005491106421686709 - Group: 'Bone.002', Weight: 0.0 -Vertex 1347: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999871253967285 - Group: 'Bone.001', Weight: 0.0010564213152974844 - Group: 'Bone.002', Weight: 0.0 -Vertex 1348: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999541640281677 - Group: 'Bone.001', Weight: 0.0015302393585443497 - Group: 'Bone.002', Weight: 0.0 -Vertex 1349: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999501705169678 - Group: 'Bone.001', Weight: 0.0025799069553613663 - Group: 'Bone.002', Weight: 0.0 -Vertex 1350: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999347925186157 - Group: 'Bone.001', Weight: 0.004142026416957378 - Group: 'Bone.002', Weight: 0.0 -Vertex 1351: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999946355819702 - Group: 'Bone.001', Weight: 0.004319351632148027 - Group: 'Bone.002', Weight: 0.0 -Vertex 1352: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0027172414120286703 - Group: 'Bone.002', Weight: 0.0 -Vertex 1353: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1354: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1355: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1356: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1357: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999850988388062 - Group: 'Bone.001', Weight: 0.0031602184753865004 - Group: 'Bone.002', Weight: 0.0 -Vertex 1358: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999703764915466 - Group: 'Bone.001', Weight: 0.006064893677830696 - Group: 'Bone.002', Weight: 0.0 -Vertex 1359: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998210668563843 - Group: 'Bone.001', Weight: 0.00984225608408451 - Group: 'Bone.002', Weight: 0.0 -Vertex 1360: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997043013572693 - Group: 'Bone.001', Weight: 0.011491154320538044 - Group: 'Bone.002', Weight: 0.0 -Vertex 1361: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999949932098389 - Group: 'Bone.001', Weight: 0.00919235497713089 - Group: 'Bone.002', Weight: 0.0 -Vertex 1362: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991655349731 - Group: 'Bone.001', Weight: 0.0030409060418605804 - Group: 'Bone.002', Weight: 0.0 -Vertex 1363: -Vertex groups: 3 - Group: 'Bone', Weight: 0.99998939037323 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1364: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999893307685852 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1365: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999940395355225 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1366: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999256730079651 - Group: 'Bone.001', Weight: 0.0024625323712825775 - Group: 'Bone.002', Weight: 0.0 -Vertex 1367: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999660849571228 - Group: 'Bone.001', Weight: 0.010920501314103603 - Group: 'Bone.002', Weight: 0.0 -Vertex 1368: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997812509536743 - Group: 'Bone.001', Weight: 0.02039521560072899 - Group: 'Bone.002', Weight: 0.0 -Vertex 1369: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991047978401184 - Group: 'Bone.001', Weight: 0.023376308381557465 - Group: 'Bone.002', Weight: 0.0 -Vertex 1370: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994246363639832 - Group: 'Bone.001', Weight: 0.046889182180166245 - Group: 'Bone.002', Weight: 0.0 -Vertex 1371: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999774694442749 - Group: 'Bone.001', Weight: 0.03497099503874779 - Group: 'Bone.002', Weight: 0.0 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998789429664612 - Group: 'Bone.001', Weight: 0.008234912529587746 - Group: 'Bone.002', Weight: 0.0 -Vertex 1373: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999672174453735 - Group: 'Bone.001', Weight: 0.00020625608158297837 - Group: 'Bone.002', Weight: 0.0 -Vertex 1374: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999874234199524 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1375: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999946355819702 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1376: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999897480010986 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1377: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999884963035583 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.2871621549129486 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.002', Weight: 0.0 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7888956069946289 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.002', Weight: 0.0 -Vertex 1380: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9958133697509766 - Group: 'Bone', Weight: 0.9999467134475708 - Group: 'Bone.002', Weight: 0.0 -Vertex 1381: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999969601631165 - Group: 'Bone', Weight: 0.9999963045120239 - Group: 'Bone.002', Weight: 0.0 -Vertex 1382: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9999959468841553 - Group: 'Bone.002', Weight: 0.0 -Vertex 1383: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.002', Weight: 0.0 -Vertex 1384: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9999951124191284 - Group: 'Bone.002', Weight: 0.0 -Vertex 1385: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9990484118461609 - Group: 'Bone.002', Weight: 0.0 -Vertex 1386: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999921441078186 - Group: 'Bone.002', Weight: 0.0 -Vertex 1387: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998489022254944 - Group: 'Bone.002', Weight: 0.0 -Vertex 1388: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999495148658752 - Group: 'Bone.002', Weight: 0.0 -Vertex 1389: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.002', Weight: 0.0 -Vertex 1390: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9997674226760864 - Group: 'Bone.002', Weight: 0.0 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.25578802824020386 - Group: 'Bone', Weight: 0.9999979138374329 - Group: 'Bone.002', Weight: 0.0 -Vertex 1392: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999762177467346 - Group: 'Bone.001', Weight: 0.09920290857553482 - Group: 'Bone.002', Weight: 0.0 -Vertex 1393: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999582171440125 - Group: 'Bone.001', Weight: 0.15802404284477234 - Group: 'Bone.002', Weight: 0.0 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999541163444519 - Group: 'Bone.001', Weight: 0.3045569658279419 - Group: 'Bone.002', Weight: 0.0 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990289211273193 - Group: 'Bone.001', Weight: 0.218830868601799 - Group: 'Bone.002', Weight: 0.0 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997608661651611 - Group: 'Bone.001', Weight: 0.1775958240032196 - Group: 'Bone.002', Weight: 0.0 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999951720237732 - Group: 'Bone.001', Weight: 0.11655613034963608 - Group: 'Bone.002', Weight: 0.0 -Vertex 1398: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999723434448242 - Group: 'Bone.001', Weight: 0.030938848853111267 - Group: 'Bone.002', Weight: 0.0 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1582735776901245 - Group: 'Bone', Weight: 0.9998414516448975 - Group: 'Bone.002', Weight: 0.0 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.21169805526733398 - Group: 'Bone', Weight: 0.9999632239341736 - Group: 'Bone.002', Weight: 0.0 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.34285059571266174 - Group: 'Bone', Weight: 0.9999867081642151 - Group: 'Bone.002', Weight: 0.0 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35912367701530457 - Group: 'Bone', Weight: 0.9991266131401062 - Group: 'Bone.002', Weight: 0.0 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1680334210395813 - Group: 'Bone', Weight: 0.993033766746521 - Group: 'Bone.002', Weight: 0.0 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.5439057350158691 - Group: 'Bone', Weight: 0.9999096989631653 - Group: 'Bone.002', Weight: 0.0 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3941230773925781 - Group: 'Bone', Weight: 0.9999983906745911 - Group: 'Bone.002', Weight: 0.0 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.31736600399017334 - Group: 'Bone', Weight: 0.9999975562095642 - Group: 'Bone.002', Weight: 0.0 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7913145422935486 - Group: 'Bone', Weight: 0.9999992847442627 - Group: 'Bone.002', Weight: 0.0 -Vertex 1408: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9927555918693542 - Group: 'Bone', Weight: 0.9998441934585571 - Group: 'Bone.002', Weight: 0.0 -Vertex 1409: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999934434890747 - Group: 'Bone', Weight: 0.9999945759773254 - Group: 'Bone.002', Weight: 0.0 -Vertex 1410: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone', Weight: 0.9999275207519531 - Group: 'Bone.002', Weight: 0.0 -Vertex 1411: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9999548196792603 - Group: 'Bone.002', Weight: 0.0 -Vertex 1412: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999995827674866 - Group: 'Bone', Weight: 0.9999462366104126 - Group: 'Bone.002', Weight: 0.0 -Vertex 1413: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9997683763504028 - Group: 'Bone.002', Weight: 0.0 -Vertex 1414: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999439716339111 - Group: 'Bone.002', Weight: 0.0 -Vertex 1415: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999534487724304 - Group: 'Bone.002', Weight: 0.0 -Vertex 1416: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999791383743286 - Group: 'Bone.002', Weight: 0.0 -Vertex 1417: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999682307243347 - Group: 'Bone.002', Weight: 0.0 -Vertex 1418: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998767375946045 - Group: 'Bone.002', Weight: 0.0 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.8456863760948181 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.002', Weight: 0.0 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.8271089196205139 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.002', Weight: 0.0 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.8836655616760254 - Group: 'Bone', Weight: 0.9999170899391174 - Group: 'Bone.002', Weight: 0.0 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.45939335227012634 - Group: 'Bone', Weight: 0.825798511505127 - Group: 'Bone.002', Weight: 0.0 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7743627429008484 - Group: 'Bone', Weight: 0.9969362616539001 - Group: 'Bone.002', Weight: 0.0 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7879019379615784 - Group: 'Bone', Weight: 0.9996598362922668 - Group: 'Bone.002', Weight: 0.0 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.5929442644119263 - Group: 'Bone', Weight: 0.9998074173927307 - Group: 'Bone.002', Weight: 0.0 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9744634628295898 - Group: 'Bone', Weight: 0.9991997480392456 - Group: 'Bone.002', Weight: 0.0 -Vertex 1427: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.999782919883728 - Group: 'Bone', Weight: 0.9996421337127686 - Group: 'Bone.002', Weight: 0.0 -Vertex 1428: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999520182609558 - Group: 'Bone', Weight: 0.9992556571960449 - Group: 'Bone.002', Weight: 0.0 -Vertex 1429: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999743700027466 - Group: 'Bone', Weight: 0.998279333114624 - Group: 'Bone.002', Weight: 0.0 -Vertex 1430: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999935626983643 - Group: 'Bone', Weight: 0.993941068649292 - Group: 'Bone.002', Weight: 0.0 -Vertex 1431: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9988833665847778 - Group: 'Bone.002', Weight: 0.0 -Vertex 1432: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9969073534011841 - Group: 'Bone.002', Weight: 0.0 -Vertex 1433: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9997870922088623 - Group: 'Bone.002', Weight: 0.0 -Vertex 1434: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999207258224487 - Group: 'Bone.002', Weight: 0.0 -Vertex 1435: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998636841773987 - Group: 'Bone.002', Weight: 0.0 -Vertex 1436: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999988079071045 - Group: 'Bone.002', Weight: 0.0 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6527904868125916 - Group: 'Bone', Weight: 0.9999803900718689 - Group: 'Bone.002', Weight: 0.0 -Vertex 1438: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.982818067073822 - Group: 'Bone', Weight: 0.9983854293823242 - Group: 'Bone.002', Weight: 0.0 -Vertex 1439: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.999808669090271 - Group: 'Bone', Weight: 0.9997279644012451 - Group: 'Bone.002', Weight: 0.0 -Vertex 1440: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999499320983887 - Group: 'Bone', Weight: 0.9954242706298828 - Group: 'Bone.002', Weight: 0.0 -Vertex 1441: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999768733978271 - Group: 'Bone', Weight: 0.9990857839584351 - Group: 'Bone.002', Weight: 0.0 -Vertex 1442: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999951124191284 - Group: 'Bone', Weight: 0.9933938384056091 - Group: 'Bone.002', Weight: 0.0 -Vertex 1443: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9429672956466675 - Group: 'Bone.002', Weight: 0.0 -Vertex 1444: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9911613464355469 - Group: 'Bone.002', Weight: 0.0 -Vertex 1445: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9995143413543701 - Group: 'Bone.002', Weight: 0.0 -Vertex 1446: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999835729598999 - Group: 'Bone.002', Weight: 0.0 -Vertex 1447: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998988509178162 - Group: 'Bone.002', Weight: 0.0 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9915192127227783 - Group: 'Bone', Weight: 0.9974865317344666 - Group: 'Bone.002', Weight: 0.0 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9998785853385925 - Group: 'Bone', Weight: 0.9967692494392395 - Group: 'Bone.002', Weight: 0.0 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999565482139587 - Group: 'Bone', Weight: 0.9961095452308655 - Group: 'Bone.002', Weight: 0.0 -Vertex 1451: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999827146530151 - Group: 'Bone', Weight: 0.9960507750511169 - Group: 'Bone.002', Weight: 0.0 -Vertex 1452: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999951720237732 - Group: 'Bone', Weight: 0.9938493967056274 - Group: 'Bone.002', Weight: 0.0 -Vertex 1453: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9785784482955933 - Group: 'Bone.002', Weight: 0.0 -Vertex 1454: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9957254528999329 - Group: 'Bone.002', Weight: 0.0 -Vertex 1455: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9997966885566711 - Group: 'Bone.002', Weight: 0.0 -Vertex 1456: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999403357505798 - Group: 'Bone.002', Weight: 0.0 -Vertex 1457: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999739527702332 - Group: 'Bone.002', Weight: 0.0 -Vertex 1458: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9814163446426392 - Group: 'Bone', Weight: 0.9863809943199158 - Group: 'Bone.002', Weight: 0.0 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9992179870605469 - Group: 'Bone', Weight: 0.9828458428382874 - Group: 'Bone.002', Weight: 0.0 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9995973110198975 - Group: 'Bone', Weight: 0.9855307340621948 - Group: 'Bone.002', Weight: 0.0 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9998774528503418 - Group: 'Bone', Weight: 0.9835734963417053 - Group: 'Bone.002', Weight: 0.0 -Vertex 1462: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.99997878074646 - Group: 'Bone', Weight: 0.9757434725761414 - Group: 'Bone.002', Weight: 0.0 -Vertex 1463: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.983368992805481 - Group: 'Bone.002', Weight: 0.0 -Vertex 1464: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9950889945030212 - Group: 'Bone.002', Weight: 0.0 -Vertex 1465: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9996433854103088 - Group: 'Bone.002', Weight: 0.0 -Vertex 1466: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998989105224609 - Group: 'Bone.002', Weight: 0.0 -Vertex 1467: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999895691871643 - Group: 'Bone.002', Weight: 0.0 -Vertex 1468: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999955296516418 - Group: 'Bone.002', Weight: 0.0 -Vertex 1469: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.8837170600891113 - Group: 'Bone', Weight: 0.9868053197860718 - Group: 'Bone.002', Weight: 0.0 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9924674034118652 - Group: 'Bone', Weight: 0.8066978454589844 - Group: 'Bone.002', Weight: 0.0 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9970695972442627 - Group: 'Bone', Weight: 0.8248016238212585 - Group: 'Bone.002', Weight: 0.0 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.998786985874176 - Group: 'Bone', Weight: 0.8066005706787109 - Group: 'Bone.002', Weight: 0.0 -Vertex 1473: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.999886155128479 - Group: 'Bone', Weight: 0.8883023262023926 - Group: 'Bone.002', Weight: 0.0 -Vertex 1474: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9205944538116455 - Group: 'Bone.002', Weight: 0.0 -Vertex 1475: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9961966276168823 - Group: 'Bone.002', Weight: 0.0 -Vertex 1476: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9981724619865417 - Group: 'Bone.002', Weight: 0.0 -Vertex 1477: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9991634488105774 - Group: 'Bone.002', Weight: 0.0 -Vertex 1478: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.998869001865387 - Group: 'Bone.002', Weight: 0.0 -Vertex 1479: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9973155856132507 - Group: 'Bone.002', Weight: 0.0 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9949281811714172 - Group: 'Bone', Weight: 0.9997028708457947 - Group: 'Bone.002', Weight: 0.0 -Vertex 1481: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999011158943176 - Group: 'Bone', Weight: 0.9969720840454102 - Group: 'Bone.002', Weight: 0.0 -Vertex 1482: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999764561653137 - Group: 'Bone', Weight: 0.9968357682228088 - Group: 'Bone.002', Weight: 0.0 -Vertex 1483: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999918341636658 - Group: 'Bone', Weight: 0.9961901903152466 - Group: 'Bone.002', Weight: 0.0 -Vertex 1484: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone', Weight: 0.9928346872329712 - Group: 'Bone.002', Weight: 0.0 -Vertex 1485: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9896664619445801 - Group: 'Bone.002', Weight: 0.0 -Vertex 1486: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9865086674690247 - Group: 'Bone.002', Weight: 0.0 -Vertex 1487: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9846799373626709 - Group: 'Bone.002', Weight: 0.0 -Vertex 1488: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9957149028778076 - Group: 'Bone.002', Weight: 0.0 -Vertex 1489: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9981096982955933 - Group: 'Bone.002', Weight: 0.0 -Vertex 1490: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999019503593445 - Group: 'Bone.002', Weight: 0.0 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9838937520980835 - Group: 'Bone', Weight: 0.9999845027923584 - Group: 'Bone.002', Weight: 0.0 -Vertex 1492: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9954679608345032 - Group: 'Bone', Weight: 0.9999524354934692 - Group: 'Bone.002', Weight: 0.0 -Vertex 1493: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999939203262329 - Group: 'Bone', Weight: 0.9999839663505554 - Group: 'Bone.002', Weight: 0.0 -Vertex 1494: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9995313286781311 - Group: 'Bone', Weight: 0.9999396204948425 - Group: 'Bone.002', Weight: 0.0 -Vertex 1495: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999996423721313 - Group: 'Bone', Weight: 0.9999092817306519 - Group: 'Bone.002', Weight: 0.0 -Vertex 1496: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9998967051506042 - Group: 'Bone', Weight: 0.9998850226402283 - Group: 'Bone.002', Weight: 0.0 -Vertex 1497: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999997615814209 - Group: 'Bone', Weight: 0.9996235966682434 - Group: 'Bone.002', Weight: 0.0 -Vertex 1498: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999386072158813 - Group: 'Bone', Weight: 0.9998049736022949 - Group: 'Bone.002', Weight: 0.0 -Vertex 1499: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999995231628418 - Group: 'Bone', Weight: 0.999828040599823 - Group: 'Bone.002', Weight: 0.0 -Vertex 1500: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.999980628490448 - Group: 'Bone', Weight: 0.9998196959495544 - Group: 'Bone.002', Weight: 0.0 -Vertex 1501: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998859167098999 - Group: 'Bone.002', Weight: 0.0 -Vertex 1502: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998704791069031 - Group: 'Bone.002', Weight: 0.0 -Vertex 1503: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999780654907227 - Group: 'Bone.002', Weight: 0.0 -Vertex 1504: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.99996417760849 - Group: 'Bone.002', Weight: 0.0 -Vertex 1505: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999972939491272 - Group: 'Bone.002', Weight: 0.0 -Vertex 1506: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999993085861206 - Group: 'Bone.002', Weight: 0.0 -Vertex 1507: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999022483825684 - Group: 'Bone.002', Weight: 0.0 -Vertex 1508: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999958336353302 - Group: 'Bone.002', Weight: 0.0 -Vertex 1509: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999246001243591 - Group: 'Bone.002', Weight: 0.0 -Vertex 1510: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998703002929688 - Group: 'Bone.002', Weight: 0.0 -Vertex 1511: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999622702598572 - Group: 'Bone.002', Weight: 0.0 -Vertex 1512: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9996974468231201 - Group: 'Bone.002', Weight: 0.0 -Vertex 1513: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999772310256958 - Group: 'Bone.001', Weight: 0.03593726456165314 - Group: 'Bone.002', Weight: 0.0 -Vertex 1514: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999721646308899 - Group: 'Bone.001', Weight: 0.005805335473269224 - Group: 'Bone.002', Weight: 0.0 -Vertex 1515: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996164441108704 - Group: 'Bone.001', Weight: 0.12812800705432892 - Group: 'Bone.002', Weight: 0.0 -Vertex 1516: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995752573013306 - Group: 'Bone.001', Weight: 0.13972222805023193 - Group: 'Bone.002', Weight: 2.0721639884868637e-05 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991099238395691 - Group: 'Bone.001', Weight: 0.28768104314804077 - Group: 'Bone.002', Weight: 0.0 -Vertex 1518: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999496936798096 - Group: 'Bone.001', Weight: 0.2749688923358917 - Group: 'Bone.002', Weight: 0.0 -Vertex 1519: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999498128890991 - Group: 'Bone.001', Weight: 0.16464178264141083 - Group: 'Bone.002', Weight: 0.0001307218917645514 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998471200466156 - Group: 'Bone.001', Weight: 0.003229505615308881 - Group: 'Bone.002', Weight: 0.00017941954138223082 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9969339966773987 - Group: 'Bone.001', Weight: 0.18643569946289062 - Group: 'Bone.002', Weight: 0.0 -Vertex 1522: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9933045506477356 - Group: 'Bone.001', Weight: 0.2346363216638565 - Group: 'Bone.002', Weight: 0.0 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9959519505500793 - Group: 'Bone.001', Weight: 0.3047398328781128 - Group: 'Bone.002', Weight: 0.0 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9978761076927185 - Group: 'Bone.001', Weight: 0.235627219080925 - Group: 'Bone.002', Weight: 0.0 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998375177383423 - Group: 'Bone.001', Weight: 0.1292761117219925 - Group: 'Bone.002', Weight: 0.0 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9938306212425232 - Group: 'Bone.001', Weight: 0.1828985959291458 - Group: 'Bone.002', Weight: 0.0 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9956048727035522 - Group: 'Bone.001', Weight: 0.19997183978557587 - Group: 'Bone.002', Weight: 0.0 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993513822555542 - Group: 'Bone.001', Weight: 0.09515193849802017 - Group: 'Bone.002', Weight: 0.0 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9914402365684509 - Group: 'Bone.001', Weight: 0.0006263359100557864 - Group: 'Bone.002', Weight: 0.0 -Vertex 1530: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9968082308769226 - Group: 'Bone.001', Weight: 0.07621386647224426 - Group: 'Bone.002', Weight: 0.0 -Vertex 1531: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9923746585845947 - Group: 'Bone.001', Weight: 0.1606762409210205 - Group: 'Bone.002', Weight: 0.0 -Vertex 1532: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9960274696350098 - Group: 'Bone.001', Weight: 0.1254529505968094 - Group: 'Bone.002', Weight: 0.0 -Vertex 1533: -Vertex groups: 3 - Group: 'Bone', Weight: 0.997607946395874 - Group: 'Bone.001', Weight: 0.13171321153640747 - Group: 'Bone.002', Weight: 0.0 -Vertex 1534: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984967112541199 - Group: 'Bone.001', Weight: 0.06656705588102341 - Group: 'Bone.002', Weight: 0.0 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9957202076911926 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979360103607178 - Group: 'Bone.001', Weight: 0.008546385914087296 - Group: 'Bone.002', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9960906505584717 - Group: 'Bone.001', Weight: 0.10256463289260864 - Group: 'Bone.002', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.997729480266571 - Group: 'Bone.001', Weight: 0.11393459141254425 - Group: 'Bone.002', Weight: 0.0 -Vertex 1539: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983965754508972 - Group: 'Bone.001', Weight: 0.08862247318029404 - Group: 'Bone.002', Weight: 0.0 -Vertex 1540: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998957633972168 - Group: 'Bone.001', Weight: 0.03604837879538536 - Group: 'Bone.002', Weight: 0.0 -Vertex 1541: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999943971633911 - Group: 'Bone.001', Weight: 0.002364702057093382 - Group: 'Bone.002', Weight: 0.0 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.018421947956085205 - Group: 'Bone.002', Weight: 0.0 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.08779683709144592 - Group: 'Bone.002', Weight: 0.0 -Vertex 1544: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999859929084778 - Group: 'Bone.001', Weight: 0.028906192630529404 - Group: 'Bone.002', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990196824073792 - Group: 'Bone.001', Weight: 0.02180379070341587 - Group: 'Bone.002', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997328519821167 - Group: 'Bone.001', Weight: 0.005863445810973644 - Group: 'Bone.002', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999053418636322 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986723065376282 - Group: 'Bone.001', Weight: 0.00018862425349652767 - Group: 'Bone.002', Weight: 0.0 -Vertex 1549: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9976354837417603 - Group: 'Bone.001', Weight: 0.02443293109536171 - Group: 'Bone.002', Weight: 0.0 -Vertex 1550: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983447194099426 - Group: 'Bone.001', Weight: 0.043219827115535736 - Group: 'Bone.002', Weight: 0.0 -Vertex 1551: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992985725402832 - Group: 'Bone.001', Weight: 0.03809143602848053 - Group: 'Bone.002', Weight: 0.0 -Vertex 1552: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995730519294739 - Group: 'Bone.001', Weight: 0.015036361292004585 - Group: 'Bone.002', Weight: 0.0 -Vertex 1553: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998104572296143 - Group: 'Bone.001', Weight: 0.0007231542258523405 - Group: 'Bone.002', Weight: 0.0 -Vertex 1554: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999999463558197 - Group: 'Bone.001', Weight: 0.0007702138391323388 - Group: 'Bone.002', Weight: 0.0 -Vertex 1555: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999939203262329 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1556: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997019767761 - Group: 'Bone.001', Weight: 0.0012758232187479734 - Group: 'Bone.002', Weight: 0.0 -Vertex 1557: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999616742134094 - Group: 'Bone.001', Weight: 0.001230131834745407 - Group: 'Bone.002', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992345571517944 - Group: 'Bone.001', Weight: 6.348342867568135e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 1559: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999508261680603 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1560: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999967217445374 - Group: 'Bone.002', Weight: 0.0 -Vertex 1561: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998676776885986 - Group: 'Bone.002', Weight: 0.0 -Vertex 1562: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9981071352958679 - Group: 'Bone.002', Weight: 0.0 -Vertex 1563: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.999809741973877 - Group: 'Bone.002', Weight: 0.0 -Vertex 1564: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.002', Weight: 0.0 -Vertex 1565: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9999521374702454 - Group: 'Bone.002', Weight: 0.0 -Vertex 1566: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999995827674866 - Group: 'Bone', Weight: 0.9993131160736084 - Group: 'Bone.002', Weight: 0.0 -Vertex 1567: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999994039535522 - Group: 'Bone', Weight: 0.9973954558372498 - Group: 'Bone.002', Weight: 0.0 -Vertex 1568: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999324679374695 - Group: 'Bone.002', Weight: 0.0 -Vertex 1569: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9997574090957642 - Group: 'Bone.002', Weight: 0.0 -Vertex 1570: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone', Weight: 0.991919219493866 - Group: 'Bone.002', Weight: 0.0 -Vertex 1571: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone', Weight: 0.9805107116699219 - Group: 'Bone.002', Weight: 0.0 -Vertex 1572: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9999188184738159 - Group: 'Bone.002', Weight: 0.0 -Vertex 1573: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999996423721313 - Group: 'Bone', Weight: 0.9964917898178101 - Group: 'Bone.002', Weight: 0.0 -Vertex 1574: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9322856664657593 - Group: 'Bone.002', Weight: 0.0 -Vertex 1575: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9982247948646545 - Group: 'Bone.002', Weight: 0.0 -Vertex 1576: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9996945858001709 - Group: 'Bone.002', Weight: 0.0 -Vertex 1577: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone', Weight: 0.9999822378158569 - Group: 'Bone.002', Weight: 0.0 -Vertex 1578: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999518990516663 - Group: 'Bone.002', Weight: 0.0 -Vertex 1579: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998289942741394 - Group: 'Bone.002', Weight: 0.0 -Vertex 1580: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999951183795929 - Group: 'Bone.002', Weight: 0.0 -Vertex 1581: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999999403953552 - Group: 'Bone', Weight: 0.9994824528694153 - Group: 'Bone.002', Weight: 0.0 -Vertex 1582: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9994733333587646 - Group: 'Bone.002', Weight: 0.0 -Vertex 1583: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.991194486618042 - Group: 'Bone.002', Weight: 0.0 -Vertex 1584: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9628441333770752 - Group: 'Bone.002', Weight: 0.0 -Vertex 1585: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999737739562988 - Group: 'Bone.002', Weight: 0.0 -Vertex 1586: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.999998152256012 - Group: 'Bone.002', Weight: 0.0 -Vertex 1587: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999737739562988 - Group: 'Bone.002', Weight: 0.0 -Vertex 1588: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9976998567581177 - Group: 'Bone.002', Weight: 0.0 -Vertex 1589: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9972066879272461 - Group: 'Bone.002', Weight: 0.0 -Vertex 1590: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9745925068855286 - Group: 'Bone.002', Weight: 0.0 -Vertex 1591: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999231100082397 - Group: 'Bone.002', Weight: 0.0 -Vertex 1592: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9995813965797424 - Group: 'Bone.002', Weight: 0.0 -Vertex 1593: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9903022646903992 - Group: 'Bone.002', Weight: 0.0 -Vertex 1594: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9852457046508789 - Group: 'Bone.002', Weight: 0.0 -Vertex 1595: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.905359148979187 - Group: 'Bone.002', Weight: 0.0 -Vertex 1596: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9975067973136902 - Group: 'Bone.002', Weight: 0.0 -Vertex 1597: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9969339966773987 - Group: 'Bone.002', Weight: 0.0 -Vertex 1598: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9972311854362488 - Group: 'Bone.002', Weight: 0.0 -Vertex 1599: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999997615814209 - Group: 'Bone', Weight: 0.965628981590271 - Group: 'Bone.002', Weight: 0.0 -Vertex 1600: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998807907104 - Group: 'Bone', Weight: 0.9829468727111816 - Group: 'Bone.002', Weight: 0.0 -Vertex 1601: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9981655478477478 - Group: 'Bone.002', Weight: 0.0 -Vertex 1602: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.8787693381309509 - Group: 'Bone.002', Weight: 0.0 -Vertex 1603: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9895866513252258 - Group: 'Bone.002', Weight: 0.0 -Vertex 1604: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999285936355591 - Group: 'Bone.002', Weight: 0.0 -Vertex 1605: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9999194741249084 - Group: 'Bone.002', Weight: 0.0 -Vertex 1606: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9748886823654175 - Group: 'Bone.002', Weight: 0.0 -Vertex 1607: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9968470335006714 - Group: 'Bone.002', Weight: 0.0 -Vertex 1608: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9981172680854797 - Group: 'Bone.002', Weight: 0.0 -Vertex 1609: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.9999998211860657 - Group: 'Bone', Weight: 0.9727185964584351 - Group: 'Bone.002', Weight: 0.0 -Vertex 1610: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998517632484436 - Group: 'Bone.002', Weight: 0.0 -Vertex 1611: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9989882707595825 - Group: 'Bone.002', Weight: 0.0 -Vertex 1612: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9988492131233215 - Group: 'Bone.002', Weight: 0.0 -Vertex 1613: -Vertex groups: 3 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone', Weight: 0.9998902082443237 - Group: 'Bone.002', Weight: 0.0 -Vertex 1614: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999946117401123 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996654391288757 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1616: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9991617202758789 - Group: 'Bone.002', Weight: 0.0 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994996786117554 - Group: 'Bone.001', Weight: 2.3592023353558034e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999343156814575 - Group: 'Bone.001', Weight: 0.0005995931569486856 - Group: 'Bone.002', Weight: 0.0 -Vertex 1619: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999276399612427 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1620: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999679327011108 - Group: 'Bone.002', Weight: 0.0 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999712705612183 - Group: 'Bone.001', Weight: 0.00034658150980249047 - Group: 'Bone.002', Weight: 0.0 -Vertex 1622: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999918937683105 - Group: 'Bone.002', Weight: 0.0 -Vertex 1623: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999991238117218 - Group: 'Bone.002', Weight: 0.0 -Vertex 1624: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999735355377197 - Group: 'Bone.002', Weight: 0.0 -Vertex 1625: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999774694442749 - Group: 'Bone.002', Weight: 0.0 -Vertex 1626: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999138116836548 - Group: 'Bone.002', Weight: 0.0 -Vertex 1627: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999897301197052 - Group: 'Bone.002', Weight: 0.0 -Vertex 1628: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999682903289795 - Group: 'Bone.002', Weight: 0.0 -Vertex 1629: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999911785125732 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1630: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999995231628418 - Group: 'Bone.002', Weight: 0.0 -Vertex 1631: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999922513961792 - Group: 'Bone.002', Weight: 0.0 -Vertex 1632: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999558925628662 - Group: 'Bone.002', Weight: 0.0 -Vertex 1633: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999110698699951 - Group: 'Bone.002', Weight: 0.0 -Vertex 1634: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999464154243469 - Group: 'Bone.002', Weight: 0.0 -Vertex 1635: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999693036079407 - Group: 'Bone.002', Weight: 0.0 -Vertex 1636: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999996542930603 - Group: 'Bone.002', Weight: 0.0 -Vertex 1637: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.002', Weight: 0.0 -Vertex 1638: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.002', Weight: 0.0 -Vertex 1639: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999983310699463 - Group: 'Bone.002', Weight: 0.0 -Vertex 1640: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999901056289673 - Group: 'Bone.002', Weight: 0.0 -Vertex 1641: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999662637710571 - Group: 'Bone.002', Weight: 0.0 -Vertex 1642: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999938428401947 - Group: 'Bone.002', Weight: 0.0 -Vertex 1643: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999948143959045 - Group: 'Bone.002', Weight: 0.0 -Vertex 1644: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.002', Weight: 0.0 -Vertex 1645: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999986290931702 - Group: 'Bone.002', Weight: 0.0 -Vertex 1646: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999964237213135 - Group: 'Bone.002', Weight: 0.0 -Vertex 1647: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.002', Weight: 0.0 -Vertex 1648: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999996423721313 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999988079071045 -Vertex 1652: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.002', Weight: 0.0 -Vertex 1653: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1654: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.002', Weight: 0.0 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.002', Weight: 0.0 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1658: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999833106994629 -Vertex 1659: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1660: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1661: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1662: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1663: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999992251396179 -Vertex 1664: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999996423721313 -Vertex 1665: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999964237213135 -Vertex 1666: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999946355819702 -Vertex 1667: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999950647354126 -Vertex 1668: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999995231628418 -Vertex 1669: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999860525131226 -Vertex 1670: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999597072601318 -Vertex 1671: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999751448631287 -Vertex 1672: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998345375061035 -Vertex 1673: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999350309371948 -Vertex 1674: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1675: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1676: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1677: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1678: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1679: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1680: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999010562896729 -Vertex 1681: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999686598777771 -Vertex 1682: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997634887695312 -Vertex 1683: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1684: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1685: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1686: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1687: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1688: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999964237213135 -Vertex 1689: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9997876882553101 -Vertex 1690: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999588131904602 -Vertex 1691: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9996082782745361 -Vertex 1692: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1693: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1694: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1695: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1696: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1697: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999977171421051 -Vertex 1698: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998124837875366 -Vertex 1699: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9996072053909302 -Vertex 1700: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999555230140686 -Vertex 1701: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1702: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1703: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1704: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1705: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1706: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1707: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9998476505279541 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995779991149902 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999589204788208 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995498061180115 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995503425598145 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995477199554443 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995482563972473 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999548614025116 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995486736297607 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995484352111816 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995485544204712 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995486736297607 -Vertex 1738: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1739: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1740: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1741: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995487332344055 -Vertex 1742: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995487928390503 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995487928390503 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995487332344055 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1746: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1747: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1748: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1749: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1751: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1752: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1753: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1754: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1755: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995487928390503 -Vertex 1756: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1757: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1758: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1759: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1760: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1761: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1762: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1763: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1764: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1765: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1766: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1767: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1768: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1769: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1770: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1771: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995488524436951 -Vertex 1772: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489120483398 -Vertex 1773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489120483398 -Vertex 1774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1775: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1776: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995490312576294 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1778: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1779: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1780: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1781: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489120483398 -Vertex 1782: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1783: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1784: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9995489716529846 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1786: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1787: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1789: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1790: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1792: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1793: -Vertex groups: 1 - Group: 'Bone', Weight: 1.0 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999350309371948 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1795: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.006388305686414242 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999486207962036 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.028431206941604614 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998859167098999 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.06738430261611938 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.11470979452133179 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1531396508216858 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.16533130407333374 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.12073557078838348 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05207465961575508 -Vertex 1803: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999979734420776 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.02288632094860077 -Vertex 1804: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999973773956299 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00577557785436511 -Vertex 1805: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999996542930603 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0008446313440799713 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 2.3450065782526508e-05 - Group: 'Bone.002', Weight: 0.001541259465739131 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05716245621442795 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999853253364563 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.11895321309566498 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999977946281433 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.2408420592546463 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991059303284 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.22028791904449463 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.35801467299461365 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999984502792358 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.38783228397369385 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999986290931702 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.46148478984832764 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.99998939037323 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1441228985786438 -Vertex 1815: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.037597741931676865 -Vertex 1816: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.005898701958358288 -Vertex 1817: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0007665019365958869 -Vertex 1818: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999962449073792 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0013963821111246943 -Vertex 1819: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999973773956299 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.016782056540250778 -Vertex 1820: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999976754188538 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.07985939830541611 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999983310699463 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8635217547416687 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999905824661255 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9922237992286682 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9990045428276062 -Vertex 1824: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999746680259705 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9985162019729614 -Vertex 1825: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999921917915344 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.999886155128479 -Vertex 1826: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999426007270813 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9999994039535522 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998903870582581 - Group: 'Bone.002', Weight: 0.9995100498199463 -Vertex 1828: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999690651893616 - Group: 'Bone.002', Weight: 0.999954342842102 -Vertex 1829: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998563528060913 - Group: 'Bone.002', Weight: 0.9999997615814209 -Vertex 1830: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999994039535522 - Group: 'Bone.002', Weight: 0.9999435544013977 -Vertex 1831: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999978244304657 - Group: 'Bone.002', Weight: 0.9989463686943054 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999873042106628 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8869510889053345 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999615550041199 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.6390320062637329 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999710321426392 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9807427525520325 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999809265136719 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9896461367607117 -Vertex 1836: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9970856308937073 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8470706939697266 -Vertex 1837: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998330295085907 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.872748076915741 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999718189239502 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8675403594970703 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999921321868896 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.6777929663658142 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994208812713623 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9262213706970215 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993071556091309 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.955345094203949 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993442296981812 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9810488224029541 -Vertex 1843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998335242271423 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9178593754768372 -Vertex 1844: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9978224635124207 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8826297521591187 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986671209335327 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9983536601066589 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998566508293152 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9891584515571594 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8978219032287598 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9959672689437866 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999945759773254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9995021224021912 -Vertex 1850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998903870582581 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9998495578765869 -Vertex 1851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999836266040802 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9997377395629883 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998652338981628 - Group: 'Bone.002', Weight: 0.999920666217804 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998589754104614 - Group: 'Bone.002', Weight: 0.9996082186698914 -Vertex 1854: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.002', Weight: 0.9986549615859985 -Vertex 1855: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999999463558197 - Group: 'Bone.002', Weight: 0.9986310601234436 -Vertex 1856: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999783635139465 - Group: 'Bone.002', Weight: 0.9942620992660522 -Vertex 1857: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997866749763489 - Group: 'Bone.002', Weight: 0.9796388149261475 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9953807592391968 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9995090961456299 -Vertex 1860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9904025197029114 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9999672770500183 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9974871873855591 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9434787034988403 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996214509010315 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9032666683197021 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998939037322998 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9988918304443359 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.994953989982605 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 1.0 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998836517333984 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9975739121437073 -Vertex 1866: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999560713768005 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9998916387557983 -Vertex 1867: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982118606567 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9999027848243713 -Vertex 1868: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 1.0 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.9995918273925781 -Vertex 1870: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.002', Weight: 0.9999602437019348 -Vertex 1871: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999789595603943 - Group: 'Bone.002', Weight: 0.9999992251396179 -Vertex 1872: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999370574951172 - Group: 'Bone.002', Weight: 0.9999940991401672 -Vertex 1873: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999243021011353 - Group: 'Bone.002', Weight: 0.999689519405365 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9971356391906738 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9984971284866333 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999912977218628 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9979217648506165 -Vertex 1876: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999023675918579 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9995965361595154 -Vertex 1877: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999896883964539 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9995275139808655 -Vertex 1878: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999791383743286 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9994041323661804 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999925494194031 - Group: 'Bone.002', Weight: 0.999554455280304 -Vertex 1880: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999858140945435 - Group: 'Bone.002', Weight: 0.9994914531707764 -Vertex 1881: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999986886978149 - Group: 'Bone.002', Weight: 0.9994130730628967 -Vertex 1882: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998757839202881 - Group: 'Bone.002', Weight: 0.9982578158378601 -Vertex 1883: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999980092048645 - Group: 'Bone.002', Weight: 0.9951627850532532 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995895028114319 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9912338256835938 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9964426159858704 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9994772672653198 -Vertex 1886: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9961028099060059 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9990239143371582 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9947658181190491 - Group: 'Bone.002', Weight: 0.9958744049072266 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9964970946311951 - Group: 'Bone.002', Weight: 0.9956170320510864 -Vertex 1889: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9989827871322632 - Group: 'Bone.002', Weight: 0.9980619549751282 -Vertex 1890: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999772846698761 - Group: 'Bone.002', Weight: 0.9394766092300415 -Vertex 1891: -Vertex groups: 2 - Group: 'Bone', Weight: 0.99980628490448 - Group: 'Bone.002', Weight: 0.9519494771957397 -Vertex 1892: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999352097511292 - Group: 'Bone.002', Weight: 0.9423755407333374 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999034583568573 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9705207943916321 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989432692527771 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9492385387420654 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994691014289856 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9780576825141907 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9942631721496582 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999488592147827 - Group: 'Bone.002', Weight: 0.9871340990066528 -Vertex 1898: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999597668647766 - Group: 'Bone.002', Weight: 0.9732769131660461 -Vertex 1899: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999710917472839 - Group: 'Bone.002', Weight: 0.883385419845581 -Vertex 1900: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998430609703064 - Group: 'Bone.002', Weight: 0.8556455373764038 -Vertex 1901: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.8506857752799988 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9736492037773132 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9878027439117432 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9564108848571777 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9891857504844666 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9865697622299194 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9853704571723938 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.995807945728302 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.948879599571228 -Vertex 1906: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9981412887573242 - Group: 'Bone.002', Weight: 0.9508033990859985 -Vertex 1907: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9991415739059448 - Group: 'Bone.002', Weight: 0.9898527264595032 -Vertex 1908: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9977446794509888 - Group: 'Bone.002', Weight: 0.975899875164032 -Vertex 1909: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9964505434036255 - Group: 'Bone.002', Weight: 0.482464075088501 -Vertex 1910: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9835247993469238 - Group: 'Bone.002', Weight: 0.28138861060142517 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9931638836860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9982728958129883 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9970219731330872 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9973681569099426 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996355772018433 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.998141348361969 -Vertex 1914: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997116923332214 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9862576723098755 -Vertex 1915: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990319013595581 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9948384761810303 -Vertex 1916: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9989480972290039 - Group: 'Bone.002', Weight: 0.9997825622558594 -Vertex 1917: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9995691180229187 - Group: 'Bone.002', Weight: 1.0 -Vertex 1918: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999958276748657 - Group: 'Bone.002', Weight: 0.9987171292304993 -Vertex 1919: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999767541885376 - Group: 'Bone.002', Weight: 0.9999936819076538 -Vertex 1920: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989960789680481 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9993686079978943 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997951984405518 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9997145533561707 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999696016311646 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9998003840446472 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9971497058868408 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9997479319572449 -Vertex 1924: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999944269657135 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9995592832565308 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992294907569885 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9992237687110901 -Vertex 1926: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999836683273315 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9993512630462646 -Vertex 1927: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9965908527374268 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9989026784896851 -Vertex 1928: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999939799308777 - Group: 'Bone.002', Weight: 0.9987413883209229 -Vertex 1929: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990164041519165 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9999307990074158 -Vertex 1930: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997278451919556 - Group: 'Bone.002', Weight: 0.9995239973068237 -Vertex 1931: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997473359107971 - Group: 'Bone.002', Weight: 0.9999392032623291 -Vertex 1932: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9984530210494995 - Group: 'Bone.002', Weight: 0.9832709431648254 -Vertex 1933: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9973025321960449 - Group: 'Bone.002', Weight: 0.9998564720153809 -Vertex 1934: -Vertex groups: 2 - Group: 'Bone', Weight: 0.981654167175293 - Group: 'Bone.002', Weight: 0.9833803176879883 -Vertex 1935: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998974800109863 - Group: 'Bone.002', Weight: 0.9999994039535522 -Vertex 1936: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9933215975761414 - Group: 'Bone.002', Weight: 0.9999900460243225 -Vertex 1937: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9594931602478027 - Group: 'Bone.002', Weight: 0.973747968673706 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.48270899057388306 -Vertex 1939: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999981164932251 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1428421586751938 -Vertex 1940: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999604225158691 - Group: 'Bone.001', Weight: 3.882353848894127e-05 - Group: 'Bone.002', Weight: 0.006044866517186165 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7840983867645264 -Vertex 1942: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.20032550394535065 -Vertex 1943: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999983310699463 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008826814591884613 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.997954249382019 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9364219903945923 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991839528083801 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7845495343208313 -Vertex 1946: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995955228805542 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1729481816291809 -Vertex 1947: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9985821843147278 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008482536301016808 -Vertex 1948: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9721083641052246 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.004403725732117891 -Vertex 1949: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994847178459167 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.11690317839384079 -Vertex 1950: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9971081018447876 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5743065476417542 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998225569725037 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7972912788391113 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997257590293884 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9322055578231812 -Vertex 1953: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9902332425117493 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7715239524841309 -Vertex 1954: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9916038513183594 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7474018335342407 -Vertex 1955: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9936861395835876 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.8207070231437683 -Vertex 1956: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9810677766799927 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.6500089764595032 -Vertex 1957: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9805320501327515 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5803081393241882 -Vertex 1958: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9435461163520813 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.000817500171251595 -Vertex 1959: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991185069084167 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.06754474341869354 -Vertex 1960: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9988090395927429 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.3325970768928528 -Vertex 1961: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993317127227783 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.6164698004722595 -Vertex 1962: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9790494441986084 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5580854415893555 -Vertex 1963: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9542343020439148 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.4018968939781189 -Vertex 1964: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9834465384483337 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.40422186255455017 -Vertex 1965: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993368983268738 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1966: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.009454889222979546 -Vertex 1967: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996398687362671 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.12515676021575928 -Vertex 1968: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9953406453132629 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.33243975043296814 -Vertex 1969: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9838429689407349 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.3127136528491974 -Vertex 1970: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9463962912559509 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.2642097771167755 -Vertex 1971: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9589027166366577 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.2142004370689392 -Vertex 1972: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999969601631165 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.2483789324760437 -Vertex 1973: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999499917030334 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.4396018981933594 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999518394470215 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.818303108215332 -Vertex 1975: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998456239700317 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.5363742113113403 -Vertex 1976: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998132586479187 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.2882364094257355 -Vertex 1977: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9980257749557495 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.08291606605052948 -Vertex 1978: -Vertex groups: 3 - Group: 'Bone', Weight: 0.99983811378479 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1979: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999380111694336 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1980: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998362064361572 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.01253036130219698 -Vertex 1981: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987548589706421 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.10254649817943573 -Vertex 1982: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9951872229576111 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.17580242455005646 -Vertex 1983: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9580085873603821 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.1920381337404251 -Vertex 1984: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9767125248908997 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.03326036036014557 -Vertex 1985: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9942250847816467 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0023483482655137777 -Vertex 1986: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999942779541016 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.11027032136917114 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.020775144919753075 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0014667098876088858 -Vertex 1989: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999972581863403 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.05296114832162857 -Vertex 1990: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999123811721802 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0009138852474279702 -Vertex 1991: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999016523361206 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.02293454110622406 -Vertex 1992: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.00764142069965601 -Vertex 1993: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999932587146759 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1994: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9871582388877869 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1995: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9903406500816345 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1996: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999974966049194 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1997: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0010979640064761043 -Vertex 2000: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999969005584717 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008950628340244293 -Vertex 2001: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999440312385559 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.008386447094380856 -Vertex 2002: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999983310699463 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2003: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2004: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.002', Weight: 0.0 -Vertex 2005: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998522400856018 - Group: 'Bone.002', Weight: 0.0 -Vertex 2006: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999953508377075 - Group: 'Bone.002', Weight: 0.0 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997332096099854 - Group: 'Bone.002', Weight: 0.0 -Vertex 2008: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998152852058411 - Group: 'Bone.002', Weight: 0.0 -Vertex 2009: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997802972793579 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2010: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999360203742981 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2011: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982626438140869 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2012: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999774158000946 - Group: 'Bone.002', Weight: 0.0 -Vertex 2013: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999545812606812 - Group: 'Bone.002', Weight: 0.0 -Vertex 2014: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2015: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2016: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2017: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2018: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2019: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2021: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2022: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2023: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999984502792358 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999990463256836 - Group: 'Bone.002', Weight: 0.0 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999308586120605 - Group: 'Bone.002', Weight: 0.0 -Vertex 2026: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9995181560516357 - Group: 'Bone.002', Weight: 0.0 -Vertex 2027: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999992311000824 - Group: 'Bone.002', Weight: 0.0 -Vertex 2028: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9915220737457275 - Group: 'Bone.002', Weight: 0.0 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9610516428947449 - Group: 'Bone.002', Weight: 0.0 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9552987217903137 - Group: 'Bone.002', Weight: 0.0 -Vertex 2031: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9929835200309753 - Group: 'Bone.002', Weight: 0.0 -Vertex 2032: -Vertex groups: 2 - Group: 'Bone', Weight: 0.994714617729187 - Group: 'Bone.002', Weight: 0.0 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999617338180542 - Group: 'Bone.002', Weight: 0.0 -Vertex 2034: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999873042106628 - Group: 'Bone.002', Weight: 0.0 -Vertex 2035: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999987483024597 - Group: 'Bone.002', Weight: 0.0 -Vertex 2036: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999942183494568 - Group: 'Bone.002', Weight: 0.0 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9957363605499268 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9990218877792358 -Vertex 2038: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997965693473816 - Group: 'Bone.002', Weight: 0.8991889953613281 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9969920516014099 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9980781078338623 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986426830291748 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.983638346195221 -Vertex 2041: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999697804450989 - Group: 'Bone.002', Weight: 0.8942246437072754 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995520710945129 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9210452437400818 -Vertex 2043: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997803568840027 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9985999464988708 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982407093048096 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9744695425033569 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9959995746612549 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.9939014315605164 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9976096153259277 - Group: 'Bone.002', Weight: 0.9999527335166931 -Vertex 2047: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9998857378959656 - Group: 'Bone.002', Weight: 0.9298312067985535 -Vertex 2048: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9935047030448914 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.7167848348617554 -Vertex 2049: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.39961034059524536 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone', Weight: 0.99876469373703 - Group: 'Bone.002', Weight: 0.9979563355445862 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9527466297149658 - Group: 'Bone.002', Weight: 0.0 -Vertex 2052: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9862976670265198 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.15286317467689514 -Vertex 2053: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997183680534363 - Group: 'Bone.002', Weight: 0.9971240162849426 -Vertex 2054: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994362592697144 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2055: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9881789684295654 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.011375398375093937 -Vertex 2056: -Vertex groups: 2 - Group: 'Bone', Weight: 0.999995231628418 - Group: 'Bone.002', Weight: 0.0 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.003341350005939603 - Group: 'Bone.002', Weight: 0.0 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999970197677612 - Group: 'Bone.001', Weight: 0.010965676978230476 - Group: 'Bone.002', Weight: 0.0 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999246597290039 - Group: 'Bone.001', Weight: 0.019022664055228233 - Group: 'Bone.002', Weight: 0.0 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995524883270264 - Group: 'Bone.001', Weight: 0.022377654910087585 - Group: 'Bone.002', Weight: 0.0 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998619556427002 - Group: 'Bone.001', Weight: 0.018987538293004036 - Group: 'Bone.002', Weight: 0.0 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999985694885254 - Group: 'Bone.001', Weight: 0.011072316206991673 - Group: 'Bone.002', Weight: 0.0 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998807907104 - Group: 'Bone.001', Weight: 0.003420317079871893 - Group: 'Bone.002', Weight: 0.0 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999938011169434 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999920725822449 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999938607215881 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999963641166687 - Group: 'Bone.001', Weight: 0.01927763968706131 - Group: 'Bone.002', Weight: 0.0 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999966025352478 - Group: 'Bone.001', Weight: 0.054516058415174484 - Group: 'Bone.002', Weight: 0.0 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999821186065674 - Group: 'Bone.001', Weight: 0.07539614289999008 - Group: 'Bone.002', Weight: 0.0 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998274445533752 - Group: 'Bone.001', Weight: 0.05158095061779022 - Group: 'Bone.002', Weight: 0.0 -Vertex 2071: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998084306716919 - Group: 'Bone.001', Weight: 0.07055553793907166 - Group: 'Bone.002', Weight: 0.0 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999969601631165 - Group: 'Bone.001', Weight: 0.041463546454906464 - Group: 'Bone.002', Weight: 0.0 -Vertex 2073: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999822974205017 - Group: 'Bone.001', Weight: 0.025003299117088318 - Group: 'Bone.002', Weight: 0.0 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999905228614807 - Group: 'Bone.001', Weight: 5.919741670368239e-05 - Group: 'Bone.002', Weight: 0.0 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999861121177673 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2076: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999971985816956 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2077: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999901056289673 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.00015912926755845547 - Group: 'Bone.002', Weight: 0.0 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.2854161858558655 - Group: 'Bone.002', Weight: 0.0 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999999463558197 - Group: 'Bone.001', Weight: 0.7579523324966431 - Group: 'Bone.002', Weight: 0.0 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997797608375549 - Group: 'Bone.001', Weight: 0.9937339425086975 - Group: 'Bone.002', Weight: 0.0 -Vertex 2082: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999845623970032 - Group: 'Bone.001', Weight: 0.9996036291122437 - Group: 'Bone.002', Weight: 0.0 -Vertex 2083: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999871253967285 - Group: 'Bone.001', Weight: 0.9997179508209229 - Group: 'Bone.002', Weight: 0.0 -Vertex 2084: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999875426292419 - Group: 'Bone.001', Weight: 0.9996925592422485 - Group: 'Bone.002', Weight: 0.0 -Vertex 2085: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999431371688843 - Group: 'Bone.001', Weight: 0.999857485294342 - Group: 'Bone.002', Weight: 0.0 -Vertex 2086: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991025924682617 - Group: 'Bone.001', Weight: 0.999966025352478 - Group: 'Bone.002', Weight: 0.0 -Vertex 2087: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991214275360107 - Group: 'Bone.001', Weight: 0.9997930526733398 - Group: 'Bone.002', Weight: 0.0 -Vertex 2088: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998077154159546 - Group: 'Bone.001', Weight: 0.9999622702598572 - Group: 'Bone.002', Weight: 0.0 -Vertex 2089: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999071359634399 - Group: 'Bone.001', Weight: 0.9999987483024597 - Group: 'Bone.002', Weight: 0.0 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999998927116394 - Group: 'Bone.001', Weight: 0.30100366473197937 - Group: 'Bone.002', Weight: 0.0 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.3006213903427124 - Group: 'Bone.002', Weight: 0.0 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990911483764648 - Group: 'Bone.001', Weight: 0.440075159072876 - Group: 'Bone.002', Weight: 0.0 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.996711254119873 - Group: 'Bone.001', Weight: 0.5634806752204895 - Group: 'Bone.002', Weight: 0.0 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996531009674072 - Group: 'Bone.001', Weight: 0.4852219820022583 - Group: 'Bone.002', Weight: 0.0 -Vertex 2095: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996982216835022 - Group: 'Bone.001', Weight: 0.606384813785553 - Group: 'Bone.002', Weight: 0.0 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.16217131912708282 - Group: 'Bone.002', Weight: 0.0 -Vertex 2097: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999955892562866 - Group: 'Bone.001', Weight: 0.04210275411605835 - Group: 'Bone.002', Weight: 0.0 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999327659606934 - Group: 'Bone.001', Weight: 0.159021258354187 - Group: 'Bone.002', Weight: 0.0 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999872446060181 - Group: 'Bone.001', Weight: 0.23128098249435425 - Group: 'Bone.002', Weight: 0.0 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.001', Weight: 0.41388121247291565 - Group: 'Bone.002', Weight: 0.0 -Vertex 2101: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996919631958008 - Group: 'Bone.001', Weight: 0.7216596603393555 - Group: 'Bone.002', Weight: 0.0 -Vertex 2102: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998840093612671 - Group: 'Bone.001', Weight: 0.3448794484138489 - Group: 'Bone.002', Weight: 0.0 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9949759244918823 - Group: 'Bone.001', Weight: 0.7718182802200317 - Group: 'Bone.002', Weight: 0.0 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999286532402039 - Group: 'Bone.001', Weight: 0.6900630593299866 - Group: 'Bone.002', Weight: 0.0 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.585756778717041 - Group: 'Bone.002', Weight: 0.0 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.001', Weight: 0.7711023092269897 - Group: 'Bone.002', Weight: 0.0 -Vertex 2107: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998936653137207 - Group: 'Bone.001', Weight: 0.9923306107521057 - Group: 'Bone.002', Weight: 0.0 -Vertex 2108: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999937415122986 - Group: 'Bone.001', Weight: 0.9999387264251709 - Group: 'Bone.002', Weight: 0.0 -Vertex 2109: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999953508377075 - Group: 'Bone.001', Weight: 0.9999945759773254 - Group: 'Bone.002', Weight: 0.0 -Vertex 2110: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.9999917149543762 - Group: 'Bone.002', Weight: 0.0 -Vertex 2111: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999849200248718 - Group: 'Bone.001', Weight: 0.9999904036521912 - Group: 'Bone.002', Weight: 0.0 -Vertex 2112: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995381236076355 - Group: 'Bone.001', Weight: 0.9999991059303284 - Group: 'Bone.002', Weight: 0.0 -Vertex 2113: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999038577079773 - Group: 'Bone.001', Weight: 0.9999966025352478 - Group: 'Bone.002', Weight: 0.0 -Vertex 2114: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999967217445374 - Group: 'Bone.001', Weight: 0.9999865889549255 - Group: 'Bone.002', Weight: 0.0 -Vertex 2115: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.9999334812164307 - Group: 'Bone.002', Weight: 0.0 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999968409538269 - Group: 'Bone.001', Weight: 0.844159722328186 - Group: 'Bone.002', Weight: 0.0 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999923706054688 - Group: 'Bone.001', Weight: 0.8680504560470581 - Group: 'Bone.002', Weight: 0.0 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982203245162964 - Group: 'Bone.001', Weight: 0.9307466745376587 - Group: 'Bone.002', Weight: 0.0 -Vertex 2119: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997774362564087 - Group: 'Bone.001', Weight: 0.5987235307693481 - Group: 'Bone.002', Weight: 0.0 -Vertex 2120: -Vertex groups: 3 - Group: 'Bone', Weight: 0.997544527053833 - Group: 'Bone.001', Weight: 0.9118102788925171 - Group: 'Bone.002', Weight: 0.0 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.7921143770217896 - Group: 'Bone.002', Weight: 0.0 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998477697372437 - Group: 'Bone.001', Weight: 0.5739322900772095 - Group: 'Bone.002', Weight: 0.0 -Vertex 2123: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986884593963623 - Group: 'Bone.001', Weight: 0.9626483917236328 - Group: 'Bone.002', Weight: 0.0 -Vertex 2124: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998634457588196 - Group: 'Bone.001', Weight: 0.9926766753196716 - Group: 'Bone.002', Weight: 0.0 -Vertex 2125: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996052980422974 - Group: 'Bone.001', Weight: 0.993528425693512 - Group: 'Bone.002', Weight: 0.0 -Vertex 2126: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999867856502533 - Group: 'Bone.001', Weight: 0.9939530491828918 - Group: 'Bone.002', Weight: 0.0 -Vertex 2127: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999787211418152 - Group: 'Bone.001', Weight: 0.9961552619934082 - Group: 'Bone.002', Weight: 0.0 -Vertex 2128: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9820574522018433 - Group: 'Bone.001', Weight: 0.9996297955513 - Group: 'Bone.002', Weight: 0.0 -Vertex 2129: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9970957040786743 - Group: 'Bone.001', Weight: 0.9999997019767761 - Group: 'Bone.002', Weight: 0.0 -Vertex 2130: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999982714653015 - Group: 'Bone.001', Weight: 0.9999963641166687 - Group: 'Bone.002', Weight: 0.0 -Vertex 2131: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999819397926331 - Group: 'Bone.001', Weight: 0.9999973773956299 - Group: 'Bone.002', Weight: 0.0 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995231628418 - Group: 'Bone.001', Weight: 0.6406509280204773 - Group: 'Bone.002', Weight: 0.0 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995763897895813 - Group: 'Bone.001', Weight: 0.9735881686210632 - Group: 'Bone.002', Weight: 0.0 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994860291481018 - Group: 'Bone.001', Weight: 0.995903730392456 - Group: 'Bone.002', Weight: 0.0 -Vertex 2135: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990563988685608 - Group: 'Bone.001', Weight: 0.9965735077857971 - Group: 'Bone.002', Weight: 0.0 -Vertex 2136: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993619322776794 - Group: 'Bone.001', Weight: 0.9976811408996582 - Group: 'Bone.002', Weight: 0.0 -Vertex 2137: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998484194278717 - Group: 'Bone.001', Weight: 0.9980592727661133 - Group: 'Bone.002', Weight: 0.0 -Vertex 2138: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9946538209915161 - Group: 'Bone.001', Weight: 0.9997630715370178 - Group: 'Bone.002', Weight: 0.0 -Vertex 2139: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999377131462097 - Group: 'Bone.001', Weight: 0.9999752044677734 - Group: 'Bone.002', Weight: 0.0 -Vertex 2140: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999142289161682 - Group: 'Bone.001', Weight: 0.9999984502792358 - Group: 'Bone.002', Weight: 0.0 -Vertex 2141: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997621774673462 - Group: 'Bone.001', Weight: 0.9999648928642273 - Group: 'Bone.002', Weight: 0.0 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998117089271545 - Group: 'Bone.001', Weight: 0.9920922517776489 - Group: 'Bone.002', Weight: 0.0 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9986745119094849 - Group: 'Bone.001', Weight: 0.9997669458389282 - Group: 'Bone.002', Weight: 0.0 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991241693496704 - Group: 'Bone.001', Weight: 0.9994928240776062 - Group: 'Bone.002', Weight: 0.0 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994217753410339 - Group: 'Bone.001', Weight: 0.9998338222503662 - Group: 'Bone.002', Weight: 0.0 -Vertex 2146: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999014139175415 - Group: 'Bone.001', Weight: 0.9998592138290405 - Group: 'Bone.002', Weight: 0.0 -Vertex 2147: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999933242797852 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2148: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999833345413208 - Group: 'Bone.001', Weight: 0.9999085068702698 - Group: 'Bone.002', Weight: 0.0 -Vertex 2149: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989607334136963 - Group: 'Bone.001', Weight: 0.9999370574951172 - Group: 'Bone.002', Weight: 0.0 -Vertex 2150: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987196326255798 - Group: 'Bone.001', Weight: 0.9998618960380554 - Group: 'Bone.002', Weight: 0.0 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983052611351013 - Group: 'Bone.001', Weight: 0.9909844398498535 - Group: 'Bone.002', Weight: 0.0 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998565316200256 - Group: 'Bone.001', Weight: 0.9995265007019043 - Group: 'Bone.002', Weight: 0.0 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999952495098114 - Group: 'Bone.001', Weight: 0.9998297691345215 - Group: 'Bone.002', Weight: 0.0 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999784529209137 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2155: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999597072601318 - Group: 'Bone.001', Weight: 0.999944806098938 - Group: 'Bone.002', Weight: 0.0 -Vertex 2156: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999528527259827 - Group: 'Bone.001', Weight: 0.9996910691261292 - Group: 'Bone.002', Weight: 0.0 -Vertex 2157: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983718395233154 - Group: 'Bone.001', Weight: 0.9996083974838257 - Group: 'Bone.002', Weight: 0.0 -Vertex 2158: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9963964223861694 - Group: 'Bone.001', Weight: 0.9994656443595886 - Group: 'Bone.002', Weight: 0.0 -Vertex 2159: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9945066571235657 - Group: 'Bone.001', Weight: 0.9990218281745911 - Group: 'Bone.002', Weight: 0.0 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999087452888489 - Group: 'Bone.001', Weight: 0.8427486419677734 - Group: 'Bone.002', Weight: 0.0 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9922680854797363 - Group: 'Bone.001', Weight: 0.997051477432251 - Group: 'Bone.002', Weight: 0.0 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9863975048065186 - Group: 'Bone.001', Weight: 0.9997111558914185 - Group: 'Bone.002', Weight: 0.0 -Vertex 2163: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9975100755691528 - Group: 'Bone.001', Weight: 0.9999780058860779 - Group: 'Bone.002', Weight: 0.0 -Vertex 2164: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999458193778992 - Group: 'Bone.001', Weight: 0.9999653100967407 - Group: 'Bone.002', Weight: 0.0 -Vertex 2165: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999992847442627 - Group: 'Bone.001', Weight: 0.9996380805969238 - Group: 'Bone.002', Weight: 0.0 -Vertex 2166: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9996964931488037 - Group: 'Bone.001', Weight: 0.9998598098754883 - Group: 'Bone.002', Weight: 0.0 -Vertex 2167: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9935168027877808 - Group: 'Bone.001', Weight: 0.9998158812522888 - Group: 'Bone.002', Weight: 0.0 -Vertex 2168: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9847957491874695 - Group: 'Bone.001', Weight: 0.9996364116668701 - Group: 'Bone.002', Weight: 0.0 -Vertex 2169: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990943670272827 - Group: 'Bone.001', Weight: 0.9925578832626343 - Group: 'Bone.002', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979598522186279 - Group: 'Bone.001', Weight: 0.9997857809066772 - Group: 'Bone.002', Weight: 0.0 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998903870582581 - Group: 'Bone.001', Weight: 0.9999979734420776 - Group: 'Bone.002', Weight: 0.0 -Vertex 2172: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999066591262817 - Group: 'Bone.001', Weight: 0.9999904632568359 - Group: 'Bone.002', Weight: 0.0 -Vertex 2173: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9995393753051758 - Group: 'Bone.001', Weight: 0.9999993443489075 - Group: 'Bone.002', Weight: 0.0 -Vertex 2174: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999976396560669 - Group: 'Bone.001', Weight: 0.9998542666435242 - Group: 'Bone.002', Weight: 0.0 -Vertex 2175: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.9999991059303284 - Group: 'Bone.002', Weight: 0.0 -Vertex 2176: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993078708648682 - Group: 'Bone.001', Weight: 0.9981399774551392 - Group: 'Bone.002', Weight: 0.0 -Vertex 2177: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9968772530555725 - Group: 'Bone.001', Weight: 0.9999641180038452 - Group: 'Bone.002', Weight: 0.0 -Vertex 2178: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999526143074036 - Group: 'Bone.001', Weight: 0.9778891205787659 - Group: 'Bone.002', Weight: 0.0 -Vertex 2179: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999992847442627 - Group: 'Bone.001', Weight: 0.9908843040466309 - Group: 'Bone.002', Weight: 0.0 -Vertex 2180: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999991655349731 - Group: 'Bone.001', Weight: 0.9998986721038818 - Group: 'Bone.002', Weight: 0.0 -Vertex 2181: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999064564704895 - Group: 'Bone.001', Weight: 0.9996558427810669 - Group: 'Bone.002', Weight: 0.0 -Vertex 2182: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999874830245972 - Group: 'Bone.001', Weight: 0.9999948740005493 - Group: 'Bone.002', Weight: 0.0 -Vertex 2183: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993073344230652 - Group: 'Bone.001', Weight: 0.9999542236328125 - Group: 'Bone.002', Weight: 0.0 -Vertex 2184: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999237060546875 - Group: 'Bone.001', Weight: 0.9999859929084778 - Group: 'Bone.002', Weight: 0.0 -Vertex 2185: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989590644836426 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2186: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999993443489075 - Group: 'Bone.001', Weight: 0.9997055530548096 - Group: 'Bone.002', Weight: 0.0 -Vertex 2187: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9972963929176331 - Group: 'Bone.001', Weight: 0.9999755024909973 - Group: 'Bone.002', Weight: 0.0 -Vertex 2188: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999993443489075 - Group: 'Bone.001', Weight: 0.9995681047439575 - Group: 'Bone.002', Weight: 0.0 -Vertex 2189: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9955657720565796 - Group: 'Bone.001', Weight: 0.9997249841690063 - Group: 'Bone.002', Weight: 0.0 -Vertex 2190: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.9999022483825684 - Group: 'Bone.002', Weight: 0.0 -Vertex 2191: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9959593415260315 - Group: 'Bone.001', Weight: 0.9995798468589783 - Group: 'Bone.002', Weight: 0.0 -Vertex 2192: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999768137931824 - Group: 'Bone.001', Weight: 0.9990952014923096 - Group: 'Bone.002', Weight: 0.0 -Vertex 2193: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9966738820075989 - Group: 'Bone.001', Weight: 0.9997656345367432 - Group: 'Bone.002', Weight: 0.0 -Vertex 2194: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9942675232887268 - Group: 'Bone.001', Weight: 0.9928818941116333 - Group: 'Bone.002', Weight: 0.0 -Vertex 2195: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991828203201294 - Group: 'Bone.001', Weight: 0.9956158399581909 - Group: 'Bone.002', Weight: 0.0 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999493360519409 - Group: 'Bone.001', Weight: 0.13742002844810486 - Group: 'Bone.002', Weight: 0.0 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997584819793701 - Group: 'Bone.001', Weight: 0.02597472071647644 - Group: 'Bone.002', Weight: 0.0 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999227523803711 - Group: 'Bone.001', Weight: 0.18124160170555115 - Group: 'Bone.002', Weight: 0.0 -Vertex 2199: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999516606330872 - Group: 'Bone.001', Weight: 0.021748213097453117 - Group: 'Bone.002', Weight: 0.0 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9859439730644226 - Group: 'Bone.001', Weight: 0.2641175389289856 - Group: 'Bone.002', Weight: 0.0 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9904341697692871 - Group: 'Bone.001', Weight: 0.1427268385887146 - Group: 'Bone.002', Weight: 0.0 -Vertex 2202: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9959167242050171 - Group: 'Bone.001', Weight: 0.011248883791267872 - Group: 'Bone.002', Weight: 0.0 -Vertex 2203: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9737730622291565 - Group: 'Bone.001', Weight: 0.004353127907961607 - Group: 'Bone.002', Weight: 0.0 -Vertex 2204: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9990651607513428 - Group: 'Bone.001', Weight: 0.08212124556303024 - Group: 'Bone.002', Weight: 0.0 -Vertex 2205: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9971362948417664 - Group: 'Bone.001', Weight: 0.1802932769060135 - Group: 'Bone.002', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993647336959839 - Group: 'Bone.001', Weight: 0.32810837030410767 - Group: 'Bone.002', Weight: 0.0 -Vertex 2207: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9989087581634521 - Group: 'Bone.001', Weight: 0.55064457654953 - Group: 'Bone.002', Weight: 0.0 -Vertex 2208: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998867511749268 - Group: 'Bone.001', Weight: 0.4948035180568695 - Group: 'Bone.002', Weight: 0.0 -Vertex 2209: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.23373526334762573 - Group: 'Bone.002', Weight: 0.0 -Vertex 2210: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9984497427940369 - Group: 'Bone.001', Weight: 0.4883286952972412 - Group: 'Bone.002', Weight: 0.0 -Vertex 2211: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994221925735474 - Group: 'Bone.001', Weight: 0.34233558177948 - Group: 'Bone.002', Weight: 0.0 -Vertex 2212: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9828358888626099 - Group: 'Bone.001', Weight: 0.0014274957356974483 - Group: 'Bone.002', Weight: 0.0 -Vertex 2213: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999085664749146 - Group: 'Bone.001', Weight: 0.04150191321969032 - Group: 'Bone.002', Weight: 0.0 -Vertex 2214: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9982243776321411 - Group: 'Bone.001', Weight: 0.12556199729442596 - Group: 'Bone.002', Weight: 0.0 -Vertex 2215: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983826875686646 - Group: 'Bone.001', Weight: 0.212755024433136 - Group: 'Bone.002', Weight: 0.0 -Vertex 2216: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9979583621025085 - Group: 'Bone.001', Weight: 0.36146727204322815 - Group: 'Bone.002', Weight: 0.0 -Vertex 2217: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999373555183411 - Group: 'Bone.001', Weight: 0.1878213882446289 - Group: 'Bone.002', Weight: 0.0 -Vertex 2218: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9983878135681152 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2219: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9970924258232117 - Group: 'Bone.001', Weight: 0.010595886036753654 - Group: 'Bone.002', Weight: 0.0 -Vertex 2220: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9965974688529968 - Group: 'Bone.001', Weight: 0.07151104509830475 - Group: 'Bone.002', Weight: 0.0 -Vertex 2221: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9953060746192932 - Group: 'Bone.001', Weight: 0.1237918883562088 - Group: 'Bone.002', Weight: 0.0 -Vertex 2222: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9994562268257141 - Group: 'Bone.001', Weight: 0.28489750623703003 - Group: 'Bone.002', Weight: 0.0 -Vertex 2223: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999649524688721 - Group: 'Bone.001', Weight: 0.15761661529541016 - Group: 'Bone.002', Weight: 0.0 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999995827674866 - Group: 'Bone.001', Weight: 0.005330381914973259 - Group: 'Bone.002', Weight: 0.0 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.03418674319982529 - Group: 'Bone.002', Weight: 0.0 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.15232345461845398 - Group: 'Bone.002', Weight: 0.0 -Vertex 2227: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999877214431763 - Group: 'Bone.001', Weight: 0.06297309696674347 - Group: 'Bone.002', Weight: 0.0 -Vertex 2228: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993842840194702 - Group: 'Bone.001', Weight: 0.041705865412950516 - Group: 'Bone.002', Weight: 0.0 -Vertex 2229: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998664855957031 - Group: 'Bone.001', Weight: 0.024766424670815468 - Group: 'Bone.002', Weight: 0.0 -Vertex 2230: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999560117721558 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2231: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999980330467224 - Group: 'Bone.001', Weight: 0.0004273664962965995 - Group: 'Bone.002', Weight: 0.0 -Vertex 2232: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999967634677887 - Group: 'Bone.001', Weight: 0.02283748984336853 - Group: 'Bone.002', Weight: 0.0 -Vertex 2233: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9987081289291382 - Group: 'Bone.001', Weight: 0.07037864625453949 - Group: 'Bone.002', Weight: 0.0 -Vertex 2234: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993051290512085 - Group: 'Bone.001', Weight: 0.22406601905822754 - Group: 'Bone.002', Weight: 0.0 -Vertex 2235: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999378323554993 - Group: 'Bone.001', Weight: 0.06989137083292007 - Group: 'Bone.002', Weight: 0.0 -Vertex 2236: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998478889465332 - Group: 'Bone.001', Weight: 0.0054694474674761295 - Group: 'Bone.002', Weight: 0.0 -Vertex 2237: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.002327902242541313 - Group: 'Bone.002', Weight: 0.0 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988079071045 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2239: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.0005988904740661383 - Group: 'Bone.002', Weight: 0.0 -Vertex 2240: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993699789047241 - Group: 'Bone.001', Weight: 0.00012528996740002185 - Group: 'Bone.002', Weight: 0.0 -Vertex 2241: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998151659965515 - Group: 'Bone.001', Weight: 0.0003656700428109616 - Group: 'Bone.002', Weight: 0.0 -Vertex 2242: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9960757493972778 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2243: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999710917472839 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9992545247077942 - Group: 'Bone.002', Weight: 0.0 -Vertex 2245: -Vertex groups: 3 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.001', Weight: 0.00021111516980454326 - Group: 'Bone.002', Weight: 0.0 -Vertex 2246: -Vertex groups: 3 - Group: 'Bone', Weight: 0.998755931854248 - Group: 'Bone.001', Weight: 0.004530647769570351 - Group: 'Bone.002', Weight: 0.0 -Vertex 2247: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999998211860657 - Group: 'Bone.001', Weight: 0.025903021916747093 - Group: 'Bone.002', Weight: 0.0 -Vertex 2248: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9993605613708496 - Group: 'Bone.002', Weight: 0.0 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2250: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.001', Weight: 0.007192761171609163 - Group: 'Bone.002', Weight: 0.0 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997787475585938 - Group: 'Bone.002', Weight: 0.0 -Vertex 2252: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2253: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9997061491012573 - Group: 'Bone.002', Weight: 0.0 -Vertex 2254: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999793171882629 - Group: 'Bone.001', Weight: 5.297070856613573e-06 - Group: 'Bone.002', Weight: 0.0 -Vertex 2255: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999491572380066 - Group: 'Bone.002', Weight: 0.0 -Vertex 2256: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999999403953552 - Group: 'Bone.002', Weight: 0.0 -Vertex 2257: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999996423721313 - Group: 'Bone.002', Weight: 0.0 -Vertex 2258: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999992251396179 - Group: 'Bone.002', Weight: 0.0 -Vertex 2259: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2261: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999966621398926 - Group: 'Bone.002', Weight: 0.0 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999974966049194 - Group: 'Bone.002', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999788999557495 - Group: 'Bone.002', Weight: 0.0 -Vertex 2264: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999613165855408 -Vertex 2265: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999593496322632 - Group: 'Bone.002', Weight: 0.0 -Vertex 2266: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999972581863403 - Group: 'Bone.002', Weight: 0.0 -Vertex 2267: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9992762207984924 -Vertex 2268: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9961393475532532 -Vertex 2269: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9951052069664001 -Vertex 2270: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9987990856170654 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9995508193969727 - Group: 'Bone.002', Weight: 0.0 -Vertex 2272: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999827742576599 - Group: 'Bone.002', Weight: 0.0 -Vertex 2273: -Vertex groups: 2 - Group: 'Bone', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2274: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9999997615814209 - Group: 'Bone.002', Weight: 0.0 -Vertex 2275: -Vertex groups: 2 - Group: 'Bone', Weight: 0.9996273517608643 - Group: 'Bone.002', Weight: 0.0 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.999836266040802 - Group: 'Bone.001', Weight: 0.994953989982605 - Group: 'Bone.002', Weight: 0.0 -Vertex 2277: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9968991279602051 - Group: 'Bone.001', Weight: 0.9997939467430115 - Group: 'Bone.002', Weight: 0.0 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998888969421387 - Group: 'Bone.001', Weight: 0.6263926029205322 - Group: 'Bone.002', Weight: 0.0 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992777705192566 - Group: 'Bone.001', Weight: 1.0 - Group: 'Bone.002', Weight: 0.0 -Vertex 2280: -Vertex groups: 3 - Group: 'Bone', Weight: 0.996174693107605 - Group: 'Bone.001', Weight: 0.9995505809783936 - Group: 'Bone.002', Weight: 0.0 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998387098312378 - Group: 'Bone.001', Weight: 0.3464115262031555 - Group: 'Bone.002', Weight: 0.0 -Vertex 2282: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998458623886108 - Group: 'Bone.001', Weight: 0.903130292892456 - Group: 'Bone.002', Weight: 0.0 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9997400641441345 - Group: 'Bone.001', Weight: 0.4590800106525421 - Group: 'Bone.002', Weight: 0.0 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.99981689453125 - Group: 'Bone.001', Weight: 0.9998441338539124 - Group: 'Bone.002', Weight: 0.0 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9992637038230896 - Group: 'Bone.001', Weight: 0.9999927282333374 - Group: 'Bone.002', Weight: 0.0 -Vertex 2286: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9991693496704102 - Group: 'Bone.001', Weight: 0.9998635649681091 - Group: 'Bone.002', Weight: 0.0 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999988675117493 - Group: 'Bone.001', Weight: 0.19393473863601685 - Group: 'Bone.002', Weight: 0.0 -Vertex 2288: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999793767929077 - Group: 'Bone.001', Weight: 0.10771939158439636 - Group: 'Bone.002', Weight: 0.0 -Vertex 2289: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9993963837623596 - Group: 'Bone.001', Weight: 0.9999783039093018 - Group: 'Bone.002', Weight: 0.0 -Vertex 2290: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9956780672073364 -Vertex 2291: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999369382858276 - Group: 'Bone.001', Weight: 0.07826747000217438 - Group: 'Bone.002', Weight: 0.0 -Vertex 2292: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9998898506164551 - Group: 'Bone.001', Weight: 0.9999973773956299 - Group: 'Bone.002', Weight: 0.0 -Vertex 2293: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999914765357971 - Group: 'Bone.001', Weight: 0.0008452989859506488 - Group: 'Bone.002', Weight: 0.0 -Vertex 2294: -Vertex groups: 3 - Group: 'Bone', Weight: 0.9999696612358093 - Group: 'Bone.001', Weight: 0.02372419834136963 - Group: 'Bone.002', Weight: 0.0 -Vertex 2295: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999285340309143 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 2 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - -Frame: 60 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - diff --git a/walkviola008.txt b/walkviola008.txt deleted file mode 100644 index 7021241..0000000 --- a/walkviola008.txt +++ /dev/null @@ -1,18795 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 14 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 5 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 7 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 8 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 10 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 15 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 16 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 17 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 20 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 23 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 25 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 30 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - diff --git a/walkviola_uv009.txt b/walkviola_uv009.txt deleted file mode 100644 index 09819be..0000000 --- a/walkviola_uv009.txt +++ /dev/null @@ -1,43494 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===UV Coordinates: -Face count: 4480 -Face 0 -UV Count: 3 - UV - UV - UV -Face 1 -UV Count: 3 - UV - UV - UV -Face 2 -UV Count: 3 - UV - UV - UV -Face 3 -UV Count: 3 - UV - UV - UV -Face 4 -UV Count: 3 - UV - UV - UV -Face 5 -UV Count: 3 - UV - UV - UV -Face 6 -UV Count: 3 - UV - UV - UV -Face 7 -UV Count: 3 - UV - UV - UV -Face 8 -UV Count: 3 - UV - UV - UV -Face 9 -UV Count: 3 - UV - UV - UV -Face 10 -UV Count: 3 - UV - UV - UV -Face 11 -UV Count: 3 - UV - UV - UV -Face 12 -UV Count: 3 - UV - UV - UV -Face 13 -UV Count: 3 - UV - UV - UV -Face 14 -UV Count: 3 - UV - UV - UV -Face 15 -UV Count: 3 - UV - UV - UV -Face 16 -UV Count: 3 - UV - UV - UV -Face 17 -UV Count: 3 - UV - UV - UV -Face 18 -UV Count: 3 - UV - UV - UV -Face 19 -UV Count: 3 - UV - UV - UV -Face 20 -UV Count: 3 - UV - UV - UV -Face 21 -UV Count: 3 - UV - UV - UV -Face 22 -UV Count: 3 - UV - UV - UV -Face 23 -UV Count: 3 - UV - UV - UV -Face 24 -UV Count: 3 - UV - UV - UV -Face 25 -UV Count: 3 - UV - UV - UV -Face 26 -UV Count: 3 - UV - UV - UV -Face 27 -UV Count: 3 - UV - UV - UV -Face 28 -UV Count: 3 - UV - UV - UV -Face 29 -UV Count: 3 - UV - UV - UV -Face 30 -UV Count: 3 - UV - UV - UV -Face 31 -UV Count: 3 - UV - UV - UV -Face 32 -UV Count: 3 - UV - UV - UV -Face 33 -UV Count: 3 - UV - UV - UV -Face 34 -UV Count: 3 - UV - UV - UV -Face 35 -UV Count: 3 - UV - UV - UV -Face 36 -UV Count: 3 - UV - UV - UV -Face 37 -UV Count: 3 - UV - UV - UV -Face 38 -UV Count: 3 - UV - UV - UV -Face 39 -UV Count: 3 - UV - UV - UV -Face 40 -UV Count: 3 - UV - UV - UV -Face 41 -UV Count: 3 - UV - UV - UV -Face 42 -UV Count: 3 - UV - UV - UV -Face 43 -UV Count: 3 - UV - UV - UV -Face 44 -UV Count: 3 - UV - UV - UV -Face 45 -UV Count: 3 - UV - UV - UV -Face 46 -UV Count: 3 - UV - UV - UV -Face 47 -UV Count: 3 - UV - UV - UV -Face 48 -UV Count: 3 - UV - UV - UV -Face 49 -UV Count: 3 - UV - UV - UV -Face 50 -UV Count: 3 - UV - UV - UV -Face 51 -UV Count: 3 - UV - UV - UV -Face 52 -UV Count: 3 - UV - UV - UV -Face 53 -UV Count: 3 - UV - UV - UV -Face 54 -UV Count: 3 - UV - UV - UV -Face 55 -UV Count: 3 - UV - UV - UV -Face 56 -UV Count: 3 - UV - UV - UV -Face 57 -UV Count: 3 - UV - UV - UV -Face 58 -UV Count: 3 - UV - UV - UV -Face 59 -UV Count: 3 - UV - UV - UV -Face 60 -UV Count: 3 - UV - UV - UV -Face 61 -UV Count: 3 - UV - UV - UV -Face 62 -UV Count: 3 - UV - UV - UV -Face 63 -UV Count: 3 - UV - UV - UV -Face 64 -UV Count: 3 - UV - UV - UV -Face 65 -UV Count: 3 - UV - UV - UV -Face 66 -UV Count: 3 - UV - UV - UV -Face 67 -UV Count: 3 - UV - UV - UV -Face 68 -UV Count: 3 - UV - UV - UV -Face 69 -UV Count: 3 - UV - UV - UV -Face 70 -UV Count: 3 - UV - UV - UV -Face 71 -UV Count: 3 - UV - UV - UV -Face 72 -UV Count: 3 - UV - UV - UV -Face 73 -UV Count: 3 - UV - UV - UV -Face 74 -UV Count: 3 - UV - UV - UV -Face 75 -UV Count: 3 - UV - UV - UV -Face 76 -UV Count: 3 - UV - UV - UV -Face 77 -UV Count: 3 - UV - UV - UV -Face 78 -UV Count: 3 - UV - UV - UV -Face 79 -UV Count: 3 - UV - UV - UV -Face 80 -UV Count: 3 - UV - UV - UV -Face 81 -UV Count: 3 - UV - UV - UV -Face 82 -UV Count: 3 - UV - UV - UV -Face 83 -UV Count: 3 - UV - UV - UV -Face 84 -UV Count: 3 - UV - UV - UV -Face 85 -UV Count: 3 - UV - UV - UV -Face 86 -UV Count: 3 - UV - UV - UV -Face 87 -UV Count: 3 - UV - UV - UV -Face 88 -UV Count: 3 - UV - UV - UV -Face 89 -UV Count: 3 - UV - UV - UV -Face 90 -UV Count: 3 - UV - UV - UV -Face 91 -UV Count: 3 - UV - UV - UV -Face 92 -UV Count: 3 - UV - UV - UV -Face 93 -UV Count: 3 - UV - UV - UV -Face 94 -UV Count: 3 - UV - UV - UV -Face 95 -UV Count: 3 - UV - UV - UV -Face 96 -UV Count: 3 - UV - UV - UV -Face 97 -UV Count: 3 - UV - UV - UV -Face 98 -UV Count: 3 - UV - UV - UV -Face 99 -UV Count: 3 - UV - UV - UV -Face 100 -UV Count: 3 - UV - UV - UV -Face 101 -UV Count: 3 - UV - UV - UV -Face 102 -UV Count: 3 - UV - UV - UV -Face 103 -UV Count: 3 - UV - UV - UV -Face 104 -UV Count: 3 - UV - UV - UV -Face 105 -UV Count: 3 - UV - UV - UV -Face 106 -UV Count: 3 - UV - UV - UV -Face 107 -UV Count: 3 - UV - UV - UV -Face 108 -UV Count: 3 - UV - UV - UV -Face 109 -UV Count: 3 - UV - UV - UV -Face 110 -UV Count: 3 - UV - UV - UV -Face 111 -UV Count: 3 - UV - UV - UV -Face 112 -UV Count: 3 - UV - UV - UV -Face 113 -UV Count: 3 - UV - UV - UV -Face 114 -UV Count: 3 - UV - UV - UV -Face 115 -UV Count: 3 - UV - UV - UV -Face 116 -UV Count: 3 - UV - UV - UV -Face 117 -UV Count: 3 - UV - UV - UV -Face 118 -UV Count: 3 - UV - UV - UV -Face 119 -UV Count: 3 - UV - UV - UV -Face 120 -UV Count: 3 - UV - UV - UV -Face 121 -UV Count: 3 - UV - UV - UV -Face 122 -UV Count: 3 - UV - UV - UV -Face 123 -UV Count: 3 - UV - UV - UV -Face 124 -UV Count: 3 - UV - UV - UV -Face 125 -UV Count: 3 - UV - UV - UV -Face 126 -UV Count: 3 - UV - UV - UV -Face 127 -UV Count: 3 - UV - UV - UV -Face 128 -UV Count: 3 - UV - UV - UV -Face 129 -UV Count: 3 - UV - UV - UV -Face 130 -UV Count: 3 - UV - UV - UV -Face 131 -UV Count: 3 - UV - UV - UV -Face 132 -UV Count: 3 - UV - UV - UV -Face 133 -UV Count: 3 - UV - UV - UV -Face 134 -UV Count: 3 - UV - UV - UV -Face 135 -UV Count: 3 - UV - UV - UV -Face 136 -UV Count: 3 - UV - UV - UV -Face 137 -UV Count: 3 - UV - UV - UV -Face 138 -UV Count: 3 - UV - UV - UV -Face 139 -UV Count: 3 - UV - UV - UV -Face 140 -UV Count: 3 - UV - UV - UV -Face 141 -UV Count: 3 - UV - UV - UV -Face 142 -UV Count: 3 - UV - UV - UV -Face 143 -UV Count: 3 - UV - UV - UV -Face 144 -UV Count: 3 - UV - UV - UV -Face 145 -UV Count: 3 - UV - UV - UV -Face 146 -UV Count: 3 - UV - UV - UV -Face 147 -UV Count: 3 - UV - UV - UV -Face 148 -UV Count: 3 - UV - UV - UV -Face 149 -UV Count: 3 - UV - UV - UV -Face 150 -UV Count: 3 - UV - UV - UV -Face 151 -UV Count: 3 - UV - UV - UV -Face 152 -UV Count: 3 - UV - UV - UV -Face 153 -UV Count: 3 - UV - UV - UV -Face 154 -UV Count: 3 - UV - UV - UV -Face 155 -UV Count: 3 - UV - UV - UV -Face 156 -UV Count: 3 - UV - UV - UV -Face 157 -UV Count: 3 - UV - UV - UV -Face 158 -UV Count: 3 - UV - UV - UV -Face 159 -UV Count: 3 - UV - UV - UV -Face 160 -UV Count: 3 - UV - UV - UV -Face 161 -UV Count: 3 - UV - UV - UV -Face 162 -UV Count: 3 - UV - UV - UV -Face 163 -UV Count: 3 - UV - UV - UV -Face 164 -UV Count: 3 - UV - UV - UV -Face 165 -UV Count: 3 - UV - UV - UV -Face 166 -UV Count: 3 - UV - UV - UV -Face 167 -UV Count: 3 - UV - UV - UV -Face 168 -UV Count: 3 - UV - UV - UV -Face 169 -UV Count: 3 - UV - UV - UV -Face 170 -UV Count: 3 - UV - UV - UV -Face 171 -UV Count: 3 - UV - UV - UV -Face 172 -UV Count: 3 - UV - UV - UV -Face 173 -UV Count: 3 - UV - UV - UV -Face 174 -UV Count: 3 - UV - UV - UV -Face 175 -UV Count: 3 - UV - UV - UV -Face 176 -UV Count: 3 - UV - UV - UV -Face 177 -UV Count: 3 - UV - UV - UV -Face 178 -UV Count: 3 - UV - UV - UV -Face 179 -UV Count: 3 - UV - UV - UV -Face 180 -UV Count: 3 - UV - UV - UV -Face 181 -UV Count: 3 - UV - UV - UV -Face 182 -UV Count: 3 - UV - UV - UV -Face 183 -UV Count: 3 - UV - UV - UV -Face 184 -UV Count: 3 - UV - UV - UV -Face 185 -UV Count: 3 - UV - UV - UV -Face 186 -UV Count: 3 - UV - UV - UV -Face 187 -UV Count: 3 - UV - UV - UV -Face 188 -UV Count: 3 - UV - UV - UV -Face 189 -UV Count: 3 - UV - UV - UV -Face 190 -UV Count: 3 - UV - UV - UV -Face 191 -UV Count: 3 - UV - UV - UV -Face 192 -UV Count: 3 - UV - UV - UV -Face 193 -UV Count: 3 - UV - UV - UV -Face 194 -UV Count: 3 - UV - UV - UV -Face 195 -UV Count: 3 - UV - UV - UV -Face 196 -UV Count: 3 - UV - UV - UV -Face 197 -UV Count: 3 - UV - UV - UV -Face 198 -UV Count: 3 - UV - UV - UV -Face 199 -UV Count: 3 - UV - UV - UV -Face 200 -UV Count: 3 - UV - UV - UV -Face 201 -UV Count: 3 - UV - UV - UV -Face 202 -UV Count: 3 - UV - UV - UV -Face 203 -UV Count: 3 - UV - UV - UV -Face 204 -UV Count: 3 - UV - UV - UV -Face 205 -UV Count: 3 - UV - UV - UV -Face 206 -UV Count: 3 - UV - UV - UV -Face 207 -UV Count: 3 - UV - UV - UV -Face 208 -UV Count: 3 - UV - UV - UV -Face 209 -UV Count: 3 - UV - UV - UV -Face 210 -UV Count: 3 - UV - UV - UV -Face 211 -UV Count: 3 - UV - UV - UV -Face 212 -UV Count: 3 - UV - UV - UV -Face 213 -UV Count: 3 - UV - UV - UV -Face 214 -UV Count: 3 - UV - UV - UV -Face 215 -UV Count: 3 - UV - UV - UV -Face 216 -UV Count: 3 - UV - UV - UV -Face 217 -UV Count: 3 - UV - UV - UV -Face 218 -UV Count: 3 - UV - UV - UV -Face 219 -UV Count: 3 - UV - UV - UV -Face 220 -UV Count: 3 - UV - UV - UV -Face 221 -UV Count: 3 - UV - UV - UV -Face 222 -UV Count: 3 - UV - UV - UV -Face 223 -UV Count: 3 - UV - UV - UV -Face 224 -UV Count: 3 - UV - UV - UV -Face 225 -UV Count: 3 - UV - UV - UV -Face 226 -UV Count: 3 - UV - UV - UV -Face 227 -UV Count: 3 - UV - UV - UV -Face 228 -UV Count: 3 - UV - UV - UV -Face 229 -UV Count: 3 - UV - UV - UV -Face 230 -UV Count: 3 - UV - UV - UV -Face 231 -UV Count: 3 - UV - UV - UV -Face 232 -UV Count: 3 - UV - UV - UV -Face 233 -UV Count: 3 - UV - UV - UV -Face 234 -UV Count: 3 - UV - UV - UV -Face 235 -UV Count: 3 - UV - UV - UV -Face 236 -UV Count: 3 - UV - UV - UV -Face 237 -UV Count: 3 - UV - UV - UV -Face 238 -UV Count: 3 - UV - UV - UV -Face 239 -UV Count: 3 - UV - UV - UV -Face 240 -UV Count: 3 - UV - UV - UV -Face 241 -UV Count: 3 - UV - UV - UV -Face 242 -UV Count: 3 - UV - UV - UV -Face 243 -UV Count: 3 - UV - UV - UV -Face 244 -UV Count: 3 - UV - UV - UV -Face 245 -UV Count: 3 - UV - UV - UV -Face 246 -UV Count: 3 - UV - UV - UV -Face 247 -UV Count: 3 - UV - UV - UV -Face 248 -UV Count: 3 - UV - UV - UV -Face 249 -UV Count: 3 - UV - UV - UV -Face 250 -UV Count: 3 - UV - UV - UV -Face 251 -UV Count: 3 - UV - UV - UV -Face 252 -UV Count: 3 - UV - UV - UV -Face 253 -UV Count: 3 - UV - UV - UV -Face 254 -UV Count: 3 - UV - UV - UV -Face 255 -UV Count: 3 - UV - UV - UV -Face 256 -UV Count: 3 - UV - UV - UV -Face 257 -UV Count: 3 - UV - UV - UV -Face 258 -UV Count: 3 - UV - UV - UV -Face 259 -UV Count: 3 - UV - UV - UV -Face 260 -UV Count: 3 - UV - UV - UV -Face 261 -UV Count: 3 - UV - UV - UV -Face 262 -UV Count: 3 - UV - UV - UV -Face 263 -UV Count: 3 - UV - UV - UV -Face 264 -UV Count: 3 - UV - UV - UV -Face 265 -UV Count: 3 - UV - UV - UV -Face 266 -UV Count: 3 - UV - UV - UV -Face 267 -UV Count: 3 - UV - UV - UV -Face 268 -UV Count: 3 - UV - UV - UV -Face 269 -UV Count: 3 - UV - UV - UV -Face 270 -UV Count: 3 - UV - UV - UV -Face 271 -UV Count: 3 - UV - UV - UV -Face 272 -UV Count: 3 - UV - UV - UV -Face 273 -UV Count: 3 - UV - UV - UV -Face 274 -UV Count: 3 - UV - UV - UV -Face 275 -UV Count: 3 - UV - UV - UV -Face 276 -UV Count: 3 - UV - UV - UV -Face 277 -UV Count: 3 - UV - UV - UV -Face 278 -UV Count: 3 - UV - UV - UV -Face 279 -UV Count: 3 - UV - UV - UV -Face 280 -UV Count: 3 - UV - UV - UV -Face 281 -UV Count: 3 - UV - UV - UV -Face 282 -UV Count: 3 - UV - UV - UV -Face 283 -UV Count: 3 - UV - UV - UV -Face 284 -UV Count: 3 - UV - UV - UV -Face 285 -UV Count: 3 - UV - UV - UV -Face 286 -UV Count: 3 - UV - UV - UV -Face 287 -UV Count: 3 - UV - UV - UV -Face 288 -UV Count: 3 - UV - UV - UV -Face 289 -UV Count: 3 - UV - UV - UV -Face 290 -UV Count: 3 - UV - UV - UV -Face 291 -UV Count: 3 - UV - UV - UV -Face 292 -UV Count: 3 - UV - UV - UV -Face 293 -UV Count: 3 - UV - UV - UV -Face 294 -UV Count: 3 - UV - UV - UV -Face 295 -UV Count: 3 - UV - UV - UV -Face 296 -UV Count: 3 - UV - UV - UV -Face 297 -UV Count: 3 - UV - UV - UV -Face 298 -UV Count: 3 - UV - UV - UV -Face 299 -UV Count: 3 - UV - UV - UV -Face 300 -UV Count: 3 - UV - UV - UV -Face 301 -UV Count: 3 - UV - UV - UV -Face 302 -UV Count: 3 - UV - UV - UV -Face 303 -UV Count: 3 - UV - UV - UV -Face 304 -UV Count: 3 - UV - UV - UV -Face 305 -UV Count: 3 - UV - UV - UV -Face 306 -UV Count: 3 - UV - UV - UV -Face 307 -UV Count: 3 - UV - UV - UV -Face 308 -UV Count: 3 - UV - UV - UV -Face 309 -UV Count: 3 - UV - UV - UV -Face 310 -UV Count: 3 - UV - UV - UV -Face 311 -UV Count: 3 - UV - UV - UV -Face 312 -UV Count: 3 - UV - UV - UV -Face 313 -UV Count: 3 - UV - UV - UV -Face 314 -UV Count: 3 - UV - UV - UV -Face 315 -UV Count: 3 - UV - UV - UV -Face 316 -UV Count: 3 - UV - UV - UV -Face 317 -UV Count: 3 - UV - UV - UV -Face 318 -UV Count: 3 - UV - UV - UV -Face 319 -UV Count: 3 - UV - UV - UV -Face 320 -UV Count: 3 - UV - UV - UV -Face 321 -UV Count: 3 - UV - UV - UV -Face 322 -UV Count: 3 - UV - UV - UV -Face 323 -UV Count: 3 - UV - UV - UV -Face 324 -UV Count: 3 - UV - UV - UV -Face 325 -UV Count: 3 - UV - UV - UV -Face 326 -UV Count: 3 - UV - UV - UV -Face 327 -UV Count: 3 - UV - UV - UV -Face 328 -UV Count: 3 - UV - UV - UV -Face 329 -UV Count: 3 - UV - UV - UV -Face 330 -UV Count: 3 - UV - UV - UV -Face 331 -UV Count: 3 - UV - UV - UV -Face 332 -UV Count: 3 - UV - UV - UV -Face 333 -UV Count: 3 - UV - UV - UV -Face 334 -UV Count: 3 - UV - UV - UV -Face 335 -UV Count: 3 - UV - UV - UV -Face 336 -UV Count: 3 - UV - UV - UV -Face 337 -UV Count: 3 - UV - UV - UV -Face 338 -UV Count: 3 - UV - UV - UV -Face 339 -UV Count: 3 - UV - UV - UV -Face 340 -UV Count: 3 - UV - UV - UV -Face 341 -UV Count: 3 - UV - UV - UV -Face 342 -UV Count: 3 - UV - UV - UV -Face 343 -UV Count: 3 - UV - UV - UV -Face 344 -UV Count: 3 - UV - UV - UV -Face 345 -UV Count: 3 - UV - UV - UV -Face 346 -UV Count: 3 - UV - UV - UV -Face 347 -UV Count: 3 - UV - UV - UV -Face 348 -UV Count: 3 - UV - UV - UV -Face 349 -UV Count: 3 - UV - UV - UV -Face 350 -UV Count: 3 - UV - UV - UV -Face 351 -UV Count: 3 - UV - UV - UV -Face 352 -UV Count: 3 - UV - UV - UV -Face 353 -UV Count: 3 - UV - UV - UV -Face 354 -UV Count: 3 - UV - UV - UV -Face 355 -UV Count: 3 - UV - UV - UV -Face 356 -UV Count: 3 - UV - UV - UV -Face 357 -UV Count: 3 - UV - UV - UV -Face 358 -UV Count: 3 - UV - UV - UV -Face 359 -UV Count: 3 - UV - UV - UV -Face 360 -UV Count: 3 - UV - UV - UV -Face 361 -UV Count: 3 - UV - UV - UV -Face 362 -UV Count: 3 - UV - UV - UV -Face 363 -UV Count: 3 - UV - UV - UV -Face 364 -UV Count: 3 - UV - UV - UV -Face 365 -UV Count: 3 - UV - UV - UV -Face 366 -UV Count: 3 - UV - UV - UV -Face 367 -UV Count: 3 - UV - UV - UV -Face 368 -UV Count: 3 - UV - UV - UV -Face 369 -UV Count: 3 - UV - UV - UV -Face 370 -UV Count: 3 - UV - UV - UV -Face 371 -UV Count: 3 - UV - UV - UV -Face 372 -UV Count: 3 - UV - UV - UV -Face 373 -UV Count: 3 - UV - UV - UV -Face 374 -UV Count: 3 - UV - UV - UV -Face 375 -UV Count: 3 - UV - UV - UV -Face 376 -UV Count: 3 - UV - UV - UV -Face 377 -UV Count: 3 - UV - UV - UV -Face 378 -UV Count: 3 - UV - UV - UV -Face 379 -UV Count: 3 - UV - UV - UV -Face 380 -UV Count: 3 - UV - UV - UV -Face 381 -UV Count: 3 - UV - UV - UV -Face 382 -UV Count: 3 - UV - UV - UV -Face 383 -UV Count: 3 - UV - UV - UV -Face 384 -UV Count: 3 - UV - UV - UV -Face 385 -UV Count: 3 - UV - UV - UV -Face 386 -UV Count: 3 - UV - UV - UV -Face 387 -UV Count: 3 - UV - UV - UV -Face 388 -UV Count: 3 - UV - UV - UV -Face 389 -UV Count: 3 - UV - UV - UV -Face 390 -UV Count: 3 - UV - UV - UV -Face 391 -UV Count: 3 - UV - UV - UV -Face 392 -UV Count: 3 - UV - UV - UV -Face 393 -UV Count: 3 - UV - UV - UV -Face 394 -UV Count: 3 - UV - UV - UV -Face 395 -UV Count: 3 - UV - UV - UV -Face 396 -UV Count: 3 - UV - UV - UV -Face 397 -UV Count: 3 - UV - UV - UV -Face 398 -UV Count: 3 - UV - UV - UV -Face 399 -UV Count: 3 - UV - UV - UV -Face 400 -UV Count: 3 - UV - UV - UV -Face 401 -UV Count: 3 - UV - UV - UV -Face 402 -UV Count: 3 - UV - UV - UV -Face 403 -UV Count: 3 - UV - UV - UV -Face 404 -UV Count: 3 - UV - UV - UV -Face 405 -UV Count: 3 - UV - UV - UV -Face 406 -UV Count: 3 - UV - UV - UV -Face 407 -UV Count: 3 - UV - UV - UV -Face 408 -UV Count: 3 - UV - UV - UV -Face 409 -UV Count: 3 - UV - UV - UV -Face 410 -UV Count: 3 - UV - UV - UV -Face 411 -UV Count: 3 - UV - UV - UV -Face 412 -UV Count: 3 - UV - UV - UV -Face 413 -UV Count: 3 - UV - UV - UV -Face 414 -UV Count: 3 - UV - UV - UV -Face 415 -UV Count: 3 - UV - UV - UV -Face 416 -UV Count: 3 - UV - UV - UV -Face 417 -UV Count: 3 - UV - UV - UV -Face 418 -UV Count: 3 - UV - UV - UV -Face 419 -UV Count: 3 - UV - UV - UV -Face 420 -UV Count: 3 - UV - UV - UV -Face 421 -UV Count: 3 - UV - UV - UV -Face 422 -UV Count: 3 - UV - UV - UV -Face 423 -UV Count: 3 - UV - UV - UV -Face 424 -UV Count: 3 - UV - UV - UV -Face 425 -UV Count: 3 - UV - UV - UV -Face 426 -UV Count: 3 - UV - UV - UV -Face 427 -UV Count: 3 - UV - UV - UV -Face 428 -UV Count: 3 - UV - UV - UV -Face 429 -UV Count: 3 - UV - UV - UV -Face 430 -UV Count: 3 - UV - UV - UV -Face 431 -UV Count: 3 - UV - UV - UV -Face 432 -UV Count: 3 - UV - UV - UV -Face 433 -UV Count: 3 - UV - UV - UV -Face 434 -UV Count: 3 - UV - UV - UV -Face 435 -UV Count: 3 - UV - UV - UV -Face 436 -UV Count: 3 - UV - UV - UV -Face 437 -UV Count: 3 - UV - UV - UV -Face 438 -UV Count: 3 - UV - UV - UV -Face 439 -UV Count: 3 - UV - UV - UV -Face 440 -UV Count: 3 - UV - UV - UV -Face 441 -UV Count: 3 - UV - UV - UV -Face 442 -UV Count: 3 - UV - UV - UV -Face 443 -UV Count: 3 - UV - UV - UV -Face 444 -UV Count: 3 - UV - UV - UV -Face 445 -UV Count: 3 - UV - UV - UV -Face 446 -UV Count: 3 - UV - UV - UV -Face 447 -UV Count: 3 - UV - UV - UV -Face 448 -UV Count: 3 - UV - UV - UV -Face 449 -UV Count: 3 - UV - UV - UV -Face 450 -UV Count: 3 - UV - UV - UV -Face 451 -UV Count: 3 - UV - UV - UV -Face 452 -UV Count: 3 - UV - UV - UV -Face 453 -UV Count: 3 - UV - UV - UV -Face 454 -UV Count: 3 - UV - UV - UV -Face 455 -UV Count: 3 - UV - UV - UV -Face 456 -UV Count: 3 - UV - UV - UV -Face 457 -UV Count: 3 - UV - UV - UV -Face 458 -UV Count: 3 - UV - UV - UV -Face 459 -UV Count: 3 - UV - UV - UV -Face 460 -UV Count: 3 - UV - UV - UV -Face 461 -UV Count: 3 - UV - UV - UV -Face 462 -UV Count: 3 - UV - UV - UV -Face 463 -UV Count: 3 - UV - UV - UV -Face 464 -UV Count: 3 - UV - UV - UV -Face 465 -UV Count: 3 - UV - UV - UV -Face 466 -UV Count: 3 - UV - UV - UV -Face 467 -UV Count: 3 - UV - UV - UV -Face 468 -UV Count: 3 - UV - UV - UV -Face 469 -UV Count: 3 - UV - UV - UV -Face 470 -UV Count: 3 - UV - UV - UV -Face 471 -UV Count: 3 - UV - UV - UV -Face 472 -UV Count: 3 - UV - UV - UV -Face 473 -UV Count: 3 - UV - UV - UV -Face 474 -UV Count: 3 - UV - UV - UV -Face 475 -UV Count: 3 - UV - UV - UV -Face 476 -UV Count: 3 - UV - UV - UV -Face 477 -UV Count: 3 - UV - UV - UV -Face 478 -UV Count: 3 - UV - UV - UV -Face 479 -UV Count: 3 - UV - UV - UV -Face 480 -UV Count: 3 - UV - UV - UV -Face 481 -UV Count: 3 - UV - UV - UV -Face 482 -UV Count: 3 - UV - UV - UV -Face 483 -UV Count: 3 - UV - UV - UV -Face 484 -UV Count: 3 - UV - UV - UV -Face 485 -UV Count: 3 - UV - UV - UV -Face 486 -UV Count: 3 - UV - UV - UV -Face 487 -UV Count: 3 - UV - UV - UV -Face 488 -UV Count: 3 - UV - UV - UV -Face 489 -UV Count: 3 - UV - UV - UV -Face 490 -UV Count: 3 - UV - UV - UV -Face 491 -UV Count: 3 - UV - UV - UV -Face 492 -UV Count: 3 - UV - UV - UV -Face 493 -UV Count: 3 - UV - UV - UV -Face 494 -UV Count: 3 - UV - UV - UV -Face 495 -UV Count: 3 - UV - UV - UV -Face 496 -UV Count: 3 - UV - UV - UV -Face 497 -UV Count: 3 - UV - UV - UV -Face 498 -UV Count: 3 - UV - UV - UV -Face 499 -UV Count: 3 - UV - UV - UV -Face 500 -UV Count: 3 - UV - UV - UV -Face 501 -UV Count: 3 - UV - UV - UV -Face 502 -UV Count: 3 - UV - UV - UV -Face 503 -UV Count: 3 - UV - UV - UV -Face 504 -UV Count: 3 - UV - UV - UV -Face 505 -UV Count: 3 - UV - UV - UV -Face 506 -UV Count: 3 - UV - UV - UV -Face 507 -UV Count: 3 - UV - UV - UV -Face 508 -UV Count: 3 - UV - UV - UV -Face 509 -UV Count: 3 - UV - UV - UV -Face 510 -UV Count: 3 - UV - UV - UV -Face 511 -UV Count: 3 - UV - UV - UV -Face 512 -UV Count: 3 - UV - UV - UV -Face 513 -UV Count: 3 - UV - UV - UV -Face 514 -UV Count: 3 - UV - UV - UV -Face 515 -UV Count: 3 - UV - UV - UV -Face 516 -UV Count: 3 - UV - UV - UV -Face 517 -UV Count: 3 - UV - UV - UV -Face 518 -UV Count: 3 - UV - UV - UV -Face 519 -UV Count: 3 - UV - UV - UV -Face 520 -UV Count: 3 - UV - UV - UV -Face 521 -UV Count: 3 - UV - UV - UV -Face 522 -UV Count: 3 - UV - UV - UV -Face 523 -UV Count: 3 - UV - UV - UV -Face 524 -UV Count: 3 - UV - UV - UV -Face 525 -UV Count: 3 - UV - UV - UV -Face 526 -UV Count: 3 - UV - UV - UV -Face 527 -UV Count: 3 - UV - UV - UV -Face 528 -UV Count: 3 - UV - UV - UV -Face 529 -UV Count: 3 - UV - UV - UV -Face 530 -UV Count: 3 - UV - UV - UV -Face 531 -UV Count: 3 - UV - UV - UV -Face 532 -UV Count: 3 - UV - UV - UV -Face 533 -UV Count: 3 - UV - UV - UV -Face 534 -UV Count: 3 - UV - UV - UV -Face 535 -UV Count: 3 - UV - UV - UV -Face 536 -UV Count: 3 - UV - UV - UV -Face 537 -UV Count: 3 - UV - UV - UV -Face 538 -UV Count: 3 - UV - UV - UV -Face 539 -UV Count: 3 - UV - UV - UV -Face 540 -UV Count: 3 - UV - UV - UV -Face 541 -UV Count: 3 - UV - UV - UV -Face 542 -UV Count: 3 - UV - UV - UV -Face 543 -UV Count: 3 - UV - UV - UV -Face 544 -UV Count: 3 - UV - UV - UV -Face 545 -UV Count: 3 - UV - UV - UV -Face 546 -UV Count: 3 - UV - UV - UV -Face 547 -UV Count: 3 - UV - UV - UV -Face 548 -UV Count: 3 - UV - UV - UV -Face 549 -UV Count: 3 - UV - UV - UV -Face 550 -UV Count: 3 - UV - UV - UV -Face 551 -UV Count: 3 - UV - UV - UV -Face 552 -UV Count: 3 - UV - UV - UV -Face 553 -UV Count: 3 - UV - UV - UV -Face 554 -UV Count: 3 - UV - UV - UV -Face 555 -UV Count: 3 - UV - UV - UV -Face 556 -UV Count: 3 - UV - UV - UV -Face 557 -UV Count: 3 - UV - UV - UV -Face 558 -UV Count: 3 - UV - UV - UV -Face 559 -UV Count: 3 - UV - UV - UV -Face 560 -UV Count: 3 - UV - UV - UV -Face 561 -UV Count: 3 - UV - UV - UV -Face 562 -UV Count: 3 - UV - UV - UV -Face 563 -UV Count: 3 - UV - UV - UV -Face 564 -UV Count: 3 - UV - UV - UV -Face 565 -UV Count: 3 - UV - UV - UV -Face 566 -UV Count: 3 - UV - UV - UV -Face 567 -UV Count: 3 - UV - UV - UV -Face 568 -UV Count: 3 - UV - UV - UV -Face 569 -UV Count: 3 - UV - UV - UV -Face 570 -UV Count: 3 - UV - UV - UV -Face 571 -UV Count: 3 - UV - UV - UV -Face 572 -UV Count: 3 - UV - UV - UV -Face 573 -UV Count: 3 - UV - UV - UV -Face 574 -UV Count: 3 - UV - UV - UV -Face 575 -UV Count: 3 - UV - UV - UV -Face 576 -UV Count: 3 - UV - UV - UV -Face 577 -UV Count: 3 - UV - UV - UV -Face 578 -UV Count: 3 - UV - UV - UV -Face 579 -UV Count: 3 - UV - UV - UV -Face 580 -UV Count: 3 - UV - UV - UV -Face 581 -UV Count: 3 - UV - UV - UV -Face 582 -UV Count: 3 - UV - UV - UV -Face 583 -UV Count: 3 - UV - UV - UV -Face 584 -UV Count: 3 - UV - UV - UV -Face 585 -UV Count: 3 - UV - UV - UV -Face 586 -UV Count: 3 - UV - UV - UV -Face 587 -UV Count: 3 - UV - UV - UV -Face 588 -UV Count: 3 - UV - UV - UV -Face 589 -UV Count: 3 - UV - UV - UV -Face 590 -UV Count: 3 - UV - UV - UV -Face 591 -UV Count: 3 - UV - UV - UV -Face 592 -UV Count: 3 - UV - UV - UV -Face 593 -UV Count: 3 - UV - UV - UV -Face 594 -UV Count: 3 - UV - UV - UV -Face 595 -UV Count: 3 - UV - UV - UV -Face 596 -UV Count: 3 - UV - UV - UV -Face 597 -UV Count: 3 - UV - UV - UV -Face 598 -UV Count: 3 - UV - UV - UV -Face 599 -UV Count: 3 - UV - UV - UV -Face 600 -UV Count: 3 - UV - UV - UV -Face 601 -UV Count: 3 - UV - UV - UV -Face 602 -UV Count: 3 - UV - UV - UV -Face 603 -UV Count: 3 - UV - UV - UV -Face 604 -UV Count: 3 - UV - UV - UV -Face 605 -UV Count: 3 - UV - UV - UV -Face 606 -UV Count: 3 - UV - UV - UV -Face 607 -UV Count: 3 - UV - UV - UV -Face 608 -UV Count: 3 - UV - UV - UV -Face 609 -UV Count: 3 - UV - UV - UV -Face 610 -UV Count: 3 - UV - UV - UV -Face 611 -UV Count: 3 - UV - UV - UV -Face 612 -UV Count: 3 - UV - UV - UV -Face 613 -UV Count: 3 - UV - UV - UV -Face 614 -UV Count: 3 - UV - UV - UV -Face 615 -UV Count: 3 - UV - UV - UV -Face 616 -UV Count: 3 - UV - UV - UV -Face 617 -UV Count: 3 - UV - UV - UV -Face 618 -UV Count: 3 - UV - UV - UV -Face 619 -UV Count: 3 - UV - UV - UV -Face 620 -UV Count: 3 - UV - UV - UV -Face 621 -UV Count: 3 - UV - UV - UV -Face 622 -UV Count: 3 - UV - UV - UV -Face 623 -UV Count: 3 - UV - UV - UV -Face 624 -UV Count: 3 - UV - UV - UV -Face 625 -UV Count: 3 - UV - UV - UV -Face 626 -UV Count: 3 - UV - UV - UV -Face 627 -UV Count: 3 - UV - UV - UV -Face 628 -UV Count: 3 - UV - UV - UV -Face 629 -UV Count: 3 - UV - UV - UV -Face 630 -UV Count: 3 - UV - UV - UV -Face 631 -UV Count: 3 - UV - UV - UV -Face 632 -UV Count: 3 - UV - UV - UV -Face 633 -UV Count: 3 - UV - UV - UV -Face 634 -UV Count: 3 - UV - UV - UV -Face 635 -UV Count: 3 - UV - UV - UV -Face 636 -UV Count: 3 - UV - UV - UV -Face 637 -UV Count: 3 - UV - UV - UV -Face 638 -UV Count: 3 - UV - UV - UV -Face 639 -UV Count: 3 - UV - UV - UV -Face 640 -UV Count: 3 - UV - UV - UV -Face 641 -UV Count: 3 - UV - UV - UV -Face 642 -UV Count: 3 - UV - UV - UV -Face 643 -UV Count: 3 - UV - UV - UV -Face 644 -UV Count: 3 - UV - UV - UV -Face 645 -UV Count: 3 - UV - UV - UV -Face 646 -UV Count: 3 - UV - UV - UV -Face 647 -UV Count: 3 - UV - UV - UV -Face 648 -UV Count: 3 - UV - UV - UV -Face 649 -UV Count: 3 - UV - UV - UV -Face 650 -UV Count: 3 - UV - UV - UV -Face 651 -UV Count: 3 - UV - UV - UV -Face 652 -UV Count: 3 - UV - UV - UV -Face 653 -UV Count: 3 - UV - UV - UV -Face 654 -UV Count: 3 - UV - UV - UV -Face 655 -UV Count: 3 - UV - UV - UV -Face 656 -UV Count: 3 - UV - UV - UV -Face 657 -UV Count: 3 - UV - UV - UV -Face 658 -UV Count: 3 - UV - UV - UV -Face 659 -UV Count: 3 - UV - UV - UV -Face 660 -UV Count: 3 - UV - UV - UV -Face 661 -UV Count: 3 - UV - UV - UV -Face 662 -UV Count: 3 - UV - UV - UV -Face 663 -UV Count: 3 - UV - UV - UV -Face 664 -UV Count: 3 - UV - UV - UV -Face 665 -UV Count: 3 - UV - UV - UV -Face 666 -UV Count: 3 - UV - UV - UV -Face 667 -UV Count: 3 - UV - UV - UV -Face 668 -UV Count: 3 - UV - UV - UV -Face 669 -UV Count: 3 - UV - UV - UV -Face 670 -UV Count: 3 - UV - UV - UV -Face 671 -UV Count: 3 - UV - UV - UV -Face 672 -UV Count: 3 - UV - UV - UV -Face 673 -UV Count: 3 - UV - UV - UV -Face 674 -UV Count: 3 - UV - UV - UV -Face 675 -UV Count: 3 - UV - UV - UV -Face 676 -UV Count: 3 - UV - UV - UV -Face 677 -UV Count: 3 - UV - UV - UV -Face 678 -UV Count: 3 - UV - UV - UV -Face 679 -UV Count: 3 - UV - UV - UV -Face 680 -UV Count: 3 - UV - UV - UV -Face 681 -UV Count: 3 - UV - UV - UV -Face 682 -UV Count: 3 - UV - UV - UV -Face 683 -UV Count: 3 - UV - UV - UV -Face 684 -UV Count: 3 - UV - UV - UV -Face 685 -UV Count: 3 - UV - UV - UV -Face 686 -UV Count: 3 - UV - UV - UV -Face 687 -UV Count: 3 - UV - UV - UV -Face 688 -UV Count: 3 - UV - UV - UV -Face 689 -UV Count: 3 - UV - UV - UV -Face 690 -UV Count: 3 - UV - UV - UV -Face 691 -UV Count: 3 - UV - UV - UV -Face 692 -UV Count: 3 - UV - UV - UV -Face 693 -UV Count: 3 - UV - UV - UV -Face 694 -UV Count: 3 - UV - UV - UV -Face 695 -UV Count: 3 - UV - UV - UV -Face 696 -UV Count: 3 - UV - UV - UV -Face 697 -UV Count: 3 - UV - UV - UV -Face 698 -UV Count: 3 - UV - UV - UV -Face 699 -UV Count: 3 - UV - UV - UV -Face 700 -UV Count: 3 - UV - UV - UV -Face 701 -UV Count: 3 - UV - UV - UV -Face 702 -UV Count: 3 - UV - UV - UV -Face 703 -UV Count: 3 - UV - UV - UV -Face 704 -UV Count: 3 - UV - UV - UV -Face 705 -UV Count: 3 - UV - UV - UV -Face 706 -UV Count: 3 - UV - UV - UV -Face 707 -UV Count: 3 - UV - UV - UV -Face 708 -UV Count: 3 - UV - UV - UV -Face 709 -UV Count: 3 - UV - UV - UV -Face 710 -UV Count: 3 - UV - UV - UV -Face 711 -UV Count: 3 - UV - UV - UV -Face 712 -UV Count: 3 - UV - UV - UV -Face 713 -UV Count: 3 - UV - UV - UV -Face 714 -UV Count: 3 - UV - UV - UV -Face 715 -UV Count: 3 - UV - UV - UV -Face 716 -UV Count: 3 - UV - UV - UV -Face 717 -UV Count: 3 - UV - UV - UV -Face 718 -UV Count: 3 - UV - UV - UV -Face 719 -UV Count: 3 - UV - UV - UV -Face 720 -UV Count: 3 - UV - UV - UV -Face 721 -UV Count: 3 - UV - UV - UV -Face 722 -UV Count: 3 - UV - UV - UV -Face 723 -UV Count: 3 - UV - UV - UV -Face 724 -UV Count: 3 - UV - UV - UV -Face 725 -UV Count: 3 - UV - UV - UV -Face 726 -UV Count: 3 - UV - UV - UV -Face 727 -UV Count: 3 - UV - UV - UV -Face 728 -UV Count: 3 - UV - UV - UV -Face 729 -UV Count: 3 - UV - UV - UV -Face 730 -UV Count: 3 - UV - UV - UV -Face 731 -UV Count: 3 - UV - UV - UV -Face 732 -UV Count: 3 - UV - UV - UV -Face 733 -UV Count: 3 - UV - UV - UV -Face 734 -UV Count: 3 - UV - UV - UV -Face 735 -UV Count: 3 - UV - UV - UV -Face 736 -UV Count: 3 - UV - UV - UV -Face 737 -UV Count: 3 - UV - UV - UV -Face 738 -UV Count: 3 - UV - UV - UV -Face 739 -UV Count: 3 - UV - UV - UV -Face 740 -UV Count: 3 - UV - UV - UV -Face 741 -UV Count: 3 - UV - UV - UV -Face 742 -UV Count: 3 - UV - UV - UV -Face 743 -UV Count: 3 - UV - UV - UV -Face 744 -UV Count: 3 - UV - UV - UV -Face 745 -UV Count: 3 - UV - UV - UV -Face 746 -UV Count: 3 - UV - UV - UV -Face 747 -UV Count: 3 - UV - UV - UV -Face 748 -UV Count: 3 - UV - UV - UV -Face 749 -UV Count: 3 - UV - UV - UV -Face 750 -UV Count: 3 - UV - UV - UV -Face 751 -UV Count: 3 - UV - UV - UV -Face 752 -UV Count: 3 - UV - UV - UV -Face 753 -UV Count: 3 - UV - UV - UV -Face 754 -UV Count: 3 - UV - UV - UV -Face 755 -UV Count: 3 - UV - UV - UV -Face 756 -UV Count: 3 - UV - UV - UV -Face 757 -UV Count: 3 - UV - UV - UV -Face 758 -UV Count: 3 - UV - UV - UV -Face 759 -UV Count: 3 - UV - UV - UV -Face 760 -UV Count: 3 - UV - UV - UV -Face 761 -UV Count: 3 - UV - UV - UV -Face 762 -UV Count: 3 - UV - UV - UV -Face 763 -UV Count: 3 - UV - UV - UV -Face 764 -UV Count: 3 - UV - UV - UV -Face 765 -UV Count: 3 - UV - UV - UV -Face 766 -UV Count: 3 - UV - UV - UV -Face 767 -UV Count: 3 - UV - UV - UV -Face 768 -UV Count: 3 - UV - UV - UV -Face 769 -UV Count: 3 - UV - UV - UV -Face 770 -UV Count: 3 - UV - UV - UV -Face 771 -UV Count: 3 - UV - UV - UV -Face 772 -UV Count: 3 - UV - UV - UV -Face 773 -UV Count: 3 - UV - UV - UV -Face 774 -UV Count: 3 - UV - UV - UV -Face 775 -UV Count: 3 - UV - UV - UV -Face 776 -UV Count: 3 - UV - UV - UV -Face 777 -UV Count: 3 - UV - UV - UV -Face 778 -UV Count: 3 - UV - UV - UV -Face 779 -UV Count: 3 - UV - UV - UV -Face 780 -UV Count: 3 - UV - UV - UV -Face 781 -UV Count: 3 - UV - UV - UV -Face 782 -UV Count: 3 - UV - UV - UV -Face 783 -UV Count: 3 - UV - UV - UV -Face 784 -UV Count: 3 - UV - UV - UV -Face 785 -UV Count: 3 - UV - UV - UV -Face 786 -UV Count: 3 - UV - UV - UV -Face 787 -UV Count: 3 - UV - UV - UV -Face 788 -UV Count: 3 - UV - UV - UV -Face 789 -UV Count: 3 - UV - UV - UV -Face 790 -UV Count: 3 - UV - UV - UV -Face 791 -UV Count: 3 - UV - UV - UV -Face 792 -UV Count: 3 - UV - UV - UV -Face 793 -UV Count: 3 - UV - UV - UV -Face 794 -UV Count: 3 - UV - UV - UV -Face 795 -UV Count: 3 - UV - UV - UV -Face 796 -UV Count: 3 - UV - UV - UV -Face 797 -UV Count: 3 - UV - UV - UV -Face 798 -UV Count: 3 - UV - UV - UV -Face 799 -UV Count: 3 - UV - UV - UV -Face 800 -UV Count: 3 - UV - UV - UV -Face 801 -UV Count: 3 - UV - UV - UV -Face 802 -UV Count: 3 - UV - UV - UV -Face 803 -UV Count: 3 - UV - UV - UV -Face 804 -UV Count: 3 - UV - UV - UV -Face 805 -UV Count: 3 - UV - UV - UV -Face 806 -UV Count: 3 - UV - UV - UV -Face 807 -UV Count: 3 - UV - UV - UV -Face 808 -UV Count: 3 - UV - UV - UV -Face 809 -UV Count: 3 - UV - UV - UV -Face 810 -UV Count: 3 - UV - UV - UV -Face 811 -UV Count: 3 - UV - UV - UV -Face 812 -UV Count: 3 - UV - UV - UV -Face 813 -UV Count: 3 - UV - UV - UV -Face 814 -UV Count: 3 - UV - UV - UV -Face 815 -UV Count: 3 - UV - UV - UV -Face 816 -UV Count: 3 - UV - UV - UV -Face 817 -UV Count: 3 - UV - UV - UV -Face 818 -UV Count: 3 - UV - UV - UV -Face 819 -UV Count: 3 - UV - UV - UV -Face 820 -UV Count: 3 - UV - UV - UV -Face 821 -UV Count: 3 - UV - UV - UV -Face 822 -UV Count: 3 - UV - UV - UV -Face 823 -UV Count: 3 - UV - UV - UV -Face 824 -UV Count: 3 - UV - UV - UV -Face 825 -UV Count: 3 - UV - UV - UV -Face 826 -UV Count: 3 - UV - UV - UV -Face 827 -UV Count: 3 - UV - UV - UV -Face 828 -UV Count: 3 - UV - UV - UV -Face 829 -UV Count: 3 - UV - UV - UV -Face 830 -UV Count: 3 - UV - UV - UV -Face 831 -UV Count: 3 - UV - UV - UV -Face 832 -UV Count: 3 - UV - UV - UV -Face 833 -UV Count: 3 - UV - UV - UV -Face 834 -UV Count: 3 - UV - UV - UV -Face 835 -UV Count: 3 - UV - UV - UV -Face 836 -UV Count: 3 - UV - UV - UV -Face 837 -UV Count: 3 - UV - UV - UV -Face 838 -UV Count: 3 - UV - UV - UV -Face 839 -UV Count: 3 - UV - UV - UV -Face 840 -UV Count: 3 - UV - UV - UV -Face 841 -UV Count: 3 - UV - UV - UV -Face 842 -UV Count: 3 - UV - UV - UV -Face 843 -UV Count: 3 - UV - UV - UV -Face 844 -UV Count: 3 - UV - UV - UV -Face 845 -UV Count: 3 - UV - UV - UV -Face 846 -UV Count: 3 - UV - UV - UV -Face 847 -UV Count: 3 - UV - UV - UV -Face 848 -UV Count: 3 - UV - UV - UV -Face 849 -UV Count: 3 - UV - UV - UV -Face 850 -UV Count: 3 - UV - UV - UV -Face 851 -UV Count: 3 - UV - UV - UV -Face 852 -UV Count: 3 - UV - UV - UV -Face 853 -UV Count: 3 - UV - UV - UV -Face 854 -UV Count: 3 - UV - UV - UV -Face 855 -UV Count: 3 - UV - UV - UV -Face 856 -UV Count: 3 - UV - UV - UV -Face 857 -UV Count: 3 - UV - UV - UV -Face 858 -UV Count: 3 - UV - UV - UV -Face 859 -UV Count: 3 - UV - UV - UV -Face 860 -UV Count: 3 - UV - UV - UV -Face 861 -UV Count: 3 - UV - UV - UV -Face 862 -UV Count: 3 - UV - UV - UV -Face 863 -UV Count: 3 - UV - UV - UV -Face 864 -UV Count: 3 - UV - UV - UV -Face 865 -UV Count: 3 - UV - UV - UV -Face 866 -UV Count: 3 - UV - UV - UV -Face 867 -UV Count: 3 - UV - UV - UV -Face 868 -UV Count: 3 - UV - UV - UV -Face 869 -UV Count: 3 - UV - UV - UV -Face 870 -UV Count: 3 - UV - UV - UV -Face 871 -UV Count: 3 - UV - UV - UV -Face 872 -UV Count: 3 - UV - UV - UV -Face 873 -UV Count: 3 - UV - UV - UV -Face 874 -UV Count: 3 - UV - UV - UV -Face 875 -UV Count: 3 - UV - UV - UV -Face 876 -UV Count: 3 - UV - UV - UV -Face 877 -UV Count: 3 - UV - UV - UV -Face 878 -UV Count: 3 - UV - UV - UV -Face 879 -UV Count: 3 - UV - UV - UV -Face 880 -UV Count: 3 - UV - UV - UV -Face 881 -UV Count: 3 - UV - UV - UV -Face 882 -UV Count: 3 - UV - UV - UV -Face 883 -UV Count: 3 - UV - UV - UV -Face 884 -UV Count: 3 - UV - UV - UV -Face 885 -UV Count: 3 - UV - UV - UV -Face 886 -UV Count: 3 - UV - UV - UV -Face 887 -UV Count: 3 - UV - UV - UV -Face 888 -UV Count: 3 - UV - UV - UV -Face 889 -UV Count: 3 - UV - UV - UV -Face 890 -UV Count: 3 - UV - UV - UV -Face 891 -UV Count: 3 - UV - UV - UV -Face 892 -UV Count: 3 - UV - UV - UV -Face 893 -UV Count: 3 - UV - UV - UV -Face 894 -UV Count: 3 - UV - UV - UV -Face 895 -UV Count: 3 - UV - UV - UV -Face 896 -UV Count: 3 - UV - UV - UV -Face 897 -UV Count: 3 - UV - UV - UV -Face 898 -UV Count: 3 - UV - UV - UV -Face 899 -UV Count: 3 - UV - UV - UV -Face 900 -UV Count: 3 - UV - UV - UV -Face 901 -UV Count: 3 - UV - UV - UV -Face 902 -UV Count: 3 - UV - UV - UV -Face 903 -UV Count: 3 - UV - UV - UV -Face 904 -UV Count: 3 - UV - UV - UV -Face 905 -UV Count: 3 - UV - UV - UV -Face 906 -UV Count: 3 - UV - UV - UV -Face 907 -UV Count: 3 - UV - UV - UV -Face 908 -UV Count: 3 - UV - UV - UV -Face 909 -UV Count: 3 - UV - UV - UV -Face 910 -UV Count: 3 - UV - UV - UV -Face 911 -UV Count: 3 - UV - UV - UV -Face 912 -UV Count: 3 - UV - UV - UV -Face 913 -UV Count: 3 - UV - UV - UV -Face 914 -UV Count: 3 - UV - UV - UV -Face 915 -UV Count: 3 - UV - UV - UV -Face 916 -UV Count: 3 - UV - UV - UV -Face 917 -UV Count: 3 - UV - UV - UV -Face 918 -UV Count: 3 - UV - UV - UV -Face 919 -UV Count: 3 - UV - UV - UV -Face 920 -UV Count: 3 - UV - UV - UV -Face 921 -UV Count: 3 - UV - UV - UV -Face 922 -UV Count: 3 - UV - UV - UV -Face 923 -UV Count: 3 - UV - UV - UV -Face 924 -UV Count: 3 - UV - UV - UV -Face 925 -UV Count: 3 - UV - UV - UV -Face 926 -UV Count: 3 - UV - UV - UV -Face 927 -UV Count: 3 - UV - UV - UV -Face 928 -UV Count: 3 - UV - UV - UV -Face 929 -UV Count: 3 - UV - UV - UV -Face 930 -UV Count: 3 - UV - UV - UV -Face 931 -UV Count: 3 - UV - UV - UV -Face 932 -UV Count: 3 - UV - UV - UV -Face 933 -UV Count: 3 - UV - UV - UV -Face 934 -UV Count: 3 - UV - UV - UV -Face 935 -UV Count: 3 - UV - UV - UV -Face 936 -UV Count: 3 - UV - UV - UV -Face 937 -UV Count: 3 - UV - UV - UV -Face 938 -UV Count: 3 - UV - UV - UV -Face 939 -UV Count: 3 - UV - UV - UV -Face 940 -UV Count: 3 - UV - UV - UV -Face 941 -UV Count: 3 - UV - UV - UV -Face 942 -UV Count: 3 - UV - UV - UV -Face 943 -UV Count: 3 - UV - UV - UV -Face 944 -UV Count: 3 - UV - UV - UV -Face 945 -UV Count: 3 - UV - UV - UV -Face 946 -UV Count: 3 - UV - UV - UV -Face 947 -UV Count: 3 - UV - UV - UV -Face 948 -UV Count: 3 - UV - UV - UV -Face 949 -UV Count: 3 - UV - UV - UV -Face 950 -UV Count: 3 - UV - UV - UV -Face 951 -UV Count: 3 - UV - UV - UV -Face 952 -UV Count: 3 - UV - UV - UV -Face 953 -UV Count: 3 - UV - UV - UV -Face 954 -UV Count: 3 - UV - UV - UV -Face 955 -UV Count: 3 - UV - UV - UV -Face 956 -UV Count: 3 - UV - UV - UV -Face 957 -UV Count: 3 - UV - UV - UV -Face 958 -UV Count: 3 - UV - UV - UV -Face 959 -UV Count: 3 - UV - UV - UV -Face 960 -UV Count: 3 - UV - UV - UV -Face 961 -UV Count: 3 - UV - UV - UV -Face 962 -UV Count: 3 - UV - UV - UV -Face 963 -UV Count: 3 - UV - UV - UV -Face 964 -UV Count: 3 - UV - UV - UV -Face 965 -UV Count: 3 - UV - UV - UV -Face 966 -UV Count: 3 - UV - UV - UV -Face 967 -UV Count: 3 - UV - UV - UV -Face 968 -UV Count: 3 - UV - UV - UV -Face 969 -UV Count: 3 - UV - UV - UV -Face 970 -UV Count: 3 - UV - UV - UV -Face 971 -UV Count: 3 - UV - UV - UV -Face 972 -UV Count: 3 - UV - UV - UV -Face 973 -UV Count: 3 - UV - UV - UV -Face 974 -UV Count: 3 - UV - UV - UV -Face 975 -UV Count: 3 - UV - UV - UV -Face 976 -UV Count: 3 - UV - UV - UV -Face 977 -UV Count: 3 - UV - UV - UV -Face 978 -UV Count: 3 - UV - UV - UV -Face 979 -UV Count: 3 - UV - UV - UV -Face 980 -UV Count: 3 - UV - UV - UV -Face 981 -UV Count: 3 - UV - UV - UV -Face 982 -UV Count: 3 - UV - UV - UV -Face 983 -UV Count: 3 - UV - UV - UV -Face 984 -UV Count: 3 - UV - UV - UV -Face 985 -UV Count: 3 - UV - UV - UV -Face 986 -UV Count: 3 - UV - UV - UV -Face 987 -UV Count: 3 - UV - UV - UV -Face 988 -UV Count: 3 - UV - UV - UV -Face 989 -UV Count: 3 - UV - UV - UV -Face 990 -UV Count: 3 - UV - UV - UV -Face 991 -UV Count: 3 - UV - UV - UV -Face 992 -UV Count: 3 - UV - UV - UV -Face 993 -UV Count: 3 - UV - UV - UV -Face 994 -UV Count: 3 - UV - UV - UV -Face 995 -UV Count: 3 - UV - UV - UV -Face 996 -UV Count: 3 - UV - UV - UV -Face 997 -UV Count: 3 - UV - UV - UV -Face 998 -UV Count: 3 - UV - UV - UV -Face 999 -UV Count: 3 - UV - UV - UV -Face 1000 -UV Count: 3 - UV - UV - UV -Face 1001 -UV Count: 3 - UV - UV - UV -Face 1002 -UV Count: 3 - UV - UV - UV -Face 1003 -UV Count: 3 - UV - UV - UV -Face 1004 -UV Count: 3 - UV - UV - UV -Face 1005 -UV Count: 3 - UV - UV - UV -Face 1006 -UV Count: 3 - UV - UV - UV -Face 1007 -UV Count: 3 - UV - UV - UV -Face 1008 -UV Count: 3 - UV - UV - UV -Face 1009 -UV Count: 3 - UV - UV - UV -Face 1010 -UV Count: 3 - UV - UV - UV -Face 1011 -UV Count: 3 - UV - UV - UV -Face 1012 -UV Count: 3 - UV - UV - UV -Face 1013 -UV Count: 3 - UV - UV - UV -Face 1014 -UV Count: 3 - UV - UV - UV -Face 1015 -UV Count: 3 - UV - UV - UV -Face 1016 -UV Count: 3 - UV - UV - UV -Face 1017 -UV Count: 3 - UV - UV - UV -Face 1018 -UV Count: 3 - UV - UV - UV -Face 1019 -UV Count: 3 - UV - UV - UV -Face 1020 -UV Count: 3 - UV - UV - UV -Face 1021 -UV Count: 3 - UV - UV - UV -Face 1022 -UV Count: 3 - UV - UV - UV -Face 1023 -UV Count: 3 - UV - UV - UV -Face 1024 -UV Count: 3 - UV - UV - UV -Face 1025 -UV Count: 3 - UV - UV - UV -Face 1026 -UV Count: 3 - UV - UV - UV -Face 1027 -UV Count: 3 - UV - UV - UV -Face 1028 -UV Count: 3 - UV - UV - UV -Face 1029 -UV Count: 3 - UV - UV - UV -Face 1030 -UV Count: 3 - UV - UV - UV -Face 1031 -UV Count: 3 - UV - UV - UV -Face 1032 -UV Count: 3 - UV - UV - UV -Face 1033 -UV Count: 3 - UV - UV - UV -Face 1034 -UV Count: 3 - UV - UV - UV -Face 1035 -UV Count: 3 - UV - UV - UV -Face 1036 -UV Count: 3 - UV - UV - UV -Face 1037 -UV Count: 3 - UV - UV - UV -Face 1038 -UV Count: 3 - UV - UV - UV -Face 1039 -UV Count: 3 - UV - UV - UV -Face 1040 -UV Count: 3 - UV - UV - UV -Face 1041 -UV Count: 3 - UV - UV - UV -Face 1042 -UV Count: 3 - UV - UV - UV -Face 1043 -UV Count: 3 - UV - UV - UV -Face 1044 -UV Count: 3 - UV - UV - UV -Face 1045 -UV Count: 3 - UV - UV - UV -Face 1046 -UV Count: 3 - UV - UV - UV -Face 1047 -UV Count: 3 - UV - UV - UV -Face 1048 -UV Count: 3 - UV - UV - UV -Face 1049 -UV Count: 3 - UV - UV - UV -Face 1050 -UV Count: 3 - UV - UV - UV -Face 1051 -UV Count: 3 - UV - UV - UV -Face 1052 -UV Count: 3 - UV - UV - UV -Face 1053 -UV Count: 3 - UV - UV - UV -Face 1054 -UV Count: 3 - UV - UV - UV -Face 1055 -UV Count: 3 - UV - UV - UV -Face 1056 -UV Count: 3 - UV - UV - UV -Face 1057 -UV Count: 3 - UV - UV - UV -Face 1058 -UV Count: 3 - UV - UV - UV -Face 1059 -UV Count: 3 - UV - UV - UV -Face 1060 -UV Count: 3 - UV - UV - UV -Face 1061 -UV Count: 3 - UV - UV - UV -Face 1062 -UV Count: 3 - UV - UV - UV -Face 1063 -UV Count: 3 - UV - UV - UV -Face 1064 -UV Count: 3 - UV - UV - UV -Face 1065 -UV Count: 3 - UV - UV - UV -Face 1066 -UV Count: 3 - UV - UV - UV -Face 1067 -UV Count: 3 - UV - UV - UV -Face 1068 -UV Count: 3 - UV - UV - UV -Face 1069 -UV Count: 3 - UV - UV - UV -Face 1070 -UV Count: 3 - UV - UV - UV -Face 1071 -UV Count: 3 - UV - UV - UV -Face 1072 -UV Count: 3 - UV - UV - UV -Face 1073 -UV Count: 3 - UV - UV - UV -Face 1074 -UV Count: 3 - UV - UV - UV -Face 1075 -UV Count: 3 - UV - UV - UV -Face 1076 -UV Count: 3 - UV - UV - UV -Face 1077 -UV Count: 3 - UV - UV - UV -Face 1078 -UV Count: 3 - UV - UV - UV -Face 1079 -UV Count: 3 - UV - UV - UV -Face 1080 -UV Count: 3 - UV - UV - UV -Face 1081 -UV Count: 3 - UV - UV - UV -Face 1082 -UV Count: 3 - UV - UV - UV -Face 1083 -UV Count: 3 - UV - UV - UV -Face 1084 -UV Count: 3 - UV - UV - UV -Face 1085 -UV Count: 3 - UV - UV - UV -Face 1086 -UV Count: 3 - UV - UV - UV -Face 1087 -UV Count: 3 - UV - UV - UV -Face 1088 -UV Count: 3 - UV - UV - UV -Face 1089 -UV Count: 3 - UV - UV - UV -Face 1090 -UV Count: 3 - UV - UV - UV -Face 1091 -UV Count: 3 - UV - UV - UV -Face 1092 -UV Count: 3 - UV - UV - UV -Face 1093 -UV Count: 3 - UV - UV - UV -Face 1094 -UV Count: 3 - UV - UV - UV -Face 1095 -UV Count: 3 - UV - UV - UV -Face 1096 -UV Count: 3 - UV - UV - UV -Face 1097 -UV Count: 3 - UV - UV - UV -Face 1098 -UV Count: 3 - UV - UV - UV -Face 1099 -UV Count: 3 - UV - UV - UV -Face 1100 -UV Count: 3 - UV - UV - UV -Face 1101 -UV Count: 3 - UV - UV - UV -Face 1102 -UV Count: 3 - UV - UV - UV -Face 1103 -UV Count: 3 - UV - UV - UV -Face 1104 -UV Count: 3 - UV - UV - UV -Face 1105 -UV Count: 3 - UV - UV - UV -Face 1106 -UV Count: 3 - UV - UV - UV -Face 1107 -UV Count: 3 - UV - UV - UV -Face 1108 -UV Count: 3 - UV - UV - UV -Face 1109 -UV Count: 3 - UV - UV - UV -Face 1110 -UV Count: 3 - UV - UV - UV -Face 1111 -UV Count: 3 - UV - UV - UV -Face 1112 -UV Count: 3 - UV - UV - UV -Face 1113 -UV Count: 3 - UV - UV - UV -Face 1114 -UV Count: 3 - UV - UV - UV -Face 1115 -UV Count: 3 - UV - UV - UV -Face 1116 -UV Count: 3 - UV - UV - UV -Face 1117 -UV Count: 3 - UV - UV - UV -Face 1118 -UV Count: 3 - UV - UV - UV -Face 1119 -UV Count: 3 - UV - UV - UV -Face 1120 -UV Count: 3 - UV - UV - UV -Face 1121 -UV Count: 3 - UV - UV - UV -Face 1122 -UV Count: 3 - UV - UV - UV -Face 1123 -UV Count: 3 - UV - UV - UV -Face 1124 -UV Count: 3 - UV - UV - UV -Face 1125 -UV Count: 3 - UV - UV - UV -Face 1126 -UV Count: 3 - UV - UV - UV -Face 1127 -UV Count: 3 - UV - UV - UV -Face 1128 -UV Count: 3 - UV - UV - UV -Face 1129 -UV Count: 3 - UV - UV - UV -Face 1130 -UV Count: 3 - UV - UV - UV -Face 1131 -UV Count: 3 - UV - UV - UV -Face 1132 -UV Count: 3 - UV - UV - UV -Face 1133 -UV Count: 3 - UV - UV - UV -Face 1134 -UV Count: 3 - UV - UV - UV -Face 1135 -UV Count: 3 - UV - UV - UV -Face 1136 -UV Count: 3 - UV - UV - UV -Face 1137 -UV Count: 3 - UV - UV - UV -Face 1138 -UV Count: 3 - UV - UV - UV -Face 1139 -UV Count: 3 - UV - UV - UV -Face 1140 -UV Count: 3 - UV - UV - UV -Face 1141 -UV Count: 3 - UV - UV - UV -Face 1142 -UV Count: 3 - UV - UV - UV -Face 1143 -UV Count: 3 - UV - UV - UV -Face 1144 -UV Count: 3 - UV - UV - UV -Face 1145 -UV Count: 3 - UV - UV - UV -Face 1146 -UV Count: 3 - UV - UV - UV -Face 1147 -UV Count: 3 - UV - UV - UV -Face 1148 -UV Count: 3 - UV - UV - UV -Face 1149 -UV Count: 3 - UV - UV - UV -Face 1150 -UV Count: 3 - UV - UV - UV -Face 1151 -UV Count: 3 - UV - UV - UV -Face 1152 -UV Count: 3 - UV - UV - UV -Face 1153 -UV Count: 3 - UV - UV - UV -Face 1154 -UV Count: 3 - UV - UV - UV -Face 1155 -UV Count: 3 - UV - UV - UV -Face 1156 -UV Count: 3 - UV - UV - UV -Face 1157 -UV Count: 3 - UV - UV - UV -Face 1158 -UV Count: 3 - UV - UV - UV -Face 1159 -UV Count: 3 - UV - UV - UV -Face 1160 -UV Count: 3 - UV - UV - UV -Face 1161 -UV Count: 3 - UV - UV - UV -Face 1162 -UV Count: 3 - UV - UV - UV -Face 1163 -UV Count: 3 - UV - UV - UV -Face 1164 -UV Count: 3 - UV - UV - UV -Face 1165 -UV Count: 3 - UV - UV - UV -Face 1166 -UV Count: 3 - UV - UV - UV -Face 1167 -UV Count: 3 - UV - UV - UV -Face 1168 -UV Count: 3 - UV - UV - UV -Face 1169 -UV Count: 3 - UV - UV - UV -Face 1170 -UV Count: 3 - UV - UV - UV -Face 1171 -UV Count: 3 - UV - UV - UV -Face 1172 -UV Count: 3 - UV - UV - UV -Face 1173 -UV Count: 3 - UV - UV - UV -Face 1174 -UV Count: 3 - UV - UV - UV -Face 1175 -UV Count: 3 - UV - UV - UV -Face 1176 -UV Count: 3 - UV - UV - UV -Face 1177 -UV Count: 3 - UV - UV - UV -Face 1178 -UV Count: 3 - UV - UV - UV -Face 1179 -UV Count: 3 - UV - UV - UV -Face 1180 -UV Count: 3 - UV - UV - UV -Face 1181 -UV Count: 3 - UV - UV - UV -Face 1182 -UV Count: 3 - UV - UV - UV -Face 1183 -UV Count: 3 - UV - UV - UV -Face 1184 -UV Count: 3 - UV - UV - UV -Face 1185 -UV Count: 3 - UV - UV - UV -Face 1186 -UV Count: 3 - UV - UV - UV -Face 1187 -UV Count: 3 - UV - UV - UV -Face 1188 -UV Count: 3 - UV - UV - UV -Face 1189 -UV Count: 3 - UV - UV - UV -Face 1190 -UV Count: 3 - UV - UV - UV -Face 1191 -UV Count: 3 - UV - UV - UV -Face 1192 -UV Count: 3 - UV - UV - UV -Face 1193 -UV Count: 3 - UV - UV - UV -Face 1194 -UV Count: 3 - UV - UV - UV -Face 1195 -UV Count: 3 - UV - UV - UV -Face 1196 -UV Count: 3 - UV - UV - UV -Face 1197 -UV Count: 3 - UV - UV - UV -Face 1198 -UV Count: 3 - UV - UV - UV -Face 1199 -UV Count: 3 - UV - UV - UV -Face 1200 -UV Count: 3 - UV - UV - UV -Face 1201 -UV Count: 3 - UV - UV - UV -Face 1202 -UV Count: 3 - UV - UV - UV -Face 1203 -UV Count: 3 - UV - UV - UV -Face 1204 -UV Count: 3 - UV - UV - UV -Face 1205 -UV Count: 3 - UV - UV - UV -Face 1206 -UV Count: 3 - UV - UV - UV -Face 1207 -UV Count: 3 - UV - UV - UV -Face 1208 -UV Count: 3 - UV - UV - UV -Face 1209 -UV Count: 3 - UV - UV - UV -Face 1210 -UV Count: 3 - UV - UV - UV -Face 1211 -UV Count: 3 - UV - UV - UV -Face 1212 -UV Count: 3 - UV - UV - UV -Face 1213 -UV Count: 3 - UV - UV - UV -Face 1214 -UV Count: 3 - UV - UV - UV -Face 1215 -UV Count: 3 - UV - UV - UV -Face 1216 -UV Count: 3 - UV - UV - UV -Face 1217 -UV Count: 3 - UV - UV - UV -Face 1218 -UV Count: 3 - UV - UV - UV -Face 1219 -UV Count: 3 - UV - UV - UV -Face 1220 -UV Count: 3 - UV - UV - UV -Face 1221 -UV Count: 3 - UV - UV - UV -Face 1222 -UV Count: 3 - UV - UV - UV -Face 1223 -UV Count: 3 - UV - UV - UV -Face 1224 -UV Count: 3 - UV - UV - UV -Face 1225 -UV Count: 3 - UV - UV - UV -Face 1226 -UV Count: 3 - UV - UV - UV -Face 1227 -UV Count: 3 - UV - UV - UV -Face 1228 -UV Count: 3 - UV - UV - UV -Face 1229 -UV Count: 3 - UV - UV - UV -Face 1230 -UV Count: 3 - UV - UV - UV -Face 1231 -UV Count: 3 - UV - UV - UV -Face 1232 -UV Count: 3 - UV - UV - UV -Face 1233 -UV Count: 3 - UV - UV - UV -Face 1234 -UV Count: 3 - UV - UV - UV -Face 1235 -UV Count: 3 - UV - UV - UV -Face 1236 -UV Count: 3 - UV - UV - UV -Face 1237 -UV Count: 3 - UV - UV - UV -Face 1238 -UV Count: 3 - UV - UV - UV -Face 1239 -UV Count: 3 - UV - UV - UV -Face 1240 -UV Count: 3 - UV - UV - UV -Face 1241 -UV Count: 3 - UV - UV - UV -Face 1242 -UV Count: 3 - UV - UV - UV -Face 1243 -UV Count: 3 - UV - UV - UV -Face 1244 -UV Count: 3 - UV - UV - UV -Face 1245 -UV Count: 3 - UV - UV - UV -Face 1246 -UV Count: 3 - UV - UV - UV -Face 1247 -UV Count: 3 - UV - UV - UV -Face 1248 -UV Count: 3 - UV - UV - UV -Face 1249 -UV Count: 3 - UV - UV - UV -Face 1250 -UV Count: 3 - UV - UV - UV -Face 1251 -UV Count: 3 - UV - UV - UV -Face 1252 -UV Count: 3 - UV - UV - UV -Face 1253 -UV Count: 3 - UV - UV - UV -Face 1254 -UV Count: 3 - UV - UV - UV -Face 1255 -UV Count: 3 - UV - UV - UV -Face 1256 -UV Count: 3 - UV - UV - UV -Face 1257 -UV Count: 3 - UV - UV - UV -Face 1258 -UV Count: 3 - UV - UV - UV -Face 1259 -UV Count: 3 - UV - UV - UV -Face 1260 -UV Count: 3 - UV - UV - UV -Face 1261 -UV Count: 3 - UV - UV - UV -Face 1262 -UV Count: 3 - UV - UV - UV -Face 1263 -UV Count: 3 - UV - UV - UV -Face 1264 -UV Count: 3 - UV - UV - UV -Face 1265 -UV Count: 3 - UV - UV - UV -Face 1266 -UV Count: 3 - UV - UV - UV -Face 1267 -UV Count: 3 - UV - UV - UV -Face 1268 -UV Count: 3 - UV - UV - UV -Face 1269 -UV Count: 3 - UV - UV - UV -Face 1270 -UV Count: 3 - UV - UV - UV -Face 1271 -UV Count: 3 - UV - UV - UV -Face 1272 -UV Count: 3 - UV - UV - UV -Face 1273 -UV Count: 3 - UV - UV - UV -Face 1274 -UV Count: 3 - UV - UV - UV -Face 1275 -UV Count: 3 - UV - UV - UV -Face 1276 -UV Count: 3 - UV - UV - UV -Face 1277 -UV Count: 3 - UV - UV - UV -Face 1278 -UV Count: 3 - UV - UV - UV -Face 1279 -UV Count: 3 - UV - UV - UV -Face 1280 -UV Count: 3 - UV - UV - UV -Face 1281 -UV Count: 3 - UV - UV - UV -Face 1282 -UV Count: 3 - UV - UV - UV -Face 1283 -UV Count: 3 - UV - UV - UV -Face 1284 -UV Count: 3 - UV - UV - UV -Face 1285 -UV Count: 3 - UV - UV - UV -Face 1286 -UV Count: 3 - UV - UV - UV -Face 1287 -UV Count: 3 - UV - UV - UV -Face 1288 -UV Count: 3 - UV - UV - UV -Face 1289 -UV Count: 3 - UV - UV - UV -Face 1290 -UV Count: 3 - UV - UV - UV -Face 1291 -UV Count: 3 - UV - UV - UV -Face 1292 -UV Count: 3 - UV - UV - UV -Face 1293 -UV Count: 3 - UV - UV - UV -Face 1294 -UV Count: 3 - UV - UV - UV -Face 1295 -UV Count: 3 - UV - UV - UV -Face 1296 -UV Count: 3 - UV - UV - UV -Face 1297 -UV Count: 3 - UV - UV - UV -Face 1298 -UV Count: 3 - UV - UV - UV -Face 1299 -UV Count: 3 - UV - UV - UV -Face 1300 -UV Count: 3 - UV - UV - UV -Face 1301 -UV Count: 3 - UV - UV - UV -Face 1302 -UV Count: 3 - UV - UV - UV -Face 1303 -UV Count: 3 - UV - UV - UV -Face 1304 -UV Count: 3 - UV - UV - UV -Face 1305 -UV Count: 3 - UV - UV - UV -Face 1306 -UV Count: 3 - UV - UV - UV -Face 1307 -UV Count: 3 - UV - UV - UV -Face 1308 -UV Count: 3 - UV - UV - UV -Face 1309 -UV Count: 3 - UV - UV - UV -Face 1310 -UV Count: 3 - UV - UV - UV -Face 1311 -UV Count: 3 - UV - UV - UV -Face 1312 -UV Count: 3 - UV - UV - UV -Face 1313 -UV Count: 3 - UV - UV - UV -Face 1314 -UV Count: 3 - UV - UV - UV -Face 1315 -UV Count: 3 - UV - UV - UV -Face 1316 -UV Count: 3 - UV - UV - UV -Face 1317 -UV Count: 3 - UV - UV - UV -Face 1318 -UV Count: 3 - UV - UV - UV -Face 1319 -UV Count: 3 - UV - UV - UV -Face 1320 -UV Count: 3 - UV - UV - UV -Face 1321 -UV Count: 3 - UV - UV - UV -Face 1322 -UV Count: 3 - UV - UV - UV -Face 1323 -UV Count: 3 - UV - UV - UV -Face 1324 -UV Count: 3 - UV - UV - UV -Face 1325 -UV Count: 3 - UV - UV - UV -Face 1326 -UV Count: 3 - UV - UV - UV -Face 1327 -UV Count: 3 - UV - UV - UV -Face 1328 -UV Count: 3 - UV - UV - UV -Face 1329 -UV Count: 3 - UV - UV - UV -Face 1330 -UV Count: 3 - UV - UV - UV -Face 1331 -UV Count: 3 - UV - UV - UV -Face 1332 -UV Count: 3 - UV - UV - UV -Face 1333 -UV Count: 3 - UV - UV - UV -Face 1334 -UV Count: 3 - UV - UV - UV -Face 1335 -UV Count: 3 - UV - UV - UV -Face 1336 -UV Count: 3 - UV - UV - UV -Face 1337 -UV Count: 3 - UV - UV - UV -Face 1338 -UV Count: 3 - UV - UV - UV -Face 1339 -UV Count: 3 - UV - UV - UV -Face 1340 -UV Count: 3 - UV - UV - UV -Face 1341 -UV Count: 3 - UV - UV - UV -Face 1342 -UV Count: 3 - UV - UV - UV -Face 1343 -UV Count: 3 - UV - UV - UV -Face 1344 -UV Count: 3 - UV - UV - UV -Face 1345 -UV Count: 3 - UV - UV - UV -Face 1346 -UV Count: 3 - UV - UV - UV -Face 1347 -UV Count: 3 - UV - UV - UV -Face 1348 -UV Count: 3 - UV - UV - UV -Face 1349 -UV Count: 3 - UV - UV - UV -Face 1350 -UV Count: 3 - UV - UV - UV -Face 1351 -UV Count: 3 - UV - UV - UV -Face 1352 -UV Count: 3 - UV - UV - UV -Face 1353 -UV Count: 3 - UV - UV - UV -Face 1354 -UV Count: 3 - UV - UV - UV -Face 1355 -UV Count: 3 - UV - UV - UV -Face 1356 -UV Count: 3 - UV - UV - UV -Face 1357 -UV Count: 3 - UV - UV - UV -Face 1358 -UV Count: 3 - UV - UV - UV -Face 1359 -UV Count: 3 - UV - UV - UV -Face 1360 -UV Count: 3 - UV - UV - UV -Face 1361 -UV Count: 3 - UV - UV - UV -Face 1362 -UV Count: 3 - UV - UV - UV -Face 1363 -UV Count: 3 - UV - UV - UV -Face 1364 -UV Count: 3 - UV - UV - UV -Face 1365 -UV Count: 3 - UV - UV - UV -Face 1366 -UV Count: 3 - UV - UV - UV -Face 1367 -UV Count: 3 - UV - UV - UV -Face 1368 -UV Count: 3 - UV - UV - UV -Face 1369 -UV Count: 3 - UV - UV - UV -Face 1370 -UV Count: 3 - UV - UV - UV -Face 1371 -UV Count: 3 - UV - UV - UV -Face 1372 -UV Count: 3 - UV - UV - UV -Face 1373 -UV Count: 3 - UV - UV - UV -Face 1374 -UV Count: 3 - UV - UV - UV -Face 1375 -UV Count: 3 - UV - UV - UV -Face 1376 -UV Count: 3 - UV - UV - UV -Face 1377 -UV Count: 3 - UV - UV - UV -Face 1378 -UV Count: 3 - UV - UV - UV -Face 1379 -UV Count: 3 - UV - UV - UV -Face 1380 -UV Count: 3 - UV - UV - UV -Face 1381 -UV Count: 3 - UV - UV - UV -Face 1382 -UV Count: 3 - UV - UV - UV -Face 1383 -UV Count: 3 - UV - UV - UV -Face 1384 -UV Count: 3 - UV - UV - UV -Face 1385 -UV Count: 3 - UV - UV - UV -Face 1386 -UV Count: 3 - UV - UV - UV -Face 1387 -UV Count: 3 - UV - UV - UV -Face 1388 -UV Count: 3 - UV - UV - UV -Face 1389 -UV Count: 3 - UV - UV - UV -Face 1390 -UV Count: 3 - UV - UV - UV -Face 1391 -UV Count: 3 - UV - UV - UV -Face 1392 -UV Count: 3 - UV - UV - UV -Face 1393 -UV Count: 3 - UV - UV - UV -Face 1394 -UV Count: 3 - UV - UV - UV -Face 1395 -UV Count: 3 - UV - UV - UV -Face 1396 -UV Count: 3 - UV - UV - UV -Face 1397 -UV Count: 3 - UV - UV - UV -Face 1398 -UV Count: 3 - UV - UV - UV -Face 1399 -UV Count: 3 - UV - UV - UV -Face 1400 -UV Count: 3 - UV - UV - UV -Face 1401 -UV Count: 3 - UV - UV - UV -Face 1402 -UV Count: 3 - UV - UV - UV -Face 1403 -UV Count: 3 - UV - UV - UV -Face 1404 -UV Count: 3 - UV - UV - UV -Face 1405 -UV Count: 3 - UV - UV - UV -Face 1406 -UV Count: 3 - UV - UV - UV -Face 1407 -UV Count: 3 - UV - UV - UV -Face 1408 -UV Count: 3 - UV - UV - UV -Face 1409 -UV Count: 3 - UV - UV - UV -Face 1410 -UV Count: 3 - UV - UV - UV -Face 1411 -UV Count: 3 - UV - UV - UV -Face 1412 -UV Count: 3 - UV - UV - UV -Face 1413 -UV Count: 3 - UV - UV - UV -Face 1414 -UV Count: 3 - UV - UV - UV -Face 1415 -UV Count: 3 - UV - UV - UV -Face 1416 -UV Count: 3 - UV - UV - UV -Face 1417 -UV Count: 3 - UV - UV - UV -Face 1418 -UV Count: 3 - UV - UV - UV -Face 1419 -UV Count: 3 - UV - UV - UV -Face 1420 -UV Count: 3 - UV - UV - UV -Face 1421 -UV Count: 3 - UV - UV - UV -Face 1422 -UV Count: 3 - UV - UV - UV -Face 1423 -UV Count: 3 - UV - UV - UV -Face 1424 -UV Count: 3 - UV - UV - UV -Face 1425 -UV Count: 3 - UV - UV - UV -Face 1426 -UV Count: 3 - UV - UV - UV -Face 1427 -UV Count: 3 - UV - UV - UV -Face 1428 -UV Count: 3 - UV - UV - UV -Face 1429 -UV Count: 3 - UV - UV - UV -Face 1430 -UV Count: 3 - UV - UV - UV -Face 1431 -UV Count: 3 - UV - UV - UV -Face 1432 -UV Count: 3 - UV - UV - UV -Face 1433 -UV Count: 3 - UV - UV - UV -Face 1434 -UV Count: 3 - UV - UV - UV -Face 1435 -UV Count: 3 - UV - UV - UV -Face 1436 -UV Count: 3 - UV - UV - UV -Face 1437 -UV Count: 3 - UV - UV - UV -Face 1438 -UV Count: 3 - UV - UV - UV -Face 1439 -UV Count: 3 - UV - UV - UV -Face 1440 -UV Count: 3 - UV - UV - UV -Face 1441 -UV Count: 3 - UV - UV - UV -Face 1442 -UV Count: 3 - UV - UV - UV -Face 1443 -UV Count: 3 - UV - UV - UV -Face 1444 -UV Count: 3 - UV - UV - UV -Face 1445 -UV Count: 3 - UV - UV - UV -Face 1446 -UV Count: 3 - UV - UV - UV -Face 1447 -UV Count: 3 - UV - UV - UV -Face 1448 -UV Count: 3 - UV - UV - UV -Face 1449 -UV Count: 3 - UV - UV - UV -Face 1450 -UV Count: 3 - UV - UV - UV -Face 1451 -UV Count: 3 - UV - UV - UV -Face 1452 -UV Count: 3 - UV - UV - UV -Face 1453 -UV Count: 3 - UV - UV - UV -Face 1454 -UV Count: 3 - UV - UV - UV -Face 1455 -UV Count: 3 - UV - UV - UV -Face 1456 -UV Count: 3 - UV - UV - UV -Face 1457 -UV Count: 3 - UV - UV - UV -Face 1458 -UV Count: 3 - UV - UV - UV -Face 1459 -UV Count: 3 - UV - UV - UV -Face 1460 -UV Count: 3 - UV - UV - UV -Face 1461 -UV Count: 3 - UV - UV - UV -Face 1462 -UV Count: 3 - UV - UV - UV -Face 1463 -UV Count: 3 - UV - UV - UV -Face 1464 -UV Count: 3 - UV - UV - UV -Face 1465 -UV Count: 3 - UV - UV - UV -Face 1466 -UV Count: 3 - UV - UV - UV -Face 1467 -UV Count: 3 - UV - UV - UV -Face 1468 -UV Count: 3 - UV - UV - UV -Face 1469 -UV Count: 3 - UV - UV - UV -Face 1470 -UV Count: 3 - UV - UV - UV -Face 1471 -UV Count: 3 - UV - UV - UV -Face 1472 -UV Count: 3 - UV - UV - UV -Face 1473 -UV Count: 3 - UV - UV - UV -Face 1474 -UV Count: 3 - UV - UV - UV -Face 1475 -UV Count: 3 - UV - UV - UV -Face 1476 -UV Count: 3 - UV - UV - UV -Face 1477 -UV Count: 3 - UV - UV - UV -Face 1478 -UV Count: 3 - UV - UV - UV -Face 1479 -UV Count: 3 - UV - UV - UV -Face 1480 -UV Count: 3 - UV - UV - UV -Face 1481 -UV Count: 3 - UV - UV - UV -Face 1482 -UV Count: 3 - UV - UV - UV -Face 1483 -UV Count: 3 - UV - UV - UV -Face 1484 -UV Count: 3 - UV - UV - UV -Face 1485 -UV Count: 3 - UV - UV - UV -Face 1486 -UV Count: 3 - UV - UV - UV -Face 1487 -UV Count: 3 - UV - UV - UV -Face 1488 -UV Count: 3 - UV - UV - UV -Face 1489 -UV Count: 3 - UV - UV - UV -Face 1490 -UV Count: 3 - UV - UV - UV -Face 1491 -UV Count: 3 - UV - UV - UV -Face 1492 -UV Count: 3 - UV - UV - UV -Face 1493 -UV Count: 3 - UV - UV - UV -Face 1494 -UV Count: 3 - UV - UV - UV -Face 1495 -UV Count: 3 - UV - UV - UV -Face 1496 -UV Count: 3 - UV - UV - UV -Face 1497 -UV Count: 3 - UV - UV - UV -Face 1498 -UV Count: 3 - UV - UV - UV -Face 1499 -UV Count: 3 - UV - UV - UV -Face 1500 -UV Count: 3 - UV - UV - UV -Face 1501 -UV Count: 3 - UV - UV - UV -Face 1502 -UV Count: 3 - UV - UV - UV -Face 1503 -UV Count: 3 - UV - UV - UV -Face 1504 -UV Count: 3 - UV - UV - UV -Face 1505 -UV Count: 3 - UV - UV - UV -Face 1506 -UV Count: 3 - UV - UV - UV -Face 1507 -UV Count: 3 - UV - UV - UV -Face 1508 -UV Count: 3 - UV - UV - UV -Face 1509 -UV Count: 3 - UV - UV - UV -Face 1510 -UV Count: 3 - UV - UV - UV -Face 1511 -UV Count: 3 - UV - UV - UV -Face 1512 -UV Count: 3 - UV - UV - UV -Face 1513 -UV Count: 3 - UV - UV - UV -Face 1514 -UV Count: 3 - UV - UV - UV -Face 1515 -UV Count: 3 - UV - UV - UV -Face 1516 -UV Count: 3 - UV - UV - UV -Face 1517 -UV Count: 3 - UV - UV - UV -Face 1518 -UV Count: 3 - UV - UV - UV -Face 1519 -UV Count: 3 - UV - UV - UV -Face 1520 -UV Count: 3 - UV - UV - UV -Face 1521 -UV Count: 3 - UV - UV - UV -Face 1522 -UV Count: 3 - UV - UV - UV -Face 1523 -UV Count: 3 - UV - UV - UV -Face 1524 -UV Count: 3 - UV - UV - UV -Face 1525 -UV Count: 3 - UV - UV - UV -Face 1526 -UV Count: 3 - UV - UV - UV -Face 1527 -UV Count: 3 - UV - UV - UV -Face 1528 -UV Count: 3 - UV - UV - UV -Face 1529 -UV Count: 3 - UV - UV - UV -Face 1530 -UV Count: 3 - UV - UV - UV -Face 1531 -UV Count: 3 - UV - UV - UV -Face 1532 -UV Count: 3 - UV - UV - UV -Face 1533 -UV Count: 3 - UV - UV - UV -Face 1534 -UV Count: 3 - UV - UV - UV -Face 1535 -UV Count: 3 - UV - UV - UV -Face 1536 -UV Count: 3 - UV - UV - UV -Face 1537 -UV Count: 3 - UV - UV - UV -Face 1538 -UV Count: 3 - UV - UV - UV -Face 1539 -UV Count: 3 - UV - UV - UV -Face 1540 -UV Count: 3 - UV - UV - UV -Face 1541 -UV Count: 3 - UV - UV - UV -Face 1542 -UV Count: 3 - UV - UV - UV -Face 1543 -UV Count: 3 - UV - UV - UV -Face 1544 -UV Count: 3 - UV - UV - UV -Face 1545 -UV Count: 3 - UV - UV - UV -Face 1546 -UV Count: 3 - UV - UV - UV -Face 1547 -UV Count: 3 - UV - UV - UV -Face 1548 -UV Count: 3 - UV - UV - UV -Face 1549 -UV Count: 3 - UV - UV - UV -Face 1550 -UV Count: 3 - UV - UV - UV -Face 1551 -UV Count: 3 - UV - UV - UV -Face 1552 -UV Count: 3 - UV - UV - UV -Face 1553 -UV Count: 3 - UV - UV - UV -Face 1554 -UV Count: 3 - UV - UV - UV -Face 1555 -UV Count: 3 - UV - UV - UV -Face 1556 -UV Count: 3 - UV - UV - UV -Face 1557 -UV Count: 3 - UV - UV - UV -Face 1558 -UV Count: 3 - UV - UV - UV -Face 1559 -UV Count: 3 - UV - UV - UV -Face 1560 -UV Count: 3 - UV - UV - UV -Face 1561 -UV Count: 3 - UV - UV - UV -Face 1562 -UV Count: 3 - UV - UV - UV -Face 1563 -UV Count: 3 - UV - UV - UV -Face 1564 -UV Count: 3 - UV - UV - UV -Face 1565 -UV Count: 3 - UV - UV - UV -Face 1566 -UV Count: 3 - UV - UV - UV -Face 1567 -UV Count: 3 - UV - UV - UV -Face 1568 -UV Count: 3 - UV - UV - UV -Face 1569 -UV Count: 3 - UV - UV - UV -Face 1570 -UV Count: 3 - UV - UV - UV -Face 1571 -UV Count: 3 - UV - UV - UV -Face 1572 -UV Count: 3 - UV - UV - UV -Face 1573 -UV Count: 3 - UV - UV - UV -Face 1574 -UV Count: 3 - UV - UV - UV -Face 1575 -UV Count: 3 - UV - UV - UV -Face 1576 -UV Count: 3 - UV - UV - UV -Face 1577 -UV Count: 3 - UV - UV - UV -Face 1578 -UV Count: 3 - UV - UV - UV -Face 1579 -UV Count: 3 - UV - UV - UV -Face 1580 -UV Count: 3 - UV - UV - UV -Face 1581 -UV Count: 3 - UV - UV - UV -Face 1582 -UV Count: 3 - UV - UV - UV -Face 1583 -UV Count: 3 - UV - UV - UV -Face 1584 -UV Count: 3 - UV - UV - UV -Face 1585 -UV Count: 3 - UV - UV - UV -Face 1586 -UV Count: 3 - UV - UV - UV -Face 1587 -UV Count: 3 - UV - UV - UV -Face 1588 -UV Count: 3 - UV - UV - UV -Face 1589 -UV Count: 3 - UV - UV - UV -Face 1590 -UV Count: 3 - UV - UV - UV -Face 1591 -UV Count: 3 - UV - UV - UV -Face 1592 -UV Count: 3 - UV - UV - UV -Face 1593 -UV Count: 3 - UV - UV - UV -Face 1594 -UV Count: 3 - UV - UV - UV -Face 1595 -UV Count: 3 - UV - UV - UV -Face 1596 -UV Count: 3 - UV - UV - UV -Face 1597 -UV Count: 3 - UV - UV - UV -Face 1598 -UV Count: 3 - UV - UV - UV -Face 1599 -UV Count: 3 - UV - UV - UV -Face 1600 -UV Count: 3 - UV - UV - UV -Face 1601 -UV Count: 3 - UV - UV - UV -Face 1602 -UV Count: 3 - UV - UV - UV -Face 1603 -UV Count: 3 - UV - UV - UV -Face 1604 -UV Count: 3 - UV - UV - UV -Face 1605 -UV Count: 3 - UV - UV - UV -Face 1606 -UV Count: 3 - UV - UV - UV -Face 1607 -UV Count: 3 - UV - UV - UV -Face 1608 -UV Count: 3 - UV - UV - UV -Face 1609 -UV Count: 3 - UV - UV - UV -Face 1610 -UV Count: 3 - UV - UV - UV -Face 1611 -UV Count: 3 - UV - UV - UV -Face 1612 -UV Count: 3 - UV - UV - UV -Face 1613 -UV Count: 3 - UV - UV - UV -Face 1614 -UV Count: 3 - UV - UV - UV -Face 1615 -UV Count: 3 - UV - UV - UV -Face 1616 -UV Count: 3 - UV - UV - UV -Face 1617 -UV Count: 3 - UV - UV - UV -Face 1618 -UV Count: 3 - UV - UV - UV -Face 1619 -UV Count: 3 - UV - UV - UV -Face 1620 -UV Count: 3 - UV - UV - UV -Face 1621 -UV Count: 3 - UV - UV - UV -Face 1622 -UV Count: 3 - UV - UV - UV -Face 1623 -UV Count: 3 - UV - UV - UV -Face 1624 -UV Count: 3 - UV - UV - UV -Face 1625 -UV Count: 3 - UV - UV - UV -Face 1626 -UV Count: 3 - UV - UV - UV -Face 1627 -UV Count: 3 - UV - UV - UV -Face 1628 -UV Count: 3 - UV - UV - UV -Face 1629 -UV Count: 3 - UV - UV - UV -Face 1630 -UV Count: 3 - UV - UV - UV -Face 1631 -UV Count: 3 - UV - UV - UV -Face 1632 -UV Count: 3 - UV - UV - UV -Face 1633 -UV Count: 3 - UV - UV - UV -Face 1634 -UV Count: 3 - UV - UV - UV -Face 1635 -UV Count: 3 - UV - UV - UV -Face 1636 -UV Count: 3 - UV - UV - UV -Face 1637 -UV Count: 3 - UV - UV - UV -Face 1638 -UV Count: 3 - UV - UV - UV -Face 1639 -UV Count: 3 - UV - UV - UV -Face 1640 -UV Count: 3 - UV - UV - UV -Face 1641 -UV Count: 3 - UV - UV - UV -Face 1642 -UV Count: 3 - UV - UV - UV -Face 1643 -UV Count: 3 - UV - UV - UV -Face 1644 -UV Count: 3 - UV - UV - UV -Face 1645 -UV Count: 3 - UV - UV - UV -Face 1646 -UV Count: 3 - UV - UV - UV -Face 1647 -UV Count: 3 - UV - UV - UV -Face 1648 -UV Count: 3 - UV - UV - UV -Face 1649 -UV Count: 3 - UV - UV - UV -Face 1650 -UV Count: 3 - UV - UV - UV -Face 1651 -UV Count: 3 - UV - UV - UV -Face 1652 -UV Count: 3 - UV - UV - UV -Face 1653 -UV Count: 3 - UV - UV - UV -Face 1654 -UV Count: 3 - UV - UV - UV -Face 1655 -UV Count: 3 - UV - UV - UV -Face 1656 -UV Count: 3 - UV - UV - UV -Face 1657 -UV Count: 3 - UV - UV - UV -Face 1658 -UV Count: 3 - UV - UV - UV -Face 1659 -UV Count: 3 - UV - UV - UV -Face 1660 -UV Count: 3 - UV - UV - UV -Face 1661 -UV Count: 3 - UV - UV - UV -Face 1662 -UV Count: 3 - UV - UV - UV -Face 1663 -UV Count: 3 - UV - UV - UV -Face 1664 -UV Count: 3 - UV - UV - UV -Face 1665 -UV Count: 3 - UV - UV - UV -Face 1666 -UV Count: 3 - UV - UV - UV -Face 1667 -UV Count: 3 - UV - UV - UV -Face 1668 -UV Count: 3 - UV - UV - UV -Face 1669 -UV Count: 3 - UV - UV - UV -Face 1670 -UV Count: 3 - UV - UV - UV -Face 1671 -UV Count: 3 - UV - UV - UV -Face 1672 -UV Count: 3 - UV - UV - UV -Face 1673 -UV Count: 3 - UV - UV - UV -Face 1674 -UV Count: 3 - UV - UV - UV -Face 1675 -UV Count: 3 - UV - UV - UV -Face 1676 -UV Count: 3 - UV - UV - UV -Face 1677 -UV Count: 3 - UV - UV - UV -Face 1678 -UV Count: 3 - UV - UV - UV -Face 1679 -UV Count: 3 - UV - UV - UV -Face 1680 -UV Count: 3 - UV - UV - UV -Face 1681 -UV Count: 3 - UV - UV - UV -Face 1682 -UV Count: 3 - UV - UV - UV -Face 1683 -UV Count: 3 - UV - UV - UV -Face 1684 -UV Count: 3 - UV - UV - UV -Face 1685 -UV Count: 3 - UV - UV - UV -Face 1686 -UV Count: 3 - UV - UV - UV -Face 1687 -UV Count: 3 - UV - UV - UV -Face 1688 -UV Count: 3 - UV - UV - UV -Face 1689 -UV Count: 3 - UV - UV - UV -Face 1690 -UV Count: 3 - UV - UV - UV -Face 1691 -UV Count: 3 - UV - UV - UV -Face 1692 -UV Count: 3 - UV - UV - UV -Face 1693 -UV Count: 3 - UV - UV - UV -Face 1694 -UV Count: 3 - UV - UV - UV -Face 1695 -UV Count: 3 - UV - UV - UV -Face 1696 -UV Count: 3 - UV - UV - UV -Face 1697 -UV Count: 3 - UV - UV - UV -Face 1698 -UV Count: 3 - UV - UV - UV -Face 1699 -UV Count: 3 - UV - UV - UV -Face 1700 -UV Count: 3 - UV - UV - UV -Face 1701 -UV Count: 3 - UV - UV - UV -Face 1702 -UV Count: 3 - UV - UV - UV -Face 1703 -UV Count: 3 - UV - UV - UV -Face 1704 -UV Count: 3 - UV - UV - UV -Face 1705 -UV Count: 3 - UV - UV - UV -Face 1706 -UV Count: 3 - UV - UV - UV -Face 1707 -UV Count: 3 - UV - UV - UV -Face 1708 -UV Count: 3 - UV - UV - UV -Face 1709 -UV Count: 3 - UV - UV - UV -Face 1710 -UV Count: 3 - UV - UV - UV -Face 1711 -UV Count: 3 - UV - UV - UV -Face 1712 -UV Count: 3 - UV - UV - UV -Face 1713 -UV Count: 3 - UV - UV - UV -Face 1714 -UV Count: 3 - UV - UV - UV -Face 1715 -UV Count: 3 - UV - UV - UV -Face 1716 -UV Count: 3 - UV - UV - UV -Face 1717 -UV Count: 3 - UV - UV - UV -Face 1718 -UV Count: 3 - UV - UV - UV -Face 1719 -UV Count: 3 - UV - UV - UV -Face 1720 -UV Count: 3 - UV - UV - UV -Face 1721 -UV Count: 3 - UV - UV - UV -Face 1722 -UV Count: 3 - UV - UV - UV -Face 1723 -UV Count: 3 - UV - UV - UV -Face 1724 -UV Count: 3 - UV - UV - UV -Face 1725 -UV Count: 3 - UV - UV - UV -Face 1726 -UV Count: 3 - UV - UV - UV -Face 1727 -UV Count: 3 - UV - UV - UV -Face 1728 -UV Count: 3 - UV - UV - UV -Face 1729 -UV Count: 3 - UV - UV - UV -Face 1730 -UV Count: 3 - UV - UV - UV -Face 1731 -UV Count: 3 - UV - UV - UV -Face 1732 -UV Count: 3 - UV - UV - UV -Face 1733 -UV Count: 3 - UV - UV - UV -Face 1734 -UV Count: 3 - UV - UV - UV -Face 1735 -UV Count: 3 - UV - UV - UV -Face 1736 -UV Count: 3 - UV - UV - UV -Face 1737 -UV Count: 3 - UV - UV - UV -Face 1738 -UV Count: 3 - UV - UV - UV -Face 1739 -UV Count: 3 - UV - UV - UV -Face 1740 -UV Count: 3 - UV - UV - UV -Face 1741 -UV Count: 3 - UV - UV - UV -Face 1742 -UV Count: 3 - UV - UV - UV -Face 1743 -UV Count: 3 - UV - UV - UV -Face 1744 -UV Count: 3 - UV - UV - UV -Face 1745 -UV Count: 3 - UV - UV - UV -Face 1746 -UV Count: 3 - UV - UV - UV -Face 1747 -UV Count: 3 - UV - UV - UV -Face 1748 -UV Count: 3 - UV - UV - UV -Face 1749 -UV Count: 3 - UV - UV - UV -Face 1750 -UV Count: 3 - UV - UV - UV -Face 1751 -UV Count: 3 - UV - UV - UV -Face 1752 -UV Count: 3 - UV - UV - UV -Face 1753 -UV Count: 3 - UV - UV - UV -Face 1754 -UV Count: 3 - UV - UV - UV -Face 1755 -UV Count: 3 - UV - UV - UV -Face 1756 -UV Count: 3 - UV - UV - UV -Face 1757 -UV Count: 3 - UV - UV - UV -Face 1758 -UV Count: 3 - UV - UV - UV -Face 1759 -UV Count: 3 - UV - UV - UV -Face 1760 -UV Count: 3 - UV - UV - UV -Face 1761 -UV Count: 3 - UV - UV - UV -Face 1762 -UV Count: 3 - UV - UV - UV -Face 1763 -UV Count: 3 - UV - UV - UV -Face 1764 -UV Count: 3 - UV - UV - UV -Face 1765 -UV Count: 3 - UV - UV - UV -Face 1766 -UV Count: 3 - UV - UV - UV -Face 1767 -UV Count: 3 - UV - UV - UV -Face 1768 -UV Count: 3 - UV - UV - UV -Face 1769 -UV Count: 3 - UV - UV - UV -Face 1770 -UV Count: 3 - UV - UV - UV -Face 1771 -UV Count: 3 - UV - UV - UV -Face 1772 -UV Count: 3 - UV - UV - UV -Face 1773 -UV Count: 3 - UV - UV - UV -Face 1774 -UV Count: 3 - UV - UV - UV -Face 1775 -UV Count: 3 - UV - UV - UV -Face 1776 -UV Count: 3 - UV - UV - UV -Face 1777 -UV Count: 3 - UV - UV - UV -Face 1778 -UV Count: 3 - UV - UV - UV -Face 1779 -UV Count: 3 - UV - UV - UV -Face 1780 -UV Count: 3 - UV - UV - UV -Face 1781 -UV Count: 3 - UV - UV - UV -Face 1782 -UV Count: 3 - UV - UV - UV -Face 1783 -UV Count: 3 - UV - UV - UV -Face 1784 -UV Count: 3 - UV - UV - UV -Face 1785 -UV Count: 3 - UV - UV - UV -Face 1786 -UV Count: 3 - UV - UV - UV -Face 1787 -UV Count: 3 - UV - UV - UV -Face 1788 -UV Count: 3 - UV - UV - UV -Face 1789 -UV Count: 3 - UV - UV - UV -Face 1790 -UV Count: 3 - UV - UV - UV -Face 1791 -UV Count: 3 - UV - UV - UV -Face 1792 -UV Count: 3 - UV - UV - UV -Face 1793 -UV Count: 3 - UV - UV - UV -Face 1794 -UV Count: 3 - UV - UV - UV -Face 1795 -UV Count: 3 - UV - UV - UV -Face 1796 -UV Count: 3 - UV - UV - UV -Face 1797 -UV Count: 3 - UV - UV - UV -Face 1798 -UV Count: 3 - UV - UV - UV -Face 1799 -UV Count: 3 - UV - UV - UV -Face 1800 -UV Count: 3 - UV - UV - UV -Face 1801 -UV Count: 3 - UV - UV - UV -Face 1802 -UV Count: 3 - UV - UV - UV -Face 1803 -UV Count: 3 - UV - UV - UV -Face 1804 -UV Count: 3 - UV - UV - UV -Face 1805 -UV Count: 3 - UV - UV - UV -Face 1806 -UV Count: 3 - UV - UV - UV -Face 1807 -UV Count: 3 - UV - UV - UV -Face 1808 -UV Count: 3 - UV - UV - UV -Face 1809 -UV Count: 3 - UV - UV - UV -Face 1810 -UV Count: 3 - UV - UV - UV -Face 1811 -UV Count: 3 - UV - UV - UV -Face 1812 -UV Count: 3 - UV - UV - UV -Face 1813 -UV Count: 3 - UV - UV - UV -Face 1814 -UV Count: 3 - UV - UV - UV -Face 1815 -UV Count: 3 - UV - UV - UV -Face 1816 -UV Count: 3 - UV - UV - UV -Face 1817 -UV Count: 3 - UV - UV - UV -Face 1818 -UV Count: 3 - UV - UV - UV -Face 1819 -UV Count: 3 - UV - UV - UV -Face 1820 -UV Count: 3 - UV - UV - UV -Face 1821 -UV Count: 3 - UV - UV - UV -Face 1822 -UV Count: 3 - UV - UV - UV -Face 1823 -UV Count: 3 - UV - UV - UV -Face 1824 -UV Count: 3 - UV - UV - UV -Face 1825 -UV Count: 3 - UV - UV - UV -Face 1826 -UV Count: 3 - UV - UV - UV -Face 1827 -UV Count: 3 - UV - UV - UV -Face 1828 -UV Count: 3 - UV - UV - UV -Face 1829 -UV Count: 3 - UV - UV - UV -Face 1830 -UV Count: 3 - UV - UV - UV -Face 1831 -UV Count: 3 - UV - UV - UV -Face 1832 -UV Count: 3 - UV - UV - UV -Face 1833 -UV Count: 3 - UV - UV - UV -Face 1834 -UV Count: 3 - UV - UV - UV -Face 1835 -UV Count: 3 - UV - UV - UV -Face 1836 -UV Count: 3 - UV - UV - UV -Face 1837 -UV Count: 3 - UV - UV - UV -Face 1838 -UV Count: 3 - UV - UV - UV -Face 1839 -UV Count: 3 - UV - UV - UV -Face 1840 -UV Count: 3 - UV - UV - UV -Face 1841 -UV Count: 3 - UV - UV - UV -Face 1842 -UV Count: 3 - UV - UV - UV -Face 1843 -UV Count: 3 - UV - UV - UV -Face 1844 -UV Count: 3 - UV - UV - UV -Face 1845 -UV Count: 3 - UV - UV - UV -Face 1846 -UV Count: 3 - UV - UV - UV -Face 1847 -UV Count: 3 - UV - UV - UV -Face 1848 -UV Count: 3 - UV - UV - UV -Face 1849 -UV Count: 3 - UV - UV - UV -Face 1850 -UV Count: 3 - UV - UV - UV -Face 1851 -UV Count: 3 - UV - UV - UV -Face 1852 -UV Count: 3 - UV - UV - UV -Face 1853 -UV Count: 3 - UV - UV - UV -Face 1854 -UV Count: 3 - UV - UV - UV -Face 1855 -UV Count: 3 - UV - UV - UV -Face 1856 -UV Count: 3 - UV - UV - UV -Face 1857 -UV Count: 3 - UV - UV - UV -Face 1858 -UV Count: 3 - UV - UV - UV -Face 1859 -UV Count: 3 - UV - UV - UV -Face 1860 -UV Count: 3 - UV - UV - UV -Face 1861 -UV Count: 3 - UV - UV - UV -Face 1862 -UV Count: 3 - UV - UV - UV -Face 1863 -UV Count: 3 - UV - UV - UV -Face 1864 -UV Count: 3 - UV - UV - UV -Face 1865 -UV Count: 3 - UV - UV - UV -Face 1866 -UV Count: 3 - UV - UV - UV -Face 1867 -UV Count: 3 - UV - UV - UV -Face 1868 -UV Count: 3 - UV - UV - UV -Face 1869 -UV Count: 3 - UV - UV - UV -Face 1870 -UV Count: 3 - UV - UV - UV -Face 1871 -UV Count: 3 - UV - UV - UV -Face 1872 -UV Count: 3 - UV - UV - UV -Face 1873 -UV Count: 3 - UV - UV - UV -Face 1874 -UV Count: 3 - UV - UV - UV -Face 1875 -UV Count: 3 - UV - UV - UV -Face 1876 -UV Count: 3 - UV - UV - UV -Face 1877 -UV Count: 3 - UV - UV - UV -Face 1878 -UV Count: 3 - UV - UV - UV -Face 1879 -UV Count: 3 - UV - UV - UV -Face 1880 -UV Count: 3 - UV - UV - UV -Face 1881 -UV Count: 3 - UV - UV - UV -Face 1882 -UV Count: 3 - UV - UV - UV -Face 1883 -UV Count: 3 - UV - UV - UV -Face 1884 -UV Count: 3 - UV - UV - UV -Face 1885 -UV Count: 3 - UV - UV - UV -Face 1886 -UV Count: 3 - UV - UV - UV -Face 1887 -UV Count: 3 - UV - UV - UV -Face 1888 -UV Count: 3 - UV - UV - UV -Face 1889 -UV Count: 3 - UV - UV - UV -Face 1890 -UV Count: 3 - UV - UV - UV -Face 1891 -UV Count: 3 - UV - UV - UV -Face 1892 -UV Count: 3 - UV - UV - UV -Face 1893 -UV Count: 3 - UV - UV - UV -Face 1894 -UV Count: 3 - UV - UV - UV -Face 1895 -UV Count: 3 - UV - UV - UV -Face 1896 -UV Count: 3 - UV - UV - UV -Face 1897 -UV Count: 3 - UV - UV - UV -Face 1898 -UV Count: 3 - UV - UV - UV -Face 1899 -UV Count: 3 - UV - UV - UV -Face 1900 -UV Count: 3 - UV - UV - UV -Face 1901 -UV Count: 3 - UV - UV - UV -Face 1902 -UV Count: 3 - UV - UV - UV -Face 1903 -UV Count: 3 - UV - UV - UV -Face 1904 -UV Count: 3 - UV - UV - UV -Face 1905 -UV Count: 3 - UV - UV - UV -Face 1906 -UV Count: 3 - UV - UV - UV -Face 1907 -UV Count: 3 - UV - UV - UV -Face 1908 -UV Count: 3 - UV - UV - UV -Face 1909 -UV Count: 3 - UV - UV - UV -Face 1910 -UV Count: 3 - UV - UV - UV -Face 1911 -UV Count: 3 - UV - UV - UV -Face 1912 -UV Count: 3 - UV - UV - UV -Face 1913 -UV Count: 3 - UV - UV - UV -Face 1914 -UV Count: 3 - UV - UV - UV -Face 1915 -UV Count: 3 - UV - UV - UV -Face 1916 -UV Count: 3 - UV - UV - UV -Face 1917 -UV Count: 3 - UV - UV - UV -Face 1918 -UV Count: 3 - UV - UV - UV -Face 1919 -UV Count: 3 - UV - UV - UV -Face 1920 -UV Count: 3 - UV - UV - UV -Face 1921 -UV Count: 3 - UV - UV - UV -Face 1922 -UV Count: 3 - UV - UV - UV -Face 1923 -UV Count: 3 - UV - UV - UV -Face 1924 -UV Count: 3 - UV - UV - UV -Face 1925 -UV Count: 3 - UV - UV - UV -Face 1926 -UV Count: 3 - UV - UV - UV -Face 1927 -UV Count: 3 - UV - UV - UV -Face 1928 -UV Count: 3 - UV - UV - UV -Face 1929 -UV Count: 3 - UV - UV - UV -Face 1930 -UV Count: 3 - UV - UV - UV -Face 1931 -UV Count: 3 - UV - UV - UV -Face 1932 -UV Count: 3 - UV - UV - UV -Face 1933 -UV Count: 3 - UV - UV - UV -Face 1934 -UV Count: 3 - UV - UV - UV -Face 1935 -UV Count: 3 - UV - UV - UV -Face 1936 -UV Count: 3 - UV - UV - UV -Face 1937 -UV Count: 3 - UV - UV - UV -Face 1938 -UV Count: 3 - UV - UV - UV -Face 1939 -UV Count: 3 - UV - UV - UV -Face 1940 -UV Count: 3 - UV - UV - UV -Face 1941 -UV Count: 3 - UV - UV - UV -Face 1942 -UV Count: 3 - UV - UV - UV -Face 1943 -UV Count: 3 - UV - UV - UV -Face 1944 -UV Count: 3 - UV - UV - UV -Face 1945 -UV Count: 3 - UV - UV - UV -Face 1946 -UV Count: 3 - UV - UV - UV -Face 1947 -UV Count: 3 - UV - UV - UV -Face 1948 -UV Count: 3 - UV - UV - UV -Face 1949 -UV Count: 3 - UV - UV - UV -Face 1950 -UV Count: 3 - UV - UV - UV -Face 1951 -UV Count: 3 - UV - UV - UV -Face 1952 -UV Count: 3 - UV - UV - UV -Face 1953 -UV Count: 3 - UV - UV - UV -Face 1954 -UV Count: 3 - UV - UV - UV -Face 1955 -UV Count: 3 - UV - UV - UV -Face 1956 -UV Count: 3 - UV - UV - UV -Face 1957 -UV Count: 3 - UV - UV - UV -Face 1958 -UV Count: 3 - UV - UV - UV -Face 1959 -UV Count: 3 - UV - UV - UV -Face 1960 -UV Count: 3 - UV - UV - UV -Face 1961 -UV Count: 3 - UV - UV - UV -Face 1962 -UV Count: 3 - UV - UV - UV -Face 1963 -UV Count: 3 - UV - UV - UV -Face 1964 -UV Count: 3 - UV - UV - UV -Face 1965 -UV Count: 3 - UV - UV - UV -Face 1966 -UV Count: 3 - UV - UV - UV -Face 1967 -UV Count: 3 - UV - UV - UV -Face 1968 -UV Count: 3 - UV - UV - UV -Face 1969 -UV Count: 3 - UV - UV - UV -Face 1970 -UV Count: 3 - UV - UV - UV -Face 1971 -UV Count: 3 - UV - UV - UV -Face 1972 -UV Count: 3 - UV - UV - UV -Face 1973 -UV Count: 3 - UV - UV - UV -Face 1974 -UV Count: 3 - UV - UV - UV -Face 1975 -UV Count: 3 - UV - UV - UV -Face 1976 -UV Count: 3 - UV - UV - UV -Face 1977 -UV Count: 3 - UV - UV - UV -Face 1978 -UV Count: 3 - UV - UV - UV -Face 1979 -UV Count: 3 - UV - UV - UV -Face 1980 -UV Count: 3 - UV - UV - UV -Face 1981 -UV Count: 3 - UV - UV - UV -Face 1982 -UV Count: 3 - UV - UV - UV -Face 1983 -UV Count: 3 - UV - UV - UV -Face 1984 -UV Count: 3 - UV - UV - UV -Face 1985 -UV Count: 3 - UV - UV - UV -Face 1986 -UV Count: 3 - UV - UV - UV -Face 1987 -UV Count: 3 - UV - UV - UV -Face 1988 -UV Count: 3 - UV - UV - UV -Face 1989 -UV Count: 3 - UV - UV - UV -Face 1990 -UV Count: 3 - UV - UV - UV -Face 1991 -UV Count: 3 - UV - UV - UV -Face 1992 -UV Count: 3 - UV - UV - UV -Face 1993 -UV Count: 3 - UV - UV - UV -Face 1994 -UV Count: 3 - UV - UV - UV -Face 1995 -UV Count: 3 - UV - UV - UV -Face 1996 -UV Count: 3 - UV - UV - UV -Face 1997 -UV Count: 3 - UV - UV - UV -Face 1998 -UV Count: 3 - UV - UV - UV -Face 1999 -UV Count: 3 - UV - UV - UV -Face 2000 -UV Count: 3 - UV - UV - UV -Face 2001 -UV Count: 3 - UV - UV - UV -Face 2002 -UV Count: 3 - UV - UV - UV -Face 2003 -UV Count: 3 - UV - UV - UV -Face 2004 -UV Count: 3 - UV - UV - UV -Face 2005 -UV Count: 3 - UV - UV - UV -Face 2006 -UV Count: 3 - UV - UV - UV -Face 2007 -UV Count: 3 - UV - UV - UV -Face 2008 -UV Count: 3 - UV - UV - UV -Face 2009 -UV Count: 3 - UV - UV - UV -Face 2010 -UV Count: 3 - UV - UV - UV -Face 2011 -UV Count: 3 - UV - UV - UV -Face 2012 -UV Count: 3 - UV - UV - UV -Face 2013 -UV Count: 3 - UV - UV - UV -Face 2014 -UV Count: 3 - UV - UV - UV -Face 2015 -UV Count: 3 - UV - UV - UV -Face 2016 -UV Count: 3 - UV - UV - UV -Face 2017 -UV Count: 3 - UV - UV - UV -Face 2018 -UV Count: 3 - UV - UV - UV -Face 2019 -UV Count: 3 - UV - UV - UV -Face 2020 -UV Count: 3 - UV - UV - UV -Face 2021 -UV Count: 3 - UV - UV - UV -Face 2022 -UV Count: 3 - UV - UV - UV -Face 2023 -UV Count: 3 - UV - UV - UV -Face 2024 -UV Count: 3 - UV - UV - UV -Face 2025 -UV Count: 3 - UV - UV - UV -Face 2026 -UV Count: 3 - UV - UV - UV -Face 2027 -UV Count: 3 - UV - UV - UV -Face 2028 -UV Count: 3 - UV - UV - UV -Face 2029 -UV Count: 3 - UV - UV - UV -Face 2030 -UV Count: 3 - UV - UV - UV -Face 2031 -UV Count: 3 - UV - UV - UV -Face 2032 -UV Count: 3 - UV - UV - UV -Face 2033 -UV Count: 3 - UV - UV - UV -Face 2034 -UV Count: 3 - UV - UV - UV -Face 2035 -UV Count: 3 - UV - UV - UV -Face 2036 -UV Count: 3 - UV - UV - UV -Face 2037 -UV Count: 3 - UV - UV - UV -Face 2038 -UV Count: 3 - UV - UV - UV -Face 2039 -UV Count: 3 - UV - UV - UV -Face 2040 -UV Count: 3 - UV - UV - UV -Face 2041 -UV Count: 3 - UV - UV - UV -Face 2042 -UV Count: 3 - UV - UV - UV -Face 2043 -UV Count: 3 - UV - UV - UV -Face 2044 -UV Count: 3 - UV - UV - UV -Face 2045 -UV Count: 3 - UV - UV - UV -Face 2046 -UV Count: 3 - UV - UV - UV -Face 2047 -UV Count: 3 - UV - UV - UV -Face 2048 -UV Count: 3 - UV - UV - UV -Face 2049 -UV Count: 3 - UV - UV - UV -Face 2050 -UV Count: 3 - UV - UV - UV -Face 2051 -UV Count: 3 - UV - UV - UV -Face 2052 -UV Count: 3 - UV - UV - UV -Face 2053 -UV Count: 3 - UV - UV - UV -Face 2054 -UV Count: 3 - UV - UV - UV -Face 2055 -UV Count: 3 - UV - UV - UV -Face 2056 -UV Count: 3 - UV - UV - UV -Face 2057 -UV Count: 3 - UV - UV - UV -Face 2058 -UV Count: 3 - UV - UV - UV -Face 2059 -UV Count: 3 - UV - UV - UV -Face 2060 -UV Count: 3 - UV - UV - UV -Face 2061 -UV Count: 3 - UV - UV - UV -Face 2062 -UV Count: 3 - UV - UV - UV -Face 2063 -UV Count: 3 - UV - UV - UV -Face 2064 -UV Count: 3 - UV - UV - UV -Face 2065 -UV Count: 3 - UV - UV - UV -Face 2066 -UV Count: 3 - UV - UV - UV -Face 2067 -UV Count: 3 - UV - UV - UV -Face 2068 -UV Count: 3 - UV - UV - UV -Face 2069 -UV Count: 3 - UV - UV - UV -Face 2070 -UV Count: 3 - UV - UV - UV -Face 2071 -UV Count: 3 - UV - UV - UV -Face 2072 -UV Count: 3 - UV - UV - UV -Face 2073 -UV Count: 3 - UV - UV - UV -Face 2074 -UV Count: 3 - UV - UV - UV -Face 2075 -UV Count: 3 - UV - UV - UV -Face 2076 -UV Count: 3 - UV - UV - UV -Face 2077 -UV Count: 3 - UV - UV - UV -Face 2078 -UV Count: 3 - UV - UV - UV -Face 2079 -UV Count: 3 - UV - UV - UV -Face 2080 -UV Count: 3 - UV - UV - UV -Face 2081 -UV Count: 3 - UV - UV - UV -Face 2082 -UV Count: 3 - UV - UV - UV -Face 2083 -UV Count: 3 - UV - UV - UV -Face 2084 -UV Count: 3 - UV - UV - UV -Face 2085 -UV Count: 3 - UV - UV - UV -Face 2086 -UV Count: 3 - UV - UV - UV -Face 2087 -UV Count: 3 - UV - UV - UV -Face 2088 -UV Count: 3 - UV - UV - UV -Face 2089 -UV Count: 3 - UV - UV - UV -Face 2090 -UV Count: 3 - UV - UV - UV -Face 2091 -UV Count: 3 - UV - UV - UV -Face 2092 -UV Count: 3 - UV - UV - UV -Face 2093 -UV Count: 3 - UV - UV - UV -Face 2094 -UV Count: 3 - UV - UV - UV -Face 2095 -UV Count: 3 - UV - UV - UV -Face 2096 -UV Count: 3 - UV - UV - UV -Face 2097 -UV Count: 3 - UV - UV - UV -Face 2098 -UV Count: 3 - UV - UV - UV -Face 2099 -UV Count: 3 - UV - UV - UV -Face 2100 -UV Count: 3 - UV - UV - UV -Face 2101 -UV Count: 3 - UV - UV - UV -Face 2102 -UV Count: 3 - UV - UV - UV -Face 2103 -UV Count: 3 - UV - UV - UV -Face 2104 -UV Count: 3 - UV - UV - UV -Face 2105 -UV Count: 3 - UV - UV - UV -Face 2106 -UV Count: 3 - UV - UV - UV -Face 2107 -UV Count: 3 - UV - UV - UV -Face 2108 -UV Count: 3 - UV - UV - UV -Face 2109 -UV Count: 3 - UV - UV - UV -Face 2110 -UV Count: 3 - UV - UV - UV -Face 2111 -UV Count: 3 - UV - UV - UV -Face 2112 -UV Count: 3 - UV - UV - UV -Face 2113 -UV Count: 3 - UV - UV - UV -Face 2114 -UV Count: 3 - UV - UV - UV -Face 2115 -UV Count: 3 - UV - UV - UV -Face 2116 -UV Count: 3 - UV - UV - UV -Face 2117 -UV Count: 3 - UV - UV - UV -Face 2118 -UV Count: 3 - UV - UV - UV -Face 2119 -UV Count: 3 - UV - UV - UV -Face 2120 -UV Count: 3 - UV - UV - UV -Face 2121 -UV Count: 3 - UV - UV - UV -Face 2122 -UV Count: 3 - UV - UV - UV -Face 2123 -UV Count: 3 - UV - UV - UV -Face 2124 -UV Count: 3 - UV - UV - UV -Face 2125 -UV Count: 3 - UV - UV - UV -Face 2126 -UV Count: 3 - UV - UV - UV -Face 2127 -UV Count: 3 - UV - UV - UV -Face 2128 -UV Count: 3 - UV - UV - UV -Face 2129 -UV Count: 3 - UV - UV - UV -Face 2130 -UV Count: 3 - UV - UV - UV -Face 2131 -UV Count: 3 - UV - UV - UV -Face 2132 -UV Count: 3 - UV - UV - UV -Face 2133 -UV Count: 3 - UV - UV - UV -Face 2134 -UV Count: 3 - UV - UV - UV -Face 2135 -UV Count: 3 - UV - UV - UV -Face 2136 -UV Count: 3 - UV - UV - UV -Face 2137 -UV Count: 3 - UV - UV - UV -Face 2138 -UV Count: 3 - UV - UV - UV -Face 2139 -UV Count: 3 - UV - UV - UV -Face 2140 -UV Count: 3 - UV - UV - UV -Face 2141 -UV Count: 3 - UV - UV - UV -Face 2142 -UV Count: 3 - UV - UV - UV -Face 2143 -UV Count: 3 - UV - UV - UV -Face 2144 -UV Count: 3 - UV - UV - UV -Face 2145 -UV Count: 3 - UV - UV - UV -Face 2146 -UV Count: 3 - UV - UV - UV -Face 2147 -UV Count: 3 - UV - UV - UV -Face 2148 -UV Count: 3 - UV - UV - UV -Face 2149 -UV Count: 3 - UV - UV - UV -Face 2150 -UV Count: 3 - UV - UV - UV -Face 2151 -UV Count: 3 - UV - UV - UV -Face 2152 -UV Count: 3 - UV - UV - UV -Face 2153 -UV Count: 3 - UV - UV - UV -Face 2154 -UV Count: 3 - UV - UV - UV -Face 2155 -UV Count: 3 - UV - UV - UV -Face 2156 -UV Count: 3 - UV - UV - UV -Face 2157 -UV Count: 3 - UV - UV - UV -Face 2158 -UV Count: 3 - UV - UV - UV -Face 2159 -UV Count: 3 - UV - UV - UV -Face 2160 -UV Count: 3 - UV - UV - UV -Face 2161 -UV Count: 3 - UV - UV - UV -Face 2162 -UV Count: 3 - UV - UV - UV -Face 2163 -UV Count: 3 - UV - UV - UV -Face 2164 -UV Count: 3 - UV - UV - UV -Face 2165 -UV Count: 3 - UV - UV - UV -Face 2166 -UV Count: 3 - UV - UV - UV -Face 2167 -UV Count: 3 - UV - UV - UV -Face 2168 -UV Count: 3 - UV - UV - UV -Face 2169 -UV Count: 3 - UV - UV - UV -Face 2170 -UV Count: 3 - UV - UV - UV -Face 2171 -UV Count: 3 - UV - UV - UV -Face 2172 -UV Count: 3 - UV - UV - UV -Face 2173 -UV Count: 3 - UV - UV - UV -Face 2174 -UV Count: 3 - UV - UV - UV -Face 2175 -UV Count: 3 - UV - UV - UV -Face 2176 -UV Count: 3 - UV - UV - UV -Face 2177 -UV Count: 3 - UV - UV - UV -Face 2178 -UV Count: 3 - UV - UV - UV -Face 2179 -UV Count: 3 - UV - UV - UV -Face 2180 -UV Count: 3 - UV - UV - UV -Face 2181 -UV Count: 3 - UV - UV - UV -Face 2182 -UV Count: 3 - UV - UV - UV -Face 2183 -UV Count: 3 - UV - UV - UV -Face 2184 -UV Count: 3 - UV - UV - UV -Face 2185 -UV Count: 3 - UV - UV - UV -Face 2186 -UV Count: 3 - UV - UV - UV -Face 2187 -UV Count: 3 - UV - UV - UV -Face 2188 -UV Count: 3 - UV - UV - UV -Face 2189 -UV Count: 3 - UV - UV - UV -Face 2190 -UV Count: 3 - UV - UV - UV -Face 2191 -UV Count: 3 - UV - UV - UV -Face 2192 -UV Count: 3 - UV - UV - UV -Face 2193 -UV Count: 3 - UV - UV - UV -Face 2194 -UV Count: 3 - UV - UV - UV -Face 2195 -UV Count: 3 - UV - UV - UV -Face 2196 -UV Count: 3 - UV - UV - UV -Face 2197 -UV Count: 3 - UV - UV - UV -Face 2198 -UV Count: 3 - UV - UV - UV -Face 2199 -UV Count: 3 - UV - UV - UV -Face 2200 -UV Count: 3 - UV - UV - UV -Face 2201 -UV Count: 3 - UV - UV - UV -Face 2202 -UV Count: 3 - UV - UV - UV -Face 2203 -UV Count: 3 - UV - UV - UV -Face 2204 -UV Count: 3 - UV - UV - UV -Face 2205 -UV Count: 3 - UV - UV - UV -Face 2206 -UV Count: 3 - UV - UV - UV -Face 2207 -UV Count: 3 - UV - UV - UV -Face 2208 -UV Count: 3 - UV - UV - UV -Face 2209 -UV Count: 3 - UV - UV - UV -Face 2210 -UV Count: 3 - UV - UV - UV -Face 2211 -UV Count: 3 - UV - UV - UV -Face 2212 -UV Count: 3 - UV - UV - UV -Face 2213 -UV Count: 3 - UV - UV - UV -Face 2214 -UV Count: 3 - UV - UV - UV -Face 2215 -UV Count: 3 - UV - UV - UV -Face 2216 -UV Count: 3 - UV - UV - UV -Face 2217 -UV Count: 3 - UV - UV - UV -Face 2218 -UV Count: 3 - UV - UV - UV -Face 2219 -UV Count: 3 - UV - UV - UV -Face 2220 -UV Count: 3 - UV - UV - UV -Face 2221 -UV Count: 3 - UV - UV - UV -Face 2222 -UV Count: 3 - UV - UV - UV -Face 2223 -UV Count: 3 - UV - UV - UV -Face 2224 -UV Count: 3 - UV - UV - UV -Face 2225 -UV Count: 3 - UV - UV - UV -Face 2226 -UV Count: 3 - UV - UV - UV -Face 2227 -UV Count: 3 - UV - UV - UV -Face 2228 -UV Count: 3 - UV - UV - UV -Face 2229 -UV Count: 3 - UV - UV - UV -Face 2230 -UV Count: 3 - UV - UV - UV -Face 2231 -UV Count: 3 - UV - UV - UV -Face 2232 -UV Count: 3 - UV - UV - UV -Face 2233 -UV Count: 3 - UV - UV - UV -Face 2234 -UV Count: 3 - UV - UV - UV -Face 2235 -UV Count: 3 - UV - UV - UV -Face 2236 -UV Count: 3 - UV - UV - UV -Face 2237 -UV Count: 3 - UV - UV - UV -Face 2238 -UV Count: 3 - UV - UV - UV -Face 2239 -UV Count: 3 - UV - UV - UV -Face 2240 -UV Count: 3 - UV - UV - UV -Face 2241 -UV Count: 3 - UV - UV - UV -Face 2242 -UV Count: 3 - UV - UV - UV -Face 2243 -UV Count: 3 - UV - UV - UV -Face 2244 -UV Count: 3 - UV - UV - UV -Face 2245 -UV Count: 3 - UV - UV - UV -Face 2246 -UV Count: 3 - UV - UV - UV -Face 2247 -UV Count: 3 - UV - UV - UV -Face 2248 -UV Count: 3 - UV - UV - UV -Face 2249 -UV Count: 3 - UV - UV - UV -Face 2250 -UV Count: 3 - UV - UV - UV -Face 2251 -UV Count: 3 - UV - UV - UV -Face 2252 -UV Count: 3 - UV - UV - UV -Face 2253 -UV Count: 3 - UV - UV - UV -Face 2254 -UV Count: 3 - UV - UV - UV -Face 2255 -UV Count: 3 - UV - UV - UV -Face 2256 -UV Count: 3 - UV - UV - UV -Face 2257 -UV Count: 3 - UV - UV - UV -Face 2258 -UV Count: 3 - UV - UV - UV -Face 2259 -UV Count: 3 - UV - UV - UV -Face 2260 -UV Count: 3 - UV - UV - UV -Face 2261 -UV Count: 3 - UV - UV - UV -Face 2262 -UV Count: 3 - UV - UV - UV -Face 2263 -UV Count: 3 - UV - UV - UV -Face 2264 -UV Count: 3 - UV - UV - UV -Face 2265 -UV Count: 3 - UV - UV - UV -Face 2266 -UV Count: 3 - UV - UV - UV -Face 2267 -UV Count: 3 - UV - UV - UV -Face 2268 -UV Count: 3 - UV - UV - UV -Face 2269 -UV Count: 3 - UV - UV - UV -Face 2270 -UV Count: 3 - UV - UV - UV -Face 2271 -UV Count: 3 - UV - UV - UV -Face 2272 -UV Count: 3 - UV - UV - UV -Face 2273 -UV Count: 3 - UV - UV - UV -Face 2274 -UV Count: 3 - UV - UV - UV -Face 2275 -UV Count: 3 - UV - UV - UV -Face 2276 -UV Count: 3 - UV - UV - UV -Face 2277 -UV Count: 3 - UV - UV - UV -Face 2278 -UV Count: 3 - UV - UV - UV -Face 2279 -UV Count: 3 - UV - UV - UV -Face 2280 -UV Count: 3 - UV - UV - UV -Face 2281 -UV Count: 3 - UV - UV - UV -Face 2282 -UV Count: 3 - UV - UV - UV -Face 2283 -UV Count: 3 - UV - UV - UV -Face 2284 -UV Count: 3 - UV - UV - UV -Face 2285 -UV Count: 3 - UV - UV - UV -Face 2286 -UV Count: 3 - UV - UV - UV -Face 2287 -UV Count: 3 - UV - UV - UV -Face 2288 -UV Count: 3 - UV - UV - UV -Face 2289 -UV Count: 3 - UV - UV - UV -Face 2290 -UV Count: 3 - UV - UV - UV -Face 2291 -UV Count: 3 - UV - UV - UV -Face 2292 -UV Count: 3 - UV - UV - UV -Face 2293 -UV Count: 3 - UV - UV - UV -Face 2294 -UV Count: 3 - UV - UV - UV -Face 2295 -UV Count: 3 - UV - UV - UV -Face 2296 -UV Count: 3 - UV - UV - UV -Face 2297 -UV Count: 3 - UV - UV - UV -Face 2298 -UV Count: 3 - UV - UV - UV -Face 2299 -UV Count: 3 - UV - UV - UV -Face 2300 -UV Count: 3 - UV - UV - UV -Face 2301 -UV Count: 3 - UV - UV - UV -Face 2302 -UV Count: 3 - UV - UV - UV -Face 2303 -UV Count: 3 - UV - UV - UV -Face 2304 -UV Count: 3 - UV - UV - UV -Face 2305 -UV Count: 3 - UV - UV - UV -Face 2306 -UV Count: 3 - UV - UV - UV -Face 2307 -UV Count: 3 - UV - UV - UV -Face 2308 -UV Count: 3 - UV - UV - UV -Face 2309 -UV Count: 3 - UV - UV - UV -Face 2310 -UV Count: 3 - UV - UV - UV -Face 2311 -UV Count: 3 - UV - UV - UV -Face 2312 -UV Count: 3 - UV - UV - UV -Face 2313 -UV Count: 3 - UV - UV - UV -Face 2314 -UV Count: 3 - UV - UV - UV -Face 2315 -UV Count: 3 - UV - UV - UV -Face 2316 -UV Count: 3 - UV - UV - UV -Face 2317 -UV Count: 3 - UV - UV - UV -Face 2318 -UV Count: 3 - UV - UV - UV -Face 2319 -UV Count: 3 - UV - UV - UV -Face 2320 -UV Count: 3 - UV - UV - UV -Face 2321 -UV Count: 3 - UV - UV - UV -Face 2322 -UV Count: 3 - UV - UV - UV -Face 2323 -UV Count: 3 - UV - UV - UV -Face 2324 -UV Count: 3 - UV - UV - UV -Face 2325 -UV Count: 3 - UV - UV - UV -Face 2326 -UV Count: 3 - UV - UV - UV -Face 2327 -UV Count: 3 - UV - UV - UV -Face 2328 -UV Count: 3 - UV - UV - UV -Face 2329 -UV Count: 3 - UV - UV - UV -Face 2330 -UV Count: 3 - UV - UV - UV -Face 2331 -UV Count: 3 - UV - UV - UV -Face 2332 -UV Count: 3 - UV - UV - UV -Face 2333 -UV Count: 3 - UV - UV - UV -Face 2334 -UV Count: 3 - UV - UV - UV -Face 2335 -UV Count: 3 - UV - UV - UV -Face 2336 -UV Count: 3 - UV - UV - UV -Face 2337 -UV Count: 3 - UV - UV - UV -Face 2338 -UV Count: 3 - UV - UV - UV -Face 2339 -UV Count: 3 - UV - UV - UV -Face 2340 -UV Count: 3 - UV - UV - UV -Face 2341 -UV Count: 3 - UV - UV - UV -Face 2342 -UV Count: 3 - UV - UV - UV -Face 2343 -UV Count: 3 - UV - UV - UV -Face 2344 -UV Count: 3 - UV - UV - UV -Face 2345 -UV Count: 3 - UV - UV - UV -Face 2346 -UV Count: 3 - UV - UV - UV -Face 2347 -UV Count: 3 - UV - UV - UV -Face 2348 -UV Count: 3 - UV - UV - UV -Face 2349 -UV Count: 3 - UV - UV - UV -Face 2350 -UV Count: 3 - UV - UV - UV -Face 2351 -UV Count: 3 - UV - UV - UV -Face 2352 -UV Count: 3 - UV - UV - UV -Face 2353 -UV Count: 3 - UV - UV - UV -Face 2354 -UV Count: 3 - UV - UV - UV -Face 2355 -UV Count: 3 - UV - UV - UV -Face 2356 -UV Count: 3 - UV - UV - UV -Face 2357 -UV Count: 3 - UV - UV - UV -Face 2358 -UV Count: 3 - UV - UV - UV -Face 2359 -UV Count: 3 - UV - UV - UV -Face 2360 -UV Count: 3 - UV - UV - UV -Face 2361 -UV Count: 3 - UV - UV - UV -Face 2362 -UV Count: 3 - UV - UV - UV -Face 2363 -UV Count: 3 - UV - UV - UV -Face 2364 -UV Count: 3 - UV - UV - UV -Face 2365 -UV Count: 3 - UV - UV - UV -Face 2366 -UV Count: 3 - UV - UV - UV -Face 2367 -UV Count: 3 - UV - UV - UV -Face 2368 -UV Count: 3 - UV - UV - UV -Face 2369 -UV Count: 3 - UV - UV - UV -Face 2370 -UV Count: 3 - UV - UV - UV -Face 2371 -UV Count: 3 - UV - UV - UV -Face 2372 -UV Count: 3 - UV - UV - UV -Face 2373 -UV Count: 3 - UV - UV - UV -Face 2374 -UV Count: 3 - UV - UV - UV -Face 2375 -UV Count: 3 - UV - UV - UV -Face 2376 -UV Count: 3 - UV - UV - UV -Face 2377 -UV Count: 3 - UV - UV - UV -Face 2378 -UV Count: 3 - UV - UV - UV -Face 2379 -UV Count: 3 - UV - UV - UV -Face 2380 -UV Count: 3 - UV - UV - UV -Face 2381 -UV Count: 3 - UV - UV - UV -Face 2382 -UV Count: 3 - UV - UV - UV -Face 2383 -UV Count: 3 - UV - UV - UV -Face 2384 -UV Count: 3 - UV - UV - UV -Face 2385 -UV Count: 3 - UV - UV - UV -Face 2386 -UV Count: 3 - UV - UV - UV -Face 2387 -UV Count: 3 - UV - UV - UV -Face 2388 -UV Count: 3 - UV - UV - UV -Face 2389 -UV Count: 3 - UV - UV - UV -Face 2390 -UV Count: 3 - UV - UV - UV -Face 2391 -UV Count: 3 - UV - UV - UV -Face 2392 -UV Count: 3 - UV - UV - UV -Face 2393 -UV Count: 3 - UV - UV - UV -Face 2394 -UV Count: 3 - UV - UV - UV -Face 2395 -UV Count: 3 - UV - UV - UV -Face 2396 -UV Count: 3 - UV - UV - UV -Face 2397 -UV Count: 3 - UV - UV - UV -Face 2398 -UV Count: 3 - UV - UV - UV -Face 2399 -UV Count: 3 - UV - UV - UV -Face 2400 -UV Count: 3 - UV - UV - UV -Face 2401 -UV Count: 3 - UV - UV - UV -Face 2402 -UV Count: 3 - UV - UV - UV -Face 2403 -UV Count: 3 - UV - UV - UV -Face 2404 -UV Count: 3 - UV - UV - UV -Face 2405 -UV Count: 3 - UV - UV - UV -Face 2406 -UV Count: 3 - UV - UV - UV -Face 2407 -UV Count: 3 - UV - UV - UV -Face 2408 -UV Count: 3 - UV - UV - UV -Face 2409 -UV Count: 3 - UV - UV - UV -Face 2410 -UV Count: 3 - UV - UV - UV -Face 2411 -UV Count: 3 - UV - UV - UV -Face 2412 -UV Count: 3 - UV - UV - UV -Face 2413 -UV Count: 3 - UV - UV - UV -Face 2414 -UV Count: 3 - UV - UV - UV -Face 2415 -UV Count: 3 - UV - UV - UV -Face 2416 -UV Count: 3 - UV - UV - UV -Face 2417 -UV Count: 3 - UV - UV - UV -Face 2418 -UV Count: 3 - UV - UV - UV -Face 2419 -UV Count: 3 - UV - UV - UV -Face 2420 -UV Count: 3 - UV - UV - UV -Face 2421 -UV Count: 3 - UV - UV - UV -Face 2422 -UV Count: 3 - UV - UV - UV -Face 2423 -UV Count: 3 - UV - UV - UV -Face 2424 -UV Count: 3 - UV - UV - UV -Face 2425 -UV Count: 3 - UV - UV - UV -Face 2426 -UV Count: 3 - UV - UV - UV -Face 2427 -UV Count: 3 - UV - UV - UV -Face 2428 -UV Count: 3 - UV - UV - UV -Face 2429 -UV Count: 3 - UV - UV - UV -Face 2430 -UV Count: 3 - UV - UV - UV -Face 2431 -UV Count: 3 - UV - UV - UV -Face 2432 -UV Count: 3 - UV - UV - UV -Face 2433 -UV Count: 3 - UV - UV - UV -Face 2434 -UV Count: 3 - UV - UV - UV -Face 2435 -UV Count: 3 - UV - UV - UV -Face 2436 -UV Count: 3 - UV - UV - UV -Face 2437 -UV Count: 3 - UV - UV - UV -Face 2438 -UV Count: 3 - UV - UV - UV -Face 2439 -UV Count: 3 - UV - UV - UV -Face 2440 -UV Count: 3 - UV - UV - UV -Face 2441 -UV Count: 3 - UV - UV - UV -Face 2442 -UV Count: 3 - UV - UV - UV -Face 2443 -UV Count: 3 - UV - UV - UV -Face 2444 -UV Count: 3 - UV - UV - UV -Face 2445 -UV Count: 3 - UV - UV - UV -Face 2446 -UV Count: 3 - UV - UV - UV -Face 2447 -UV Count: 3 - UV - UV - UV -Face 2448 -UV Count: 3 - UV - UV - UV -Face 2449 -UV Count: 3 - UV - UV - UV -Face 2450 -UV Count: 3 - UV - UV - UV -Face 2451 -UV Count: 3 - UV - UV - UV -Face 2452 -UV Count: 3 - UV - UV - UV -Face 2453 -UV Count: 3 - UV - UV - UV -Face 2454 -UV Count: 3 - UV - UV - UV -Face 2455 -UV Count: 3 - UV - UV - UV -Face 2456 -UV Count: 3 - UV - UV - UV -Face 2457 -UV Count: 3 - UV - UV - UV -Face 2458 -UV Count: 3 - UV - UV - UV -Face 2459 -UV Count: 3 - UV - UV - UV -Face 2460 -UV Count: 3 - UV - UV - UV -Face 2461 -UV Count: 3 - UV - UV - UV -Face 2462 -UV Count: 3 - UV - UV - UV -Face 2463 -UV Count: 3 - UV - UV - UV -Face 2464 -UV Count: 3 - UV - UV - UV -Face 2465 -UV Count: 3 - UV - UV - UV -Face 2466 -UV Count: 3 - UV - UV - UV -Face 2467 -UV Count: 3 - UV - UV - UV -Face 2468 -UV Count: 3 - UV - UV - UV -Face 2469 -UV Count: 3 - UV - UV - UV -Face 2470 -UV Count: 3 - UV - UV - UV -Face 2471 -UV Count: 3 - UV - UV - UV -Face 2472 -UV Count: 3 - UV - UV - UV -Face 2473 -UV Count: 3 - UV - UV - UV -Face 2474 -UV Count: 3 - UV - UV - UV -Face 2475 -UV Count: 3 - UV - UV - UV -Face 2476 -UV Count: 3 - UV - UV - UV -Face 2477 -UV Count: 3 - UV - UV - UV -Face 2478 -UV Count: 3 - UV - UV - UV -Face 2479 -UV Count: 3 - UV - UV - UV -Face 2480 -UV Count: 3 - UV - UV - UV -Face 2481 -UV Count: 3 - UV - UV - UV -Face 2482 -UV Count: 3 - UV - UV - UV -Face 2483 -UV Count: 3 - UV - UV - UV -Face 2484 -UV Count: 3 - UV - UV - UV -Face 2485 -UV Count: 3 - UV - UV - UV -Face 2486 -UV Count: 3 - UV - UV - UV -Face 2487 -UV Count: 3 - UV - UV - UV -Face 2488 -UV Count: 3 - UV - UV - UV -Face 2489 -UV Count: 3 - UV - UV - UV -Face 2490 -UV Count: 3 - UV - UV - UV -Face 2491 -UV Count: 3 - UV - UV - UV -Face 2492 -UV Count: 3 - UV - UV - UV -Face 2493 -UV Count: 3 - UV - UV - UV -Face 2494 -UV Count: 3 - UV - UV - UV -Face 2495 -UV Count: 3 - UV - UV - UV -Face 2496 -UV Count: 3 - UV - UV - UV -Face 2497 -UV Count: 3 - UV - UV - UV -Face 2498 -UV Count: 3 - UV - UV - UV -Face 2499 -UV Count: 3 - UV - UV - UV -Face 2500 -UV Count: 3 - UV - UV - UV -Face 2501 -UV Count: 3 - UV - UV - UV -Face 2502 -UV Count: 3 - UV - UV - UV -Face 2503 -UV Count: 3 - UV - UV - UV -Face 2504 -UV Count: 3 - UV - UV - UV -Face 2505 -UV Count: 3 - UV - UV - UV -Face 2506 -UV Count: 3 - UV - UV - UV -Face 2507 -UV Count: 3 - UV - UV - UV -Face 2508 -UV Count: 3 - UV - UV - UV -Face 2509 -UV Count: 3 - UV - UV - UV -Face 2510 -UV Count: 3 - UV - UV - UV -Face 2511 -UV Count: 3 - UV - UV - UV -Face 2512 -UV Count: 3 - UV - UV - UV -Face 2513 -UV Count: 3 - UV - UV - UV -Face 2514 -UV Count: 3 - UV - UV - UV -Face 2515 -UV Count: 3 - UV - UV - UV -Face 2516 -UV Count: 3 - UV - UV - UV -Face 2517 -UV Count: 3 - UV - UV - UV -Face 2518 -UV Count: 3 - UV - UV - UV -Face 2519 -UV Count: 3 - UV - UV - UV -Face 2520 -UV Count: 3 - UV - UV - UV -Face 2521 -UV Count: 3 - UV - UV - UV -Face 2522 -UV Count: 3 - UV - UV - UV -Face 2523 -UV Count: 3 - UV - UV - UV -Face 2524 -UV Count: 3 - UV - UV - UV -Face 2525 -UV Count: 3 - UV - UV - UV -Face 2526 -UV Count: 3 - UV - UV - UV -Face 2527 -UV Count: 3 - UV - UV - UV -Face 2528 -UV Count: 3 - UV - UV - UV -Face 2529 -UV Count: 3 - UV - UV - UV -Face 2530 -UV Count: 3 - UV - UV - UV -Face 2531 -UV Count: 3 - UV - UV - UV -Face 2532 -UV Count: 3 - UV - UV - UV -Face 2533 -UV Count: 3 - UV - UV - UV -Face 2534 -UV Count: 3 - UV - UV - UV -Face 2535 -UV Count: 3 - UV - UV - UV -Face 2536 -UV Count: 3 - UV - UV - UV -Face 2537 -UV Count: 3 - UV - UV - UV -Face 2538 -UV Count: 3 - UV - UV - UV -Face 2539 -UV Count: 3 - UV - UV - UV -Face 2540 -UV Count: 3 - UV - UV - UV -Face 2541 -UV Count: 3 - UV - UV - UV -Face 2542 -UV Count: 3 - UV - UV - UV -Face 2543 -UV Count: 3 - UV - UV - UV -Face 2544 -UV Count: 3 - UV - UV - UV -Face 2545 -UV Count: 3 - UV - UV - UV -Face 2546 -UV Count: 3 - UV - UV - UV -Face 2547 -UV Count: 3 - UV - UV - UV -Face 2548 -UV Count: 3 - UV - UV - UV -Face 2549 -UV Count: 3 - UV - UV - UV -Face 2550 -UV Count: 3 - UV - UV - UV -Face 2551 -UV Count: 3 - UV - UV - UV -Face 2552 -UV Count: 3 - UV - UV - UV -Face 2553 -UV Count: 3 - UV - UV - UV -Face 2554 -UV Count: 3 - UV - UV - UV -Face 2555 -UV Count: 3 - UV - UV - UV -Face 2556 -UV Count: 3 - UV - UV - UV -Face 2557 -UV Count: 3 - UV - UV - UV -Face 2558 -UV Count: 3 - UV - UV - UV -Face 2559 -UV Count: 3 - UV - UV - UV -Face 2560 -UV Count: 3 - UV - UV - UV -Face 2561 -UV Count: 3 - UV - UV - UV -Face 2562 -UV Count: 3 - UV - UV - UV -Face 2563 -UV Count: 3 - UV - UV - UV -Face 2564 -UV Count: 3 - UV - UV - UV -Face 2565 -UV Count: 3 - UV - UV - UV -Face 2566 -UV Count: 3 - UV - UV - UV -Face 2567 -UV Count: 3 - UV - UV - UV -Face 2568 -UV Count: 3 - UV - UV - UV -Face 2569 -UV Count: 3 - UV - UV - UV -Face 2570 -UV Count: 3 - UV - UV - UV -Face 2571 -UV Count: 3 - UV - UV - UV -Face 2572 -UV Count: 3 - UV - UV - UV -Face 2573 -UV Count: 3 - UV - UV - UV -Face 2574 -UV Count: 3 - UV - UV - UV -Face 2575 -UV Count: 3 - UV - UV - UV -Face 2576 -UV Count: 3 - UV - UV - UV -Face 2577 -UV Count: 3 - UV - UV - UV -Face 2578 -UV Count: 3 - UV - UV - UV -Face 2579 -UV Count: 3 - UV - UV - UV -Face 2580 -UV Count: 3 - UV - UV - UV -Face 2581 -UV Count: 3 - UV - UV - UV -Face 2582 -UV Count: 3 - UV - UV - UV -Face 2583 -UV Count: 3 - UV - UV - UV -Face 2584 -UV Count: 3 - UV - UV - UV -Face 2585 -UV Count: 3 - UV - UV - UV -Face 2586 -UV Count: 3 - UV - UV - UV -Face 2587 -UV Count: 3 - UV - UV - UV -Face 2588 -UV Count: 3 - UV - UV - UV -Face 2589 -UV Count: 3 - UV - UV - UV -Face 2590 -UV Count: 3 - UV - UV - UV -Face 2591 -UV Count: 3 - UV - UV - UV -Face 2592 -UV Count: 3 - UV - UV - UV -Face 2593 -UV Count: 3 - UV - UV - UV -Face 2594 -UV Count: 3 - UV - UV - UV -Face 2595 -UV Count: 3 - UV - UV - UV -Face 2596 -UV Count: 3 - UV - UV - UV -Face 2597 -UV Count: 3 - UV - UV - UV -Face 2598 -UV Count: 3 - UV - UV - UV -Face 2599 -UV Count: 3 - UV - UV - UV -Face 2600 -UV Count: 3 - UV - UV - UV -Face 2601 -UV Count: 3 - UV - UV - UV -Face 2602 -UV Count: 3 - UV - UV - UV -Face 2603 -UV Count: 3 - UV - UV - UV -Face 2604 -UV Count: 3 - UV - UV - UV -Face 2605 -UV Count: 3 - UV - UV - UV -Face 2606 -UV Count: 3 - UV - UV - UV -Face 2607 -UV Count: 3 - UV - UV - UV -Face 2608 -UV Count: 3 - UV - UV - UV -Face 2609 -UV Count: 3 - UV - UV - UV -Face 2610 -UV Count: 3 - UV - UV - UV -Face 2611 -UV Count: 3 - UV - UV - UV -Face 2612 -UV Count: 3 - UV - UV - UV -Face 2613 -UV Count: 3 - UV - UV - UV -Face 2614 -UV Count: 3 - UV - UV - UV -Face 2615 -UV Count: 3 - UV - UV - UV -Face 2616 -UV Count: 3 - UV - UV - UV -Face 2617 -UV Count: 3 - UV - UV - UV -Face 2618 -UV Count: 3 - UV - UV - UV -Face 2619 -UV Count: 3 - UV - UV - UV -Face 2620 -UV Count: 3 - UV - UV - UV -Face 2621 -UV Count: 3 - UV - UV - UV -Face 2622 -UV Count: 3 - UV - UV - UV -Face 2623 -UV Count: 3 - UV - UV - UV -Face 2624 -UV Count: 3 - UV - UV - UV -Face 2625 -UV Count: 3 - UV - UV - UV -Face 2626 -UV Count: 3 - UV - UV - UV -Face 2627 -UV Count: 3 - UV - UV - UV -Face 2628 -UV Count: 3 - UV - UV - UV -Face 2629 -UV Count: 3 - UV - UV - UV -Face 2630 -UV Count: 3 - UV - UV - UV -Face 2631 -UV Count: 3 - UV - UV - UV -Face 2632 -UV Count: 3 - UV - UV - UV -Face 2633 -UV Count: 3 - UV - UV - UV -Face 2634 -UV Count: 3 - UV - UV - UV -Face 2635 -UV Count: 3 - UV - UV - UV -Face 2636 -UV Count: 3 - UV - UV - UV -Face 2637 -UV Count: 3 - UV - UV - UV -Face 2638 -UV Count: 3 - UV - UV - UV -Face 2639 -UV Count: 3 - UV - UV - UV -Face 2640 -UV Count: 3 - UV - UV - UV -Face 2641 -UV Count: 3 - UV - UV - UV -Face 2642 -UV Count: 3 - UV - UV - UV -Face 2643 -UV Count: 3 - UV - UV - UV -Face 2644 -UV Count: 3 - UV - UV - UV -Face 2645 -UV Count: 3 - UV - UV - UV -Face 2646 -UV Count: 3 - UV - UV - UV -Face 2647 -UV Count: 3 - UV - UV - UV -Face 2648 -UV Count: 3 - UV - UV - UV -Face 2649 -UV Count: 3 - UV - UV - UV -Face 2650 -UV Count: 3 - UV - UV - UV -Face 2651 -UV Count: 3 - UV - UV - UV -Face 2652 -UV Count: 3 - UV - UV - UV -Face 2653 -UV Count: 3 - UV - UV - UV -Face 2654 -UV Count: 3 - UV - UV - UV -Face 2655 -UV Count: 3 - UV - UV - UV -Face 2656 -UV Count: 3 - UV - UV - UV -Face 2657 -UV Count: 3 - UV - UV - UV -Face 2658 -UV Count: 3 - UV - UV - UV -Face 2659 -UV Count: 3 - UV - UV - UV -Face 2660 -UV Count: 3 - UV - UV - UV -Face 2661 -UV Count: 3 - UV - UV - UV -Face 2662 -UV Count: 3 - UV - UV - UV -Face 2663 -UV Count: 3 - UV - UV - UV -Face 2664 -UV Count: 3 - UV - UV - UV -Face 2665 -UV Count: 3 - UV - UV - UV -Face 2666 -UV Count: 3 - UV - UV - UV -Face 2667 -UV Count: 3 - UV - UV - UV -Face 2668 -UV Count: 3 - UV - UV - UV -Face 2669 -UV Count: 3 - UV - UV - UV -Face 2670 -UV Count: 3 - UV - UV - UV -Face 2671 -UV Count: 3 - UV - UV - UV -Face 2672 -UV Count: 3 - UV - UV - UV -Face 2673 -UV Count: 3 - UV - UV - UV -Face 2674 -UV Count: 3 - UV - UV - UV -Face 2675 -UV Count: 3 - UV - UV - UV -Face 2676 -UV Count: 3 - UV - UV - UV -Face 2677 -UV Count: 3 - UV - UV - UV -Face 2678 -UV Count: 3 - UV - UV - UV -Face 2679 -UV Count: 3 - UV - UV - UV -Face 2680 -UV Count: 3 - UV - UV - UV -Face 2681 -UV Count: 3 - UV - UV - UV -Face 2682 -UV Count: 3 - UV - UV - UV -Face 2683 -UV Count: 3 - UV - UV - UV -Face 2684 -UV Count: 3 - UV - UV - UV -Face 2685 -UV Count: 3 - UV - UV - UV -Face 2686 -UV Count: 3 - UV - UV - UV -Face 2687 -UV Count: 3 - UV - UV - UV -Face 2688 -UV Count: 3 - UV - UV - UV -Face 2689 -UV Count: 3 - UV - UV - UV -Face 2690 -UV Count: 3 - UV - UV - UV -Face 2691 -UV Count: 3 - UV - UV - UV -Face 2692 -UV Count: 3 - UV - UV - UV -Face 2693 -UV Count: 3 - UV - UV - UV -Face 2694 -UV Count: 3 - UV - UV - UV -Face 2695 -UV Count: 3 - UV - UV - UV -Face 2696 -UV Count: 3 - UV - UV - UV -Face 2697 -UV Count: 3 - UV - UV - UV -Face 2698 -UV Count: 3 - UV - UV - UV -Face 2699 -UV Count: 3 - UV - UV - UV -Face 2700 -UV Count: 3 - UV - UV - UV -Face 2701 -UV Count: 3 - UV - UV - UV -Face 2702 -UV Count: 3 - UV - UV - UV -Face 2703 -UV Count: 3 - UV - UV - UV -Face 2704 -UV Count: 3 - UV - UV - UV -Face 2705 -UV Count: 3 - UV - UV - UV -Face 2706 -UV Count: 3 - UV - UV - UV -Face 2707 -UV Count: 3 - UV - UV - UV -Face 2708 -UV Count: 3 - UV - UV - UV -Face 2709 -UV Count: 3 - UV - UV - UV -Face 2710 -UV Count: 3 - UV - UV - UV -Face 2711 -UV Count: 3 - UV - UV - UV -Face 2712 -UV Count: 3 - UV - UV - UV -Face 2713 -UV Count: 3 - UV - UV - UV -Face 2714 -UV Count: 3 - UV - UV - UV -Face 2715 -UV Count: 3 - UV - UV - UV -Face 2716 -UV Count: 3 - UV - UV - UV -Face 2717 -UV Count: 3 - UV - UV - UV -Face 2718 -UV Count: 3 - UV - UV - UV -Face 2719 -UV Count: 3 - UV - UV - UV -Face 2720 -UV Count: 3 - UV - UV - UV -Face 2721 -UV Count: 3 - UV - UV - UV -Face 2722 -UV Count: 3 - UV - UV - UV -Face 2723 -UV Count: 3 - UV - UV - UV -Face 2724 -UV Count: 3 - UV - UV - UV -Face 2725 -UV Count: 3 - UV - UV - UV -Face 2726 -UV Count: 3 - UV - UV - UV -Face 2727 -UV Count: 3 - UV - UV - UV -Face 2728 -UV Count: 3 - UV - UV - UV -Face 2729 -UV Count: 3 - UV - UV - UV -Face 2730 -UV Count: 3 - UV - UV - UV -Face 2731 -UV Count: 3 - UV - UV - UV -Face 2732 -UV Count: 3 - UV - UV - UV -Face 2733 -UV Count: 3 - UV - UV - UV -Face 2734 -UV Count: 3 - UV - UV - UV -Face 2735 -UV Count: 3 - UV - UV - UV -Face 2736 -UV Count: 3 - UV - UV - UV -Face 2737 -UV Count: 3 - UV - UV - UV -Face 2738 -UV Count: 3 - UV - UV - UV -Face 2739 -UV Count: 3 - UV - UV - UV -Face 2740 -UV Count: 3 - UV - UV - UV -Face 2741 -UV Count: 3 - UV - UV - UV -Face 2742 -UV Count: 3 - UV - UV - UV -Face 2743 -UV Count: 3 - UV - UV - UV -Face 2744 -UV Count: 3 - UV - UV - UV -Face 2745 -UV Count: 3 - UV - UV - UV -Face 2746 -UV Count: 3 - UV - UV - UV -Face 2747 -UV Count: 3 - UV - UV - UV -Face 2748 -UV Count: 3 - UV - UV - UV -Face 2749 -UV Count: 3 - UV - UV - UV -Face 2750 -UV Count: 3 - UV - UV - UV -Face 2751 -UV Count: 3 - UV - UV - UV -Face 2752 -UV Count: 3 - UV - UV - UV -Face 2753 -UV Count: 3 - UV - UV - UV -Face 2754 -UV Count: 3 - UV - UV - UV -Face 2755 -UV Count: 3 - UV - UV - UV -Face 2756 -UV Count: 3 - UV - UV - UV -Face 2757 -UV Count: 3 - UV - UV - UV -Face 2758 -UV Count: 3 - UV - UV - UV -Face 2759 -UV Count: 3 - UV - UV - UV -Face 2760 -UV Count: 3 - UV - UV - UV -Face 2761 -UV Count: 3 - UV - UV - UV -Face 2762 -UV Count: 3 - UV - UV - UV -Face 2763 -UV Count: 3 - UV - UV - UV -Face 2764 -UV Count: 3 - UV - UV - UV -Face 2765 -UV Count: 3 - UV - UV - UV -Face 2766 -UV Count: 3 - UV - UV - UV -Face 2767 -UV Count: 3 - UV - UV - UV -Face 2768 -UV Count: 3 - UV - UV - UV -Face 2769 -UV Count: 3 - UV - UV - UV -Face 2770 -UV Count: 3 - UV - UV - UV -Face 2771 -UV Count: 3 - UV - UV - UV -Face 2772 -UV Count: 3 - UV - UV - UV -Face 2773 -UV Count: 3 - UV - UV - UV -Face 2774 -UV Count: 3 - UV - UV - UV -Face 2775 -UV Count: 3 - UV - UV - UV -Face 2776 -UV Count: 3 - UV - UV - UV -Face 2777 -UV Count: 3 - UV - UV - UV -Face 2778 -UV Count: 3 - UV - UV - UV -Face 2779 -UV Count: 3 - UV - UV - UV -Face 2780 -UV Count: 3 - UV - UV - UV -Face 2781 -UV Count: 3 - UV - UV - UV -Face 2782 -UV Count: 3 - UV - UV - UV -Face 2783 -UV Count: 3 - UV - UV - UV -Face 2784 -UV Count: 3 - UV - UV - UV -Face 2785 -UV Count: 3 - UV - UV - UV -Face 2786 -UV Count: 3 - UV - UV - UV -Face 2787 -UV Count: 3 - UV - UV - UV -Face 2788 -UV Count: 3 - UV - UV - UV -Face 2789 -UV Count: 3 - UV - UV - UV -Face 2790 -UV Count: 3 - UV - UV - UV -Face 2791 -UV Count: 3 - UV - UV - UV -Face 2792 -UV Count: 3 - UV - UV - UV -Face 2793 -UV Count: 3 - UV - UV - UV -Face 2794 -UV Count: 3 - UV - UV - UV -Face 2795 -UV Count: 3 - UV - UV - UV -Face 2796 -UV Count: 3 - UV - UV - UV -Face 2797 -UV Count: 3 - UV - UV - UV -Face 2798 -UV Count: 3 - UV - UV - UV -Face 2799 -UV Count: 3 - UV - UV - UV -Face 2800 -UV Count: 3 - UV - UV - UV -Face 2801 -UV Count: 3 - UV - UV - UV -Face 2802 -UV Count: 3 - UV - UV - UV -Face 2803 -UV Count: 3 - UV - UV - UV -Face 2804 -UV Count: 3 - UV - UV - UV -Face 2805 -UV Count: 3 - UV - UV - UV -Face 2806 -UV Count: 3 - UV - UV - UV -Face 2807 -UV Count: 3 - UV - UV - UV -Face 2808 -UV Count: 3 - UV - UV - UV -Face 2809 -UV Count: 3 - UV - UV - UV -Face 2810 -UV Count: 3 - UV - UV - UV -Face 2811 -UV Count: 3 - UV - UV - UV -Face 2812 -UV Count: 3 - UV - UV - UV -Face 2813 -UV Count: 3 - UV - UV - UV -Face 2814 -UV Count: 3 - UV - UV - UV -Face 2815 -UV Count: 3 - UV - UV - UV -Face 2816 -UV Count: 3 - UV - UV - UV -Face 2817 -UV Count: 3 - UV - UV - UV -Face 2818 -UV Count: 3 - UV - UV - UV -Face 2819 -UV Count: 3 - UV - UV - UV -Face 2820 -UV Count: 3 - UV - UV - UV -Face 2821 -UV Count: 3 - UV - UV - UV -Face 2822 -UV Count: 3 - UV - UV - UV -Face 2823 -UV Count: 3 - UV - UV - UV -Face 2824 -UV Count: 3 - UV - UV - UV -Face 2825 -UV Count: 3 - UV - UV - UV -Face 2826 -UV Count: 3 - UV - UV - UV -Face 2827 -UV Count: 3 - UV - UV - UV -Face 2828 -UV Count: 3 - UV - UV - UV -Face 2829 -UV Count: 3 - UV - UV - UV -Face 2830 -UV Count: 3 - UV - UV - UV -Face 2831 -UV Count: 3 - UV - UV - UV -Face 2832 -UV Count: 3 - UV - UV - UV -Face 2833 -UV Count: 3 - UV - UV - UV -Face 2834 -UV Count: 3 - UV - UV - UV -Face 2835 -UV Count: 3 - UV - UV - UV -Face 2836 -UV Count: 3 - UV - UV - UV -Face 2837 -UV Count: 3 - UV - UV - UV -Face 2838 -UV Count: 3 - UV - UV - UV -Face 2839 -UV Count: 3 - UV - UV - UV -Face 2840 -UV Count: 3 - UV - UV - UV -Face 2841 -UV Count: 3 - UV - UV - UV -Face 2842 -UV Count: 3 - UV - UV - UV -Face 2843 -UV Count: 3 - UV - UV - UV -Face 2844 -UV Count: 3 - UV - UV - UV -Face 2845 -UV Count: 3 - UV - UV - UV -Face 2846 -UV Count: 3 - UV - UV - UV -Face 2847 -UV Count: 3 - UV - UV - UV -Face 2848 -UV Count: 3 - UV - UV - UV -Face 2849 -UV Count: 3 - UV - UV - UV -Face 2850 -UV Count: 3 - UV - UV - UV -Face 2851 -UV Count: 3 - UV - UV - UV -Face 2852 -UV Count: 3 - UV - UV - UV -Face 2853 -UV Count: 3 - UV - UV - UV -Face 2854 -UV Count: 3 - UV - UV - UV -Face 2855 -UV Count: 3 - UV - UV - UV -Face 2856 -UV Count: 3 - UV - UV - UV -Face 2857 -UV Count: 3 - UV - UV - UV -Face 2858 -UV Count: 3 - UV - UV - UV -Face 2859 -UV Count: 3 - UV - UV - UV -Face 2860 -UV Count: 3 - UV - UV - UV -Face 2861 -UV Count: 3 - UV - UV - UV -Face 2862 -UV Count: 3 - UV - UV - UV -Face 2863 -UV Count: 3 - UV - UV - UV -Face 2864 -UV Count: 3 - UV - UV - UV -Face 2865 -UV Count: 3 - UV - UV - UV -Face 2866 -UV Count: 3 - UV - UV - UV -Face 2867 -UV Count: 3 - UV - UV - UV -Face 2868 -UV Count: 3 - UV - UV - UV -Face 2869 -UV Count: 3 - UV - UV - UV -Face 2870 -UV Count: 3 - UV - UV - UV -Face 2871 -UV Count: 3 - UV - UV - UV -Face 2872 -UV Count: 3 - UV - UV - UV -Face 2873 -UV Count: 3 - UV - UV - UV -Face 2874 -UV Count: 3 - UV - UV - UV -Face 2875 -UV Count: 3 - UV - UV - UV -Face 2876 -UV Count: 3 - UV - UV - UV -Face 2877 -UV Count: 3 - UV - UV - UV -Face 2878 -UV Count: 3 - UV - UV - UV -Face 2879 -UV Count: 3 - UV - UV - UV -Face 2880 -UV Count: 3 - UV - UV - UV -Face 2881 -UV Count: 3 - UV - UV - UV -Face 2882 -UV Count: 3 - UV - UV - UV -Face 2883 -UV Count: 3 - UV - UV - UV -Face 2884 -UV Count: 3 - UV - UV - UV -Face 2885 -UV Count: 3 - UV - UV - UV -Face 2886 -UV Count: 3 - UV - UV - UV -Face 2887 -UV Count: 3 - UV - UV - UV -Face 2888 -UV Count: 3 - UV - UV - UV -Face 2889 -UV Count: 3 - UV - UV - UV -Face 2890 -UV Count: 3 - UV - UV - UV -Face 2891 -UV Count: 3 - UV - UV - UV -Face 2892 -UV Count: 3 - UV - UV - UV -Face 2893 -UV Count: 3 - UV - UV - UV -Face 2894 -UV Count: 3 - UV - UV - UV -Face 2895 -UV Count: 3 - UV - UV - UV -Face 2896 -UV Count: 3 - UV - UV - UV -Face 2897 -UV Count: 3 - UV - UV - UV -Face 2898 -UV Count: 3 - UV - UV - UV -Face 2899 -UV Count: 3 - UV - UV - UV -Face 2900 -UV Count: 3 - UV - UV - UV -Face 2901 -UV Count: 3 - UV - UV - UV -Face 2902 -UV Count: 3 - UV - UV - UV -Face 2903 -UV Count: 3 - UV - UV - UV -Face 2904 -UV Count: 3 - UV - UV - UV -Face 2905 -UV Count: 3 - UV - UV - UV -Face 2906 -UV Count: 3 - UV - UV - UV -Face 2907 -UV Count: 3 - UV - UV - UV -Face 2908 -UV Count: 3 - UV - UV - UV -Face 2909 -UV Count: 3 - UV - UV - UV -Face 2910 -UV Count: 3 - UV - UV - UV -Face 2911 -UV Count: 3 - UV - UV - UV -Face 2912 -UV Count: 3 - UV - UV - UV -Face 2913 -UV Count: 3 - UV - UV - UV -Face 2914 -UV Count: 3 - UV - UV - UV -Face 2915 -UV Count: 3 - UV - UV - UV -Face 2916 -UV Count: 3 - UV - UV - UV -Face 2917 -UV Count: 3 - UV - UV - UV -Face 2918 -UV Count: 3 - UV - UV - UV -Face 2919 -UV Count: 3 - UV - UV - UV -Face 2920 -UV Count: 3 - UV - UV - UV -Face 2921 -UV Count: 3 - UV - UV - UV -Face 2922 -UV Count: 3 - UV - UV - UV -Face 2923 -UV Count: 3 - UV - UV - UV -Face 2924 -UV Count: 3 - UV - UV - UV -Face 2925 -UV Count: 3 - UV - UV - UV -Face 2926 -UV Count: 3 - UV - UV - UV -Face 2927 -UV Count: 3 - UV - UV - UV -Face 2928 -UV Count: 3 - UV - UV - UV -Face 2929 -UV Count: 3 - UV - UV - UV -Face 2930 -UV Count: 3 - UV - UV - UV -Face 2931 -UV Count: 3 - UV - UV - UV -Face 2932 -UV Count: 3 - UV - UV - UV -Face 2933 -UV Count: 3 - UV - UV - UV -Face 2934 -UV Count: 3 - UV - UV - UV -Face 2935 -UV Count: 3 - UV - UV - UV -Face 2936 -UV Count: 3 - UV - UV - UV -Face 2937 -UV Count: 3 - UV - UV - UV -Face 2938 -UV Count: 3 - UV - UV - UV -Face 2939 -UV Count: 3 - UV - UV - UV -Face 2940 -UV Count: 3 - UV - UV - UV -Face 2941 -UV Count: 3 - UV - UV - UV -Face 2942 -UV Count: 3 - UV - UV - UV -Face 2943 -UV Count: 3 - UV - UV - UV -Face 2944 -UV Count: 3 - UV - UV - UV -Face 2945 -UV Count: 3 - UV - UV - UV -Face 2946 -UV Count: 3 - UV - UV - UV -Face 2947 -UV Count: 3 - UV - UV - UV -Face 2948 -UV Count: 3 - UV - UV - UV -Face 2949 -UV Count: 3 - UV - UV - UV -Face 2950 -UV Count: 3 - UV - UV - UV -Face 2951 -UV Count: 3 - UV - UV - UV -Face 2952 -UV Count: 3 - UV - UV - UV -Face 2953 -UV Count: 3 - UV - UV - UV -Face 2954 -UV Count: 3 - UV - UV - UV -Face 2955 -UV Count: 3 - UV - UV - UV -Face 2956 -UV Count: 3 - UV - UV - UV -Face 2957 -UV Count: 3 - UV - UV - UV -Face 2958 -UV Count: 3 - UV - UV - UV -Face 2959 -UV Count: 3 - UV - UV - UV -Face 2960 -UV Count: 3 - UV - UV - UV -Face 2961 -UV Count: 3 - UV - UV - UV -Face 2962 -UV Count: 3 - UV - UV - UV -Face 2963 -UV Count: 3 - UV - UV - UV -Face 2964 -UV Count: 3 - UV - UV - UV -Face 2965 -UV Count: 3 - UV - UV - UV -Face 2966 -UV Count: 3 - UV - UV - UV -Face 2967 -UV Count: 3 - UV - UV - UV -Face 2968 -UV Count: 3 - UV - UV - UV -Face 2969 -UV Count: 3 - UV - UV - UV -Face 2970 -UV Count: 3 - UV - UV - UV -Face 2971 -UV Count: 3 - UV - UV - UV -Face 2972 -UV Count: 3 - UV - UV - UV -Face 2973 -UV Count: 3 - UV - UV - UV -Face 2974 -UV Count: 3 - UV - UV - UV -Face 2975 -UV Count: 3 - UV - UV - UV -Face 2976 -UV Count: 3 - UV - UV - UV -Face 2977 -UV Count: 3 - UV - UV - UV -Face 2978 -UV Count: 3 - UV - UV - UV -Face 2979 -UV Count: 3 - UV - UV - UV -Face 2980 -UV Count: 3 - UV - UV - UV -Face 2981 -UV Count: 3 - UV - UV - UV -Face 2982 -UV Count: 3 - UV - UV - UV -Face 2983 -UV Count: 3 - UV - UV - UV -Face 2984 -UV Count: 3 - UV - UV - UV -Face 2985 -UV Count: 3 - UV - UV - UV -Face 2986 -UV Count: 3 - UV - UV - UV -Face 2987 -UV Count: 3 - UV - UV - UV -Face 2988 -UV Count: 3 - UV - UV - UV -Face 2989 -UV Count: 3 - UV - UV - UV -Face 2990 -UV Count: 3 - UV - UV - UV -Face 2991 -UV Count: 3 - UV - UV - UV -Face 2992 -UV Count: 3 - UV - UV - UV -Face 2993 -UV Count: 3 - UV - UV - UV -Face 2994 -UV Count: 3 - UV - UV - UV -Face 2995 -UV Count: 3 - UV - UV - UV -Face 2996 -UV Count: 3 - UV - UV - UV -Face 2997 -UV Count: 3 - UV - UV - UV -Face 2998 -UV Count: 3 - UV - UV - UV -Face 2999 -UV Count: 3 - UV - UV - UV -Face 3000 -UV Count: 3 - UV - UV - UV -Face 3001 -UV Count: 3 - UV - UV - UV -Face 3002 -UV Count: 3 - UV - UV - UV -Face 3003 -UV Count: 3 - UV - UV - UV -Face 3004 -UV Count: 3 - UV - UV - UV -Face 3005 -UV Count: 3 - UV - UV - UV -Face 3006 -UV Count: 3 - UV - UV - UV -Face 3007 -UV Count: 3 - UV - UV - UV -Face 3008 -UV Count: 3 - UV - UV - UV -Face 3009 -UV Count: 3 - UV - UV - UV -Face 3010 -UV Count: 3 - UV - UV - UV -Face 3011 -UV Count: 3 - UV - UV - UV -Face 3012 -UV Count: 3 - UV - UV - UV -Face 3013 -UV Count: 3 - UV - UV - UV -Face 3014 -UV Count: 3 - UV - UV - UV -Face 3015 -UV Count: 3 - UV - UV - UV -Face 3016 -UV Count: 3 - UV - UV - UV -Face 3017 -UV Count: 3 - UV - UV - UV -Face 3018 -UV Count: 3 - UV - UV - UV -Face 3019 -UV Count: 3 - UV - UV - UV -Face 3020 -UV Count: 3 - UV - UV - UV -Face 3021 -UV Count: 3 - UV - UV - UV -Face 3022 -UV Count: 3 - UV - UV - UV -Face 3023 -UV Count: 3 - UV - UV - UV -Face 3024 -UV Count: 3 - UV - UV - UV -Face 3025 -UV Count: 3 - UV - UV - UV -Face 3026 -UV Count: 3 - UV - UV - UV -Face 3027 -UV Count: 3 - UV - UV - UV -Face 3028 -UV Count: 3 - UV - UV - UV -Face 3029 -UV Count: 3 - UV - UV - UV -Face 3030 -UV Count: 3 - UV - UV - UV -Face 3031 -UV Count: 3 - UV - UV - UV -Face 3032 -UV Count: 3 - UV - UV - UV -Face 3033 -UV Count: 3 - UV - UV - UV -Face 3034 -UV Count: 3 - UV - UV - UV -Face 3035 -UV Count: 3 - UV - UV - UV -Face 3036 -UV Count: 3 - UV - UV - UV -Face 3037 -UV Count: 3 - UV - UV - UV -Face 3038 -UV Count: 3 - UV - UV - UV -Face 3039 -UV Count: 3 - UV - UV - UV -Face 3040 -UV Count: 3 - UV - UV - UV -Face 3041 -UV Count: 3 - UV - UV - UV -Face 3042 -UV Count: 3 - UV - UV - UV -Face 3043 -UV Count: 3 - UV - UV - UV -Face 3044 -UV Count: 3 - UV - UV - UV -Face 3045 -UV Count: 3 - UV - UV - UV -Face 3046 -UV Count: 3 - UV - UV - UV -Face 3047 -UV Count: 3 - UV - UV - UV -Face 3048 -UV Count: 3 - UV - UV - UV -Face 3049 -UV Count: 3 - UV - UV - UV -Face 3050 -UV Count: 3 - UV - UV - UV -Face 3051 -UV Count: 3 - UV - UV - UV -Face 3052 -UV Count: 3 - UV - UV - UV -Face 3053 -UV Count: 3 - UV - UV - UV -Face 3054 -UV Count: 3 - UV - UV - UV -Face 3055 -UV Count: 3 - UV - UV - UV -Face 3056 -UV Count: 3 - UV - UV - UV -Face 3057 -UV Count: 3 - UV - UV - UV -Face 3058 -UV Count: 3 - UV - UV - UV -Face 3059 -UV Count: 3 - UV - UV - UV -Face 3060 -UV Count: 3 - UV - UV - UV -Face 3061 -UV Count: 3 - UV - UV - UV -Face 3062 -UV Count: 3 - UV - UV - UV -Face 3063 -UV Count: 3 - UV - UV - UV -Face 3064 -UV Count: 3 - UV - UV - UV -Face 3065 -UV Count: 3 - UV - UV - UV -Face 3066 -UV Count: 3 - UV - UV - UV -Face 3067 -UV Count: 3 - UV - UV - UV -Face 3068 -UV Count: 3 - UV - UV - UV -Face 3069 -UV Count: 3 - UV - UV - UV -Face 3070 -UV Count: 3 - UV - UV - UV -Face 3071 -UV Count: 3 - UV - UV - UV -Face 3072 -UV Count: 3 - UV - UV - UV -Face 3073 -UV Count: 3 - UV - UV - UV -Face 3074 -UV Count: 3 - UV - UV - UV -Face 3075 -UV Count: 3 - UV - UV - UV -Face 3076 -UV Count: 3 - UV - UV - UV -Face 3077 -UV Count: 3 - UV - UV - UV -Face 3078 -UV Count: 3 - UV - UV - UV -Face 3079 -UV Count: 3 - UV - UV - UV -Face 3080 -UV Count: 3 - UV - UV - UV -Face 3081 -UV Count: 3 - UV - UV - UV -Face 3082 -UV Count: 3 - UV - UV - UV -Face 3083 -UV Count: 3 - UV - UV - UV -Face 3084 -UV Count: 3 - UV - UV - UV -Face 3085 -UV Count: 3 - UV - UV - UV -Face 3086 -UV Count: 3 - UV - UV - UV -Face 3087 -UV Count: 3 - UV - UV - UV -Face 3088 -UV Count: 3 - UV - UV - UV -Face 3089 -UV Count: 3 - UV - UV - UV -Face 3090 -UV Count: 3 - UV - UV - UV -Face 3091 -UV Count: 3 - UV - UV - UV -Face 3092 -UV Count: 3 - UV - UV - UV -Face 3093 -UV Count: 3 - UV - UV - UV -Face 3094 -UV Count: 3 - UV - UV - UV -Face 3095 -UV Count: 3 - UV - UV - UV -Face 3096 -UV Count: 3 - UV - UV - UV -Face 3097 -UV Count: 3 - UV - UV - UV -Face 3098 -UV Count: 3 - UV - UV - UV -Face 3099 -UV Count: 3 - UV - UV - UV -Face 3100 -UV Count: 3 - UV - UV - UV -Face 3101 -UV Count: 3 - UV - UV - UV -Face 3102 -UV Count: 3 - UV - UV - UV -Face 3103 -UV Count: 3 - UV - UV - UV -Face 3104 -UV Count: 3 - UV - UV - UV -Face 3105 -UV Count: 3 - UV - UV - UV -Face 3106 -UV Count: 3 - UV - UV - UV -Face 3107 -UV Count: 3 - UV - UV - UV -Face 3108 -UV Count: 3 - UV - UV - UV -Face 3109 -UV Count: 3 - UV - UV - UV -Face 3110 -UV Count: 3 - UV - UV - UV -Face 3111 -UV Count: 3 - UV - UV - UV -Face 3112 -UV Count: 3 - UV - UV - UV -Face 3113 -UV Count: 3 - UV - UV - UV -Face 3114 -UV Count: 3 - UV - UV - UV -Face 3115 -UV Count: 3 - UV - UV - UV -Face 3116 -UV Count: 3 - UV - UV - UV -Face 3117 -UV Count: 3 - UV - UV - UV -Face 3118 -UV Count: 3 - UV - UV - UV -Face 3119 -UV Count: 3 - UV - UV - UV -Face 3120 -UV Count: 3 - UV - UV - UV -Face 3121 -UV Count: 3 - UV - UV - UV -Face 3122 -UV Count: 3 - UV - UV - UV -Face 3123 -UV Count: 3 - UV - UV - UV -Face 3124 -UV Count: 3 - UV - UV - UV -Face 3125 -UV Count: 3 - UV - UV - UV -Face 3126 -UV Count: 3 - UV - UV - UV -Face 3127 -UV Count: 3 - UV - UV - UV -Face 3128 -UV Count: 3 - UV - UV - UV -Face 3129 -UV Count: 3 - UV - UV - UV -Face 3130 -UV Count: 3 - UV - UV - UV -Face 3131 -UV Count: 3 - UV - UV - UV -Face 3132 -UV Count: 3 - UV - UV - UV -Face 3133 -UV Count: 3 - UV - UV - UV -Face 3134 -UV Count: 3 - UV - UV - UV -Face 3135 -UV Count: 3 - UV - UV - UV -Face 3136 -UV Count: 3 - UV - UV - UV -Face 3137 -UV Count: 3 - UV - UV - UV -Face 3138 -UV Count: 3 - UV - UV - UV -Face 3139 -UV Count: 3 - UV - UV - UV -Face 3140 -UV Count: 3 - UV - UV - UV -Face 3141 -UV Count: 3 - UV - UV - UV -Face 3142 -UV Count: 3 - UV - UV - UV -Face 3143 -UV Count: 3 - UV - UV - UV -Face 3144 -UV Count: 3 - UV - UV - UV -Face 3145 -UV Count: 3 - UV - UV - UV -Face 3146 -UV Count: 3 - UV - UV - UV -Face 3147 -UV Count: 3 - UV - UV - UV -Face 3148 -UV Count: 3 - UV - UV - UV -Face 3149 -UV Count: 3 - UV - UV - UV -Face 3150 -UV Count: 3 - UV - UV - UV -Face 3151 -UV Count: 3 - UV - UV - UV -Face 3152 -UV Count: 3 - UV - UV - UV -Face 3153 -UV Count: 3 - UV - UV - UV -Face 3154 -UV Count: 3 - UV - UV - UV -Face 3155 -UV Count: 3 - UV - UV - UV -Face 3156 -UV Count: 3 - UV - UV - UV -Face 3157 -UV Count: 3 - UV - UV - UV -Face 3158 -UV Count: 3 - UV - UV - UV -Face 3159 -UV Count: 3 - UV - UV - UV -Face 3160 -UV Count: 3 - UV - UV - UV -Face 3161 -UV Count: 3 - UV - UV - UV -Face 3162 -UV Count: 3 - UV - UV - UV -Face 3163 -UV Count: 3 - UV - UV - UV -Face 3164 -UV Count: 3 - UV - UV - UV -Face 3165 -UV Count: 3 - UV - UV - UV -Face 3166 -UV Count: 3 - UV - UV - UV -Face 3167 -UV Count: 3 - UV - UV - UV -Face 3168 -UV Count: 3 - UV - UV - UV -Face 3169 -UV Count: 3 - UV - UV - UV -Face 3170 -UV Count: 3 - UV - UV - UV -Face 3171 -UV Count: 3 - UV - UV - UV -Face 3172 -UV Count: 3 - UV - UV - UV -Face 3173 -UV Count: 3 - UV - UV - UV -Face 3174 -UV Count: 3 - UV - UV - UV -Face 3175 -UV Count: 3 - UV - UV - UV -Face 3176 -UV Count: 3 - UV - UV - UV -Face 3177 -UV Count: 3 - UV - UV - UV -Face 3178 -UV Count: 3 - UV - UV - UV -Face 3179 -UV Count: 3 - UV - UV - UV -Face 3180 -UV Count: 3 - UV - UV - UV -Face 3181 -UV Count: 3 - UV - UV - UV -Face 3182 -UV Count: 3 - UV - UV - UV -Face 3183 -UV Count: 3 - UV - UV - UV -Face 3184 -UV Count: 3 - UV - UV - UV -Face 3185 -UV Count: 3 - UV - UV - UV -Face 3186 -UV Count: 3 - UV - UV - UV -Face 3187 -UV Count: 3 - UV - UV - UV -Face 3188 -UV Count: 3 - UV - UV - UV -Face 3189 -UV Count: 3 - UV - UV - UV -Face 3190 -UV Count: 3 - UV - UV - UV -Face 3191 -UV Count: 3 - UV - UV - UV -Face 3192 -UV Count: 3 - UV - UV - UV -Face 3193 -UV Count: 3 - UV - UV - UV -Face 3194 -UV Count: 3 - UV - UV - UV -Face 3195 -UV Count: 3 - UV - UV - UV -Face 3196 -UV Count: 3 - UV - UV - UV -Face 3197 -UV Count: 3 - UV - UV - UV -Face 3198 -UV Count: 3 - UV - UV - UV -Face 3199 -UV Count: 3 - UV - UV - UV -Face 3200 -UV Count: 3 - UV - UV - UV -Face 3201 -UV Count: 3 - UV - UV - UV -Face 3202 -UV Count: 3 - UV - UV - UV -Face 3203 -UV Count: 3 - UV - UV - UV -Face 3204 -UV Count: 3 - UV - UV - UV -Face 3205 -UV Count: 3 - UV - UV - UV -Face 3206 -UV Count: 3 - UV - UV - UV -Face 3207 -UV Count: 3 - UV - UV - UV -Face 3208 -UV Count: 3 - UV - UV - UV -Face 3209 -UV Count: 3 - UV - UV - UV -Face 3210 -UV Count: 3 - UV - UV - UV -Face 3211 -UV Count: 3 - UV - UV - UV -Face 3212 -UV Count: 3 - UV - UV - UV -Face 3213 -UV Count: 3 - UV - UV - UV -Face 3214 -UV Count: 3 - UV - UV - UV -Face 3215 -UV Count: 3 - UV - UV - UV -Face 3216 -UV Count: 3 - UV - UV - UV -Face 3217 -UV Count: 3 - UV - UV - UV -Face 3218 -UV Count: 3 - UV - UV - UV -Face 3219 -UV Count: 3 - UV - UV - UV -Face 3220 -UV Count: 3 - UV - UV - UV -Face 3221 -UV Count: 3 - UV - UV - UV -Face 3222 -UV Count: 3 - UV - UV - UV -Face 3223 -UV Count: 3 - UV - UV - UV -Face 3224 -UV Count: 3 - UV - UV - UV -Face 3225 -UV Count: 3 - UV - UV - UV -Face 3226 -UV Count: 3 - UV - UV - UV -Face 3227 -UV Count: 3 - UV - UV - UV -Face 3228 -UV Count: 3 - UV - UV - UV -Face 3229 -UV Count: 3 - UV - UV - UV -Face 3230 -UV Count: 3 - UV - UV - UV -Face 3231 -UV Count: 3 - UV - UV - UV -Face 3232 -UV Count: 3 - UV - UV - UV -Face 3233 -UV Count: 3 - UV - UV - UV -Face 3234 -UV Count: 3 - UV - UV - UV -Face 3235 -UV Count: 3 - UV - UV - UV -Face 3236 -UV Count: 3 - UV - UV - UV -Face 3237 -UV Count: 3 - UV - UV - UV -Face 3238 -UV Count: 3 - UV - UV - UV -Face 3239 -UV Count: 3 - UV - UV - UV -Face 3240 -UV Count: 3 - UV - UV - UV -Face 3241 -UV Count: 3 - UV - UV - UV -Face 3242 -UV Count: 3 - UV - UV - UV -Face 3243 -UV Count: 3 - UV - UV - UV -Face 3244 -UV Count: 3 - UV - UV - UV -Face 3245 -UV Count: 3 - UV - UV - UV -Face 3246 -UV Count: 3 - UV - UV - UV -Face 3247 -UV Count: 3 - UV - UV - UV -Face 3248 -UV Count: 3 - UV - UV - UV -Face 3249 -UV Count: 3 - UV - UV - UV -Face 3250 -UV Count: 3 - UV - UV - UV -Face 3251 -UV Count: 3 - UV - UV - UV -Face 3252 -UV Count: 3 - UV - UV - UV -Face 3253 -UV Count: 3 - UV - UV - UV -Face 3254 -UV Count: 3 - UV - UV - UV -Face 3255 -UV Count: 3 - UV - UV - UV -Face 3256 -UV Count: 3 - UV - UV - UV -Face 3257 -UV Count: 3 - UV - UV - UV -Face 3258 -UV Count: 3 - UV - UV - UV -Face 3259 -UV Count: 3 - UV - UV - UV -Face 3260 -UV Count: 3 - UV - UV - UV -Face 3261 -UV Count: 3 - UV - UV - UV -Face 3262 -UV Count: 3 - UV - UV - UV -Face 3263 -UV Count: 3 - UV - UV - UV -Face 3264 -UV Count: 3 - UV - UV - UV -Face 3265 -UV Count: 3 - UV - UV - UV -Face 3266 -UV Count: 3 - UV - UV - UV -Face 3267 -UV Count: 3 - UV - UV - UV -Face 3268 -UV Count: 3 - UV - UV - UV -Face 3269 -UV Count: 3 - UV - UV - UV -Face 3270 -UV Count: 3 - UV - UV - UV -Face 3271 -UV Count: 3 - UV - UV - UV -Face 3272 -UV Count: 3 - UV - UV - UV -Face 3273 -UV Count: 3 - UV - UV - UV -Face 3274 -UV Count: 3 - UV - UV - UV -Face 3275 -UV Count: 3 - UV - UV - UV -Face 3276 -UV Count: 3 - UV - UV - UV -Face 3277 -UV Count: 3 - UV - UV - UV -Face 3278 -UV Count: 3 - UV - UV - UV -Face 3279 -UV Count: 3 - UV - UV - UV -Face 3280 -UV Count: 3 - UV - UV - UV -Face 3281 -UV Count: 3 - UV - UV - UV -Face 3282 -UV Count: 3 - UV - UV - UV -Face 3283 -UV Count: 3 - UV - UV - UV -Face 3284 -UV Count: 3 - UV - UV - UV -Face 3285 -UV Count: 3 - UV - UV - UV -Face 3286 -UV Count: 3 - UV - UV - UV -Face 3287 -UV Count: 3 - UV - UV - UV -Face 3288 -UV Count: 3 - UV - UV - UV -Face 3289 -UV Count: 3 - UV - UV - UV -Face 3290 -UV Count: 3 - UV - UV - UV -Face 3291 -UV Count: 3 - UV - UV - UV -Face 3292 -UV Count: 3 - UV - UV - UV -Face 3293 -UV Count: 3 - UV - UV - UV -Face 3294 -UV Count: 3 - UV - UV - UV -Face 3295 -UV Count: 3 - UV - UV - UV -Face 3296 -UV Count: 3 - UV - UV - UV -Face 3297 -UV Count: 3 - UV - UV - UV -Face 3298 -UV Count: 3 - UV - UV - UV -Face 3299 -UV Count: 3 - UV - UV - UV -Face 3300 -UV Count: 3 - UV - UV - UV -Face 3301 -UV Count: 3 - UV - UV - UV -Face 3302 -UV Count: 3 - UV - UV - UV -Face 3303 -UV Count: 3 - UV - UV - UV -Face 3304 -UV Count: 3 - UV - UV - UV -Face 3305 -UV Count: 3 - UV - UV - UV -Face 3306 -UV Count: 3 - UV - UV - UV -Face 3307 -UV Count: 3 - UV - UV - UV -Face 3308 -UV Count: 3 - UV - UV - UV -Face 3309 -UV Count: 3 - UV - UV - UV -Face 3310 -UV Count: 3 - UV - UV - UV -Face 3311 -UV Count: 3 - UV - UV - UV -Face 3312 -UV Count: 3 - UV - UV - UV -Face 3313 -UV Count: 3 - UV - UV - UV -Face 3314 -UV Count: 3 - UV - UV - UV -Face 3315 -UV Count: 3 - UV - UV - UV -Face 3316 -UV Count: 3 - UV - UV - UV -Face 3317 -UV Count: 3 - UV - UV - UV -Face 3318 -UV Count: 3 - UV - UV - UV -Face 3319 -UV Count: 3 - UV - UV - UV -Face 3320 -UV Count: 3 - UV - UV - UV -Face 3321 -UV Count: 3 - UV - UV - UV -Face 3322 -UV Count: 3 - UV - UV - UV -Face 3323 -UV Count: 3 - UV - UV - UV -Face 3324 -UV Count: 3 - UV - UV - UV -Face 3325 -UV Count: 3 - UV - UV - UV -Face 3326 -UV Count: 3 - UV - UV - UV -Face 3327 -UV Count: 3 - UV - UV - UV -Face 3328 -UV Count: 3 - UV - UV - UV -Face 3329 -UV Count: 3 - UV - UV - UV -Face 3330 -UV Count: 3 - UV - UV - UV -Face 3331 -UV Count: 3 - UV - UV - UV -Face 3332 -UV Count: 3 - UV - UV - UV -Face 3333 -UV Count: 3 - UV - UV - UV -Face 3334 -UV Count: 3 - UV - UV - UV -Face 3335 -UV Count: 3 - UV - UV - UV -Face 3336 -UV Count: 3 - UV - UV - UV -Face 3337 -UV Count: 3 - UV - UV - UV -Face 3338 -UV Count: 3 - UV - UV - UV -Face 3339 -UV Count: 3 - UV - UV - UV -Face 3340 -UV Count: 3 - UV - UV - UV -Face 3341 -UV Count: 3 - UV - UV - UV -Face 3342 -UV Count: 3 - UV - UV - UV -Face 3343 -UV Count: 3 - UV - UV - UV -Face 3344 -UV Count: 3 - UV - UV - UV -Face 3345 -UV Count: 3 - UV - UV - UV -Face 3346 -UV Count: 3 - UV - UV - UV -Face 3347 -UV Count: 3 - UV - UV - UV -Face 3348 -UV Count: 3 - UV - UV - UV -Face 3349 -UV Count: 3 - UV - UV - UV -Face 3350 -UV Count: 3 - UV - UV - UV -Face 3351 -UV Count: 3 - UV - UV - UV -Face 3352 -UV Count: 3 - UV - UV - UV -Face 3353 -UV Count: 3 - UV - UV - UV -Face 3354 -UV Count: 3 - UV - UV - UV -Face 3355 -UV Count: 3 - UV - UV - UV -Face 3356 -UV Count: 3 - UV - UV - UV -Face 3357 -UV Count: 3 - UV - UV - UV -Face 3358 -UV Count: 3 - UV - UV - UV -Face 3359 -UV Count: 3 - UV - UV - UV -Face 3360 -UV Count: 3 - UV - UV - UV -Face 3361 -UV Count: 3 - UV - UV - UV -Face 3362 -UV Count: 3 - UV - UV - UV -Face 3363 -UV Count: 3 - UV - UV - UV -Face 3364 -UV Count: 3 - UV - UV - UV -Face 3365 -UV Count: 3 - UV - UV - UV -Face 3366 -UV Count: 3 - UV - UV - UV -Face 3367 -UV Count: 3 - UV - UV - UV -Face 3368 -UV Count: 3 - UV - UV - UV -Face 3369 -UV Count: 3 - UV - UV - UV -Face 3370 -UV Count: 3 - UV - UV - UV -Face 3371 -UV Count: 3 - UV - UV - UV -Face 3372 -UV Count: 3 - UV - UV - UV -Face 3373 -UV Count: 3 - UV - UV - UV -Face 3374 -UV Count: 3 - UV - UV - UV -Face 3375 -UV Count: 3 - UV - UV - UV -Face 3376 -UV Count: 3 - UV - UV - UV -Face 3377 -UV Count: 3 - UV - UV - UV -Face 3378 -UV Count: 3 - UV - UV - UV -Face 3379 -UV Count: 3 - UV - UV - UV -Face 3380 -UV Count: 3 - UV - UV - UV -Face 3381 -UV Count: 3 - UV - UV - UV -Face 3382 -UV Count: 3 - UV - UV - UV -Face 3383 -UV Count: 3 - UV - UV - UV -Face 3384 -UV Count: 3 - UV - UV - UV -Face 3385 -UV Count: 3 - UV - UV - UV -Face 3386 -UV Count: 3 - UV - UV - UV -Face 3387 -UV Count: 3 - UV - UV - UV -Face 3388 -UV Count: 3 - UV - UV - UV -Face 3389 -UV Count: 3 - UV - UV - UV -Face 3390 -UV Count: 3 - UV - UV - UV -Face 3391 -UV Count: 3 - UV - UV - UV -Face 3392 -UV Count: 3 - UV - UV - UV -Face 3393 -UV Count: 3 - UV - UV - UV -Face 3394 -UV Count: 3 - UV - UV - UV -Face 3395 -UV Count: 3 - UV - UV - UV -Face 3396 -UV Count: 3 - UV - UV - UV -Face 3397 -UV Count: 3 - UV - UV - UV -Face 3398 -UV Count: 3 - UV - UV - UV -Face 3399 -UV Count: 3 - UV - UV - UV -Face 3400 -UV Count: 3 - UV - UV - UV -Face 3401 -UV Count: 3 - UV - UV - UV -Face 3402 -UV Count: 3 - UV - UV - UV -Face 3403 -UV Count: 3 - UV - UV - UV -Face 3404 -UV Count: 3 - UV - UV - UV -Face 3405 -UV Count: 3 - UV - UV - UV -Face 3406 -UV Count: 3 - UV - UV - UV -Face 3407 -UV Count: 3 - UV - UV - UV -Face 3408 -UV Count: 3 - UV - UV - UV -Face 3409 -UV Count: 3 - UV - UV - UV -Face 3410 -UV Count: 3 - UV - UV - UV -Face 3411 -UV Count: 3 - UV - UV - UV -Face 3412 -UV Count: 3 - UV - UV - UV -Face 3413 -UV Count: 3 - UV - UV - UV -Face 3414 -UV Count: 3 - UV - UV - UV -Face 3415 -UV Count: 3 - UV - UV - UV -Face 3416 -UV Count: 3 - UV - UV - UV -Face 3417 -UV Count: 3 - UV - UV - UV -Face 3418 -UV Count: 3 - UV - UV - UV -Face 3419 -UV Count: 3 - UV - UV - UV -Face 3420 -UV Count: 3 - UV - UV - UV -Face 3421 -UV Count: 3 - UV - UV - UV -Face 3422 -UV Count: 3 - UV - UV - UV -Face 3423 -UV Count: 3 - UV - UV - UV -Face 3424 -UV Count: 3 - UV - UV - UV -Face 3425 -UV Count: 3 - UV - UV - UV -Face 3426 -UV Count: 3 - UV - UV - UV -Face 3427 -UV Count: 3 - UV - UV - UV -Face 3428 -UV Count: 3 - UV - UV - UV -Face 3429 -UV Count: 3 - UV - UV - UV -Face 3430 -UV Count: 3 - UV - UV - UV -Face 3431 -UV Count: 3 - UV - UV - UV -Face 3432 -UV Count: 3 - UV - UV - UV -Face 3433 -UV Count: 3 - UV - UV - UV -Face 3434 -UV Count: 3 - UV - UV - UV -Face 3435 -UV Count: 3 - UV - UV - UV -Face 3436 -UV Count: 3 - UV - UV - UV -Face 3437 -UV Count: 3 - UV - UV - UV -Face 3438 -UV Count: 3 - UV - UV - UV -Face 3439 -UV Count: 3 - UV - UV - UV -Face 3440 -UV Count: 3 - UV - UV - UV -Face 3441 -UV Count: 3 - UV - UV - UV -Face 3442 -UV Count: 3 - UV - UV - UV -Face 3443 -UV Count: 3 - UV - UV - UV -Face 3444 -UV Count: 3 - UV - UV - UV -Face 3445 -UV Count: 3 - UV - UV - UV -Face 3446 -UV Count: 3 - UV - UV - UV -Face 3447 -UV Count: 3 - UV - UV - UV -Face 3448 -UV Count: 3 - UV - UV - UV -Face 3449 -UV Count: 3 - UV - UV - UV -Face 3450 -UV Count: 3 - UV - UV - UV -Face 3451 -UV Count: 3 - UV - UV - UV -Face 3452 -UV Count: 3 - UV - UV - UV -Face 3453 -UV Count: 3 - UV - UV - UV -Face 3454 -UV Count: 3 - UV - UV - UV -Face 3455 -UV Count: 3 - UV - UV - UV -Face 3456 -UV Count: 3 - UV - UV - UV -Face 3457 -UV Count: 3 - UV - UV - UV -Face 3458 -UV Count: 3 - UV - UV - UV -Face 3459 -UV Count: 3 - UV - UV - UV -Face 3460 -UV Count: 3 - UV - UV - UV -Face 3461 -UV Count: 3 - UV - UV - UV -Face 3462 -UV Count: 3 - UV - UV - UV -Face 3463 -UV Count: 3 - UV - UV - UV -Face 3464 -UV Count: 3 - UV - UV - UV -Face 3465 -UV Count: 3 - UV - UV - UV -Face 3466 -UV Count: 3 - UV - UV - UV -Face 3467 -UV Count: 3 - UV - UV - UV -Face 3468 -UV Count: 3 - UV - UV - UV -Face 3469 -UV Count: 3 - UV - UV - UV -Face 3470 -UV Count: 3 - UV - UV - UV -Face 3471 -UV Count: 3 - UV - UV - UV -Face 3472 -UV Count: 3 - UV - UV - UV -Face 3473 -UV Count: 3 - UV - UV - UV -Face 3474 -UV Count: 3 - UV - UV - UV -Face 3475 -UV Count: 3 - UV - UV - UV -Face 3476 -UV Count: 3 - UV - UV - UV -Face 3477 -UV Count: 3 - UV - UV - UV -Face 3478 -UV Count: 3 - UV - UV - UV -Face 3479 -UV Count: 3 - UV - UV - UV -Face 3480 -UV Count: 3 - UV - UV - UV -Face 3481 -UV Count: 3 - UV - UV - UV -Face 3482 -UV Count: 3 - UV - UV - UV -Face 3483 -UV Count: 3 - UV - UV - UV -Face 3484 -UV Count: 3 - UV - UV - UV -Face 3485 -UV Count: 3 - UV - UV - UV -Face 3486 -UV Count: 3 - UV - UV - UV -Face 3487 -UV Count: 3 - UV - UV - UV -Face 3488 -UV Count: 3 - UV - UV - UV -Face 3489 -UV Count: 3 - UV - UV - UV -Face 3490 -UV Count: 3 - UV - UV - UV -Face 3491 -UV Count: 3 - UV - UV - UV -Face 3492 -UV Count: 3 - UV - UV - UV -Face 3493 -UV Count: 3 - UV - UV - UV -Face 3494 -UV Count: 3 - UV - UV - UV -Face 3495 -UV Count: 3 - UV - UV - UV -Face 3496 -UV Count: 3 - UV - UV - UV -Face 3497 -UV Count: 3 - UV - UV - UV -Face 3498 -UV Count: 3 - UV - UV - UV -Face 3499 -UV Count: 3 - UV - UV - UV -Face 3500 -UV Count: 3 - UV - UV - UV -Face 3501 -UV Count: 3 - UV - UV - UV -Face 3502 -UV Count: 3 - UV - UV - UV -Face 3503 -UV Count: 3 - UV - UV - UV -Face 3504 -UV Count: 3 - UV - UV - UV -Face 3505 -UV Count: 3 - UV - UV - UV -Face 3506 -UV Count: 3 - UV - UV - UV -Face 3507 -UV Count: 3 - UV - UV - UV -Face 3508 -UV Count: 3 - UV - UV - UV -Face 3509 -UV Count: 3 - UV - UV - UV -Face 3510 -UV Count: 3 - UV - UV - UV -Face 3511 -UV Count: 3 - UV - UV - UV -Face 3512 -UV Count: 3 - UV - UV - UV -Face 3513 -UV Count: 3 - UV - UV - UV -Face 3514 -UV Count: 3 - UV - UV - UV -Face 3515 -UV Count: 3 - UV - UV - UV -Face 3516 -UV Count: 3 - UV - UV - UV -Face 3517 -UV Count: 3 - UV - UV - UV -Face 3518 -UV Count: 3 - UV - UV - UV -Face 3519 -UV Count: 3 - UV - UV - UV -Face 3520 -UV Count: 3 - UV - UV - UV -Face 3521 -UV Count: 3 - UV - UV - UV -Face 3522 -UV Count: 3 - UV - UV - UV -Face 3523 -UV Count: 3 - UV - UV - UV -Face 3524 -UV Count: 3 - UV - UV - UV -Face 3525 -UV Count: 3 - UV - UV - UV -Face 3526 -UV Count: 3 - UV - UV - UV -Face 3527 -UV Count: 3 - UV - UV - UV -Face 3528 -UV Count: 3 - UV - UV - UV -Face 3529 -UV Count: 3 - UV - UV - UV -Face 3530 -UV Count: 3 - UV - UV - UV -Face 3531 -UV Count: 3 - UV - UV - UV -Face 3532 -UV Count: 3 - UV - UV - UV -Face 3533 -UV Count: 3 - UV - UV - UV -Face 3534 -UV Count: 3 - UV - UV - UV -Face 3535 -UV Count: 3 - UV - UV - UV -Face 3536 -UV Count: 3 - UV - UV - UV -Face 3537 -UV Count: 3 - UV - UV - UV -Face 3538 -UV Count: 3 - UV - UV - UV -Face 3539 -UV Count: 3 - UV - UV - UV -Face 3540 -UV Count: 3 - UV - UV - UV -Face 3541 -UV Count: 3 - UV - UV - UV -Face 3542 -UV Count: 3 - UV - UV - UV -Face 3543 -UV Count: 3 - UV - UV - UV -Face 3544 -UV Count: 3 - UV - UV - UV -Face 3545 -UV Count: 3 - UV - UV - UV -Face 3546 -UV Count: 3 - UV - UV - UV -Face 3547 -UV Count: 3 - UV - UV - UV -Face 3548 -UV Count: 3 - UV - UV - UV -Face 3549 -UV Count: 3 - UV - UV - UV -Face 3550 -UV Count: 3 - UV - UV - UV -Face 3551 -UV Count: 3 - UV - UV - UV -Face 3552 -UV Count: 3 - UV - UV - UV -Face 3553 -UV Count: 3 - UV - UV - UV -Face 3554 -UV Count: 3 - UV - UV - UV -Face 3555 -UV Count: 3 - UV - UV - UV -Face 3556 -UV Count: 3 - UV - UV - UV -Face 3557 -UV Count: 3 - UV - UV - UV -Face 3558 -UV Count: 3 - UV - UV - UV -Face 3559 -UV Count: 3 - UV - UV - UV -Face 3560 -UV Count: 3 - UV - UV - UV -Face 3561 -UV Count: 3 - UV - UV - UV -Face 3562 -UV Count: 3 - UV - UV - UV -Face 3563 -UV Count: 3 - UV - UV - UV -Face 3564 -UV Count: 3 - UV - UV - UV -Face 3565 -UV Count: 3 - UV - UV - UV -Face 3566 -UV Count: 3 - UV - UV - UV -Face 3567 -UV Count: 3 - UV - UV - UV -Face 3568 -UV Count: 3 - UV - UV - UV -Face 3569 -UV Count: 3 - UV - UV - UV -Face 3570 -UV Count: 3 - UV - UV - UV -Face 3571 -UV Count: 3 - UV - UV - UV -Face 3572 -UV Count: 3 - UV - UV - UV -Face 3573 -UV Count: 3 - UV - UV - UV -Face 3574 -UV Count: 3 - UV - UV - UV -Face 3575 -UV Count: 3 - UV - UV - UV -Face 3576 -UV Count: 3 - UV - UV - UV -Face 3577 -UV Count: 3 - UV - UV - UV -Face 3578 -UV Count: 3 - UV - UV - UV -Face 3579 -UV Count: 3 - UV - UV - UV -Face 3580 -UV Count: 3 - UV - UV - UV -Face 3581 -UV Count: 3 - UV - UV - UV -Face 3582 -UV Count: 3 - UV - UV - UV -Face 3583 -UV Count: 3 - UV - UV - UV -Face 3584 -UV Count: 3 - UV - UV - UV -Face 3585 -UV Count: 3 - UV - UV - UV -Face 3586 -UV Count: 3 - UV - UV - UV -Face 3587 -UV Count: 3 - UV - UV - UV -Face 3588 -UV Count: 3 - UV - UV - UV -Face 3589 -UV Count: 3 - UV - UV - UV -Face 3590 -UV Count: 3 - UV - UV - UV -Face 3591 -UV Count: 3 - UV - UV - UV -Face 3592 -UV Count: 3 - UV - UV - UV -Face 3593 -UV Count: 3 - UV - UV - UV -Face 3594 -UV Count: 3 - UV - UV - UV -Face 3595 -UV Count: 3 - UV - UV - UV -Face 3596 -UV Count: 3 - UV - UV - UV -Face 3597 -UV Count: 3 - UV - UV - UV -Face 3598 -UV Count: 3 - UV - UV - UV -Face 3599 -UV Count: 3 - UV - UV - UV -Face 3600 -UV Count: 3 - UV - UV - UV -Face 3601 -UV Count: 3 - UV - UV - UV -Face 3602 -UV Count: 3 - UV - UV - UV -Face 3603 -UV Count: 3 - UV - UV - UV -Face 3604 -UV Count: 3 - UV - UV - UV -Face 3605 -UV Count: 3 - UV - UV - UV -Face 3606 -UV Count: 3 - UV - UV - UV -Face 3607 -UV Count: 3 - UV - UV - UV -Face 3608 -UV Count: 3 - UV - UV - UV -Face 3609 -UV Count: 3 - UV - UV - UV -Face 3610 -UV Count: 3 - UV - UV - UV -Face 3611 -UV Count: 3 - UV - UV - UV -Face 3612 -UV Count: 3 - UV - UV - UV -Face 3613 -UV Count: 3 - UV - UV - UV -Face 3614 -UV Count: 3 - UV - UV - UV -Face 3615 -UV Count: 3 - UV - UV - UV -Face 3616 -UV Count: 3 - UV - UV - UV -Face 3617 -UV Count: 3 - UV - UV - UV -Face 3618 -UV Count: 3 - UV - UV - UV -Face 3619 -UV Count: 3 - UV - UV - UV -Face 3620 -UV Count: 3 - UV - UV - UV -Face 3621 -UV Count: 3 - UV - UV - UV -Face 3622 -UV Count: 3 - UV - UV - UV -Face 3623 -UV Count: 3 - UV - UV - UV -Face 3624 -UV Count: 3 - UV - UV - UV -Face 3625 -UV Count: 3 - UV - UV - UV -Face 3626 -UV Count: 3 - UV - UV - UV -Face 3627 -UV Count: 3 - UV - UV - UV -Face 3628 -UV Count: 3 - UV - UV - UV -Face 3629 -UV Count: 3 - UV - UV - UV -Face 3630 -UV Count: 3 - UV - UV - UV -Face 3631 -UV Count: 3 - UV - UV - UV -Face 3632 -UV Count: 3 - UV - UV - UV -Face 3633 -UV Count: 3 - UV - UV - UV -Face 3634 -UV Count: 3 - UV - UV - UV -Face 3635 -UV Count: 3 - UV - UV - UV -Face 3636 -UV Count: 3 - UV - UV - UV -Face 3637 -UV Count: 3 - UV - UV - UV -Face 3638 -UV Count: 3 - UV - UV - UV -Face 3639 -UV Count: 3 - UV - UV - UV -Face 3640 -UV Count: 3 - UV - UV - UV -Face 3641 -UV Count: 3 - UV - UV - UV -Face 3642 -UV Count: 3 - UV - UV - UV -Face 3643 -UV Count: 3 - UV - UV - UV -Face 3644 -UV Count: 3 - UV - UV - UV -Face 3645 -UV Count: 3 - UV - UV - UV -Face 3646 -UV Count: 3 - UV - UV - UV -Face 3647 -UV Count: 3 - UV - UV - UV -Face 3648 -UV Count: 3 - UV - UV - UV -Face 3649 -UV Count: 3 - UV - UV - UV -Face 3650 -UV Count: 3 - UV - UV - UV -Face 3651 -UV Count: 3 - UV - UV - UV -Face 3652 -UV Count: 3 - UV - UV - UV -Face 3653 -UV Count: 3 - UV - UV - UV -Face 3654 -UV Count: 3 - UV - UV - UV -Face 3655 -UV Count: 3 - UV - UV - UV -Face 3656 -UV Count: 3 - UV - UV - UV -Face 3657 -UV Count: 3 - UV - UV - UV -Face 3658 -UV Count: 3 - UV - UV - UV -Face 3659 -UV Count: 3 - UV - UV - UV -Face 3660 -UV Count: 3 - UV - UV - UV -Face 3661 -UV Count: 3 - UV - UV - UV -Face 3662 -UV Count: 3 - UV - UV - UV -Face 3663 -UV Count: 3 - UV - UV - UV -Face 3664 -UV Count: 3 - UV - UV - UV -Face 3665 -UV Count: 3 - UV - UV - UV -Face 3666 -UV Count: 3 - UV - UV - UV -Face 3667 -UV Count: 3 - UV - UV - UV -Face 3668 -UV Count: 3 - UV - UV - UV -Face 3669 -UV Count: 3 - UV - UV - UV -Face 3670 -UV Count: 3 - UV - UV - UV -Face 3671 -UV Count: 3 - UV - UV - UV -Face 3672 -UV Count: 3 - UV - UV - UV -Face 3673 -UV Count: 3 - UV - UV - UV -Face 3674 -UV Count: 3 - UV - UV - UV -Face 3675 -UV Count: 3 - UV - UV - UV -Face 3676 -UV Count: 3 - UV - UV - UV -Face 3677 -UV Count: 3 - UV - UV - UV -Face 3678 -UV Count: 3 - UV - UV - UV -Face 3679 -UV Count: 3 - UV - UV - UV -Face 3680 -UV Count: 3 - UV - UV - UV -Face 3681 -UV Count: 3 - UV - UV - UV -Face 3682 -UV Count: 3 - UV - UV - UV -Face 3683 -UV Count: 3 - UV - UV - UV -Face 3684 -UV Count: 3 - UV - UV - UV -Face 3685 -UV Count: 3 - UV - UV - UV -Face 3686 -UV Count: 3 - UV - UV - UV -Face 3687 -UV Count: 3 - UV - UV - UV -Face 3688 -UV Count: 3 - UV - UV - UV -Face 3689 -UV Count: 3 - UV - UV - UV -Face 3690 -UV Count: 3 - UV - UV - UV -Face 3691 -UV Count: 3 - UV - UV - UV -Face 3692 -UV Count: 3 - UV - UV - UV -Face 3693 -UV Count: 3 - UV - UV - UV -Face 3694 -UV Count: 3 - UV - UV - UV -Face 3695 -UV Count: 3 - UV - UV - UV -Face 3696 -UV Count: 3 - UV - UV - UV -Face 3697 -UV Count: 3 - UV - UV - UV -Face 3698 -UV Count: 3 - UV - UV - UV -Face 3699 -UV Count: 3 - UV - UV - UV -Face 3700 -UV Count: 3 - UV - UV - UV -Face 3701 -UV Count: 3 - UV - UV - UV -Face 3702 -UV Count: 3 - UV - UV - UV -Face 3703 -UV Count: 3 - UV - UV - UV -Face 3704 -UV Count: 3 - UV - UV - UV -Face 3705 -UV Count: 3 - UV - UV - UV -Face 3706 -UV Count: 3 - UV - UV - UV -Face 3707 -UV Count: 3 - UV - UV - UV -Face 3708 -UV Count: 3 - UV - UV - UV -Face 3709 -UV Count: 3 - UV - UV - UV -Face 3710 -UV Count: 3 - UV - UV - UV -Face 3711 -UV Count: 3 - UV - UV - UV -Face 3712 -UV Count: 3 - UV - UV - UV -Face 3713 -UV Count: 3 - UV - UV - UV -Face 3714 -UV Count: 3 - UV - UV - UV -Face 3715 -UV Count: 3 - UV - UV - UV -Face 3716 -UV Count: 3 - UV - UV - UV -Face 3717 -UV Count: 3 - UV - UV - UV -Face 3718 -UV Count: 3 - UV - UV - UV -Face 3719 -UV Count: 3 - UV - UV - UV -Face 3720 -UV Count: 3 - UV - UV - UV -Face 3721 -UV Count: 3 - UV - UV - UV -Face 3722 -UV Count: 3 - UV - UV - UV -Face 3723 -UV Count: 3 - UV - UV - UV -Face 3724 -UV Count: 3 - UV - UV - UV -Face 3725 -UV Count: 3 - UV - UV - UV -Face 3726 -UV Count: 3 - UV - UV - UV -Face 3727 -UV Count: 3 - UV - UV - UV -Face 3728 -UV Count: 3 - UV - UV - UV -Face 3729 -UV Count: 3 - UV - UV - UV -Face 3730 -UV Count: 3 - UV - UV - UV -Face 3731 -UV Count: 3 - UV - UV - UV -Face 3732 -UV Count: 3 - UV - UV - UV -Face 3733 -UV Count: 3 - UV - UV - UV -Face 3734 -UV Count: 3 - UV - UV - UV -Face 3735 -UV Count: 3 - UV - UV - UV -Face 3736 -UV Count: 3 - UV - UV - UV -Face 3737 -UV Count: 3 - UV - UV - UV -Face 3738 -UV Count: 3 - UV - UV - UV -Face 3739 -UV Count: 3 - UV - UV - UV -Face 3740 -UV Count: 3 - UV - UV - UV -Face 3741 -UV Count: 3 - UV - UV - UV -Face 3742 -UV Count: 3 - UV - UV - UV -Face 3743 -UV Count: 3 - UV - UV - UV -Face 3744 -UV Count: 3 - UV - UV - UV -Face 3745 -UV Count: 3 - UV - UV - UV -Face 3746 -UV Count: 3 - UV - UV - UV -Face 3747 -UV Count: 3 - UV - UV - UV -Face 3748 -UV Count: 3 - UV - UV - UV -Face 3749 -UV Count: 3 - UV - UV - UV -Face 3750 -UV Count: 3 - UV - UV - UV -Face 3751 -UV Count: 3 - UV - UV - UV -Face 3752 -UV Count: 3 - UV - UV - UV -Face 3753 -UV Count: 3 - UV - UV - UV -Face 3754 -UV Count: 3 - UV - UV - UV -Face 3755 -UV Count: 3 - UV - UV - UV -Face 3756 -UV Count: 3 - UV - UV - UV -Face 3757 -UV Count: 3 - UV - UV - UV -Face 3758 -UV Count: 3 - UV - UV - UV -Face 3759 -UV Count: 3 - UV - UV - UV -Face 3760 -UV Count: 3 - UV - UV - UV -Face 3761 -UV Count: 3 - UV - UV - UV -Face 3762 -UV Count: 3 - UV - UV - UV -Face 3763 -UV Count: 3 - UV - UV - UV -Face 3764 -UV Count: 3 - UV - UV - UV -Face 3765 -UV Count: 3 - UV - UV - UV -Face 3766 -UV Count: 3 - UV - UV - UV -Face 3767 -UV Count: 3 - UV - UV - UV -Face 3768 -UV Count: 3 - UV - UV - UV -Face 3769 -UV Count: 3 - UV - UV - UV -Face 3770 -UV Count: 3 - UV - UV - UV -Face 3771 -UV Count: 3 - UV - UV - UV -Face 3772 -UV Count: 3 - UV - UV - UV -Face 3773 -UV Count: 3 - UV - UV - UV -Face 3774 -UV Count: 3 - UV - UV - UV -Face 3775 -UV Count: 3 - UV - UV - UV -Face 3776 -UV Count: 3 - UV - UV - UV -Face 3777 -UV Count: 3 - UV - UV - UV -Face 3778 -UV Count: 3 - UV - UV - UV -Face 3779 -UV Count: 3 - UV - UV - UV -Face 3780 -UV Count: 3 - UV - UV - UV -Face 3781 -UV Count: 3 - UV - UV - UV -Face 3782 -UV Count: 3 - UV - UV - UV -Face 3783 -UV Count: 3 - UV - UV - UV -Face 3784 -UV Count: 3 - UV - UV - UV -Face 3785 -UV Count: 3 - UV - UV - UV -Face 3786 -UV Count: 3 - UV - UV - UV -Face 3787 -UV Count: 3 - UV - UV - UV -Face 3788 -UV Count: 3 - UV - UV - UV -Face 3789 -UV Count: 3 - UV - UV - UV -Face 3790 -UV Count: 3 - UV - UV - UV -Face 3791 -UV Count: 3 - UV - UV - UV -Face 3792 -UV Count: 3 - UV - UV - UV -Face 3793 -UV Count: 3 - UV - UV - UV -Face 3794 -UV Count: 3 - UV - UV - UV -Face 3795 -UV Count: 3 - UV - UV - UV -Face 3796 -UV Count: 3 - UV - UV - UV -Face 3797 -UV Count: 3 - UV - UV - UV -Face 3798 -UV Count: 3 - UV - UV - UV -Face 3799 -UV Count: 3 - UV - UV - UV -Face 3800 -UV Count: 3 - UV - UV - UV -Face 3801 -UV Count: 3 - UV - UV - UV -Face 3802 -UV Count: 3 - UV - UV - UV -Face 3803 -UV Count: 3 - UV - UV - UV -Face 3804 -UV Count: 3 - UV - UV - UV -Face 3805 -UV Count: 3 - UV - UV - UV -Face 3806 -UV Count: 3 - UV - UV - UV -Face 3807 -UV Count: 3 - UV - UV - UV -Face 3808 -UV Count: 3 - UV - UV - UV -Face 3809 -UV Count: 3 - UV - UV - UV -Face 3810 -UV Count: 3 - UV - UV - UV -Face 3811 -UV Count: 3 - UV - UV - UV -Face 3812 -UV Count: 3 - UV - UV - UV -Face 3813 -UV Count: 3 - UV - UV - UV -Face 3814 -UV Count: 3 - UV - UV - UV -Face 3815 -UV Count: 3 - UV - UV - UV -Face 3816 -UV Count: 3 - UV - UV - UV -Face 3817 -UV Count: 3 - UV - UV - UV -Face 3818 -UV Count: 3 - UV - UV - UV -Face 3819 -UV Count: 3 - UV - UV - UV -Face 3820 -UV Count: 3 - UV - UV - UV -Face 3821 -UV Count: 3 - UV - UV - UV -Face 3822 -UV Count: 3 - UV - UV - UV -Face 3823 -UV Count: 3 - UV - UV - UV -Face 3824 -UV Count: 3 - UV - UV - UV -Face 3825 -UV Count: 3 - UV - UV - UV -Face 3826 -UV Count: 3 - UV - UV - UV -Face 3827 -UV Count: 3 - UV - UV - UV -Face 3828 -UV Count: 3 - UV - UV - UV -Face 3829 -UV Count: 3 - UV - UV - UV -Face 3830 -UV Count: 3 - UV - UV - UV -Face 3831 -UV Count: 3 - UV - UV - UV -Face 3832 -UV Count: 3 - UV - UV - UV -Face 3833 -UV Count: 3 - UV - UV - UV -Face 3834 -UV Count: 3 - UV - UV - UV -Face 3835 -UV Count: 3 - UV - UV - UV -Face 3836 -UV Count: 3 - UV - UV - UV -Face 3837 -UV Count: 3 - UV - UV - UV -Face 3838 -UV Count: 3 - UV - UV - UV -Face 3839 -UV Count: 3 - UV - UV - UV -Face 3840 -UV Count: 3 - UV - UV - UV -Face 3841 -UV Count: 3 - UV - UV - UV -Face 3842 -UV Count: 3 - UV - UV - UV -Face 3843 -UV Count: 3 - UV - UV - UV -Face 3844 -UV Count: 3 - UV - UV - UV -Face 3845 -UV Count: 3 - UV - UV - UV -Face 3846 -UV Count: 3 - UV - UV - UV -Face 3847 -UV Count: 3 - UV - UV - UV -Face 3848 -UV Count: 3 - UV - UV - UV -Face 3849 -UV Count: 3 - UV - UV - UV -Face 3850 -UV Count: 3 - UV - UV - UV -Face 3851 -UV Count: 3 - UV - UV - UV -Face 3852 -UV Count: 3 - UV - UV - UV -Face 3853 -UV Count: 3 - UV - UV - UV -Face 3854 -UV Count: 3 - UV - UV - UV -Face 3855 -UV Count: 3 - UV - UV - UV -Face 3856 -UV Count: 3 - UV - UV - UV -Face 3857 -UV Count: 3 - UV - UV - UV -Face 3858 -UV Count: 3 - UV - UV - UV -Face 3859 -UV Count: 3 - UV - UV - UV -Face 3860 -UV Count: 3 - UV - UV - UV -Face 3861 -UV Count: 3 - UV - UV - UV -Face 3862 -UV Count: 3 - UV - UV - UV -Face 3863 -UV Count: 3 - UV - UV - UV -Face 3864 -UV Count: 3 - UV - UV - UV -Face 3865 -UV Count: 3 - UV - UV - UV -Face 3866 -UV Count: 3 - UV - UV - UV -Face 3867 -UV Count: 3 - UV - UV - UV -Face 3868 -UV Count: 3 - UV - UV - UV -Face 3869 -UV Count: 3 - UV - UV - UV -Face 3870 -UV Count: 3 - UV - UV - UV -Face 3871 -UV Count: 3 - UV - UV - UV -Face 3872 -UV Count: 3 - UV - UV - UV -Face 3873 -UV Count: 3 - UV - UV - UV -Face 3874 -UV Count: 3 - UV - UV - UV -Face 3875 -UV Count: 3 - UV - UV - UV -Face 3876 -UV Count: 3 - UV - UV - UV -Face 3877 -UV Count: 3 - UV - UV - UV -Face 3878 -UV Count: 3 - UV - UV - UV -Face 3879 -UV Count: 3 - UV - UV - UV -Face 3880 -UV Count: 3 - UV - UV - UV -Face 3881 -UV Count: 3 - UV - UV - UV -Face 3882 -UV Count: 3 - UV - UV - UV -Face 3883 -UV Count: 3 - UV - UV - UV -Face 3884 -UV Count: 3 - UV - UV - UV -Face 3885 -UV Count: 3 - UV - UV - UV -Face 3886 -UV Count: 3 - UV - UV - UV -Face 3887 -UV Count: 3 - UV - UV - UV -Face 3888 -UV Count: 3 - UV - UV - UV -Face 3889 -UV Count: 3 - UV - UV - UV -Face 3890 -UV Count: 3 - UV - UV - UV -Face 3891 -UV Count: 3 - UV - UV - UV -Face 3892 -UV Count: 3 - UV - UV - UV -Face 3893 -UV Count: 3 - UV - UV - UV -Face 3894 -UV Count: 3 - UV - UV - UV -Face 3895 -UV Count: 3 - UV - UV - UV -Face 3896 -UV Count: 3 - UV - UV - UV -Face 3897 -UV Count: 3 - UV - UV - UV -Face 3898 -UV Count: 3 - UV - UV - UV -Face 3899 -UV Count: 3 - UV - UV - UV -Face 3900 -UV Count: 3 - UV - UV - UV -Face 3901 -UV Count: 3 - UV - UV - UV -Face 3902 -UV Count: 3 - UV - UV - UV -Face 3903 -UV Count: 3 - UV - UV - UV -Face 3904 -UV Count: 3 - UV - UV - UV -Face 3905 -UV Count: 3 - UV - UV - UV -Face 3906 -UV Count: 3 - UV - UV - UV -Face 3907 -UV Count: 3 - UV - UV - UV -Face 3908 -UV Count: 3 - UV - UV - UV -Face 3909 -UV Count: 3 - UV - UV - UV -Face 3910 -UV Count: 3 - UV - UV - UV -Face 3911 -UV Count: 3 - UV - UV - UV -Face 3912 -UV Count: 3 - UV - UV - UV -Face 3913 -UV Count: 3 - UV - UV - UV -Face 3914 -UV Count: 3 - UV - UV - UV -Face 3915 -UV Count: 3 - UV - UV - UV -Face 3916 -UV Count: 3 - UV - UV - UV -Face 3917 -UV Count: 3 - UV - UV - UV -Face 3918 -UV Count: 3 - UV - UV - UV -Face 3919 -UV Count: 3 - UV - UV - UV -Face 3920 -UV Count: 3 - UV - UV - UV -Face 3921 -UV Count: 3 - UV - UV - UV -Face 3922 -UV Count: 3 - UV - UV - UV -Face 3923 -UV Count: 3 - UV - UV - UV -Face 3924 -UV Count: 3 - UV - UV - UV -Face 3925 -UV Count: 3 - UV - UV - UV -Face 3926 -UV Count: 3 - UV - UV - UV -Face 3927 -UV Count: 3 - UV - UV - UV -Face 3928 -UV Count: 3 - UV - UV - UV -Face 3929 -UV Count: 3 - UV - UV - UV -Face 3930 -UV Count: 3 - UV - UV - UV -Face 3931 -UV Count: 3 - UV - UV - UV -Face 3932 -UV Count: 3 - UV - UV - UV -Face 3933 -UV Count: 3 - UV - UV - UV -Face 3934 -UV Count: 3 - UV - UV - UV -Face 3935 -UV Count: 3 - UV - UV - UV -Face 3936 -UV Count: 3 - UV - UV - UV -Face 3937 -UV Count: 3 - UV - UV - UV -Face 3938 -UV Count: 3 - UV - UV - UV -Face 3939 -UV Count: 3 - UV - UV - UV -Face 3940 -UV Count: 3 - UV - UV - UV -Face 3941 -UV Count: 3 - UV - UV - UV -Face 3942 -UV Count: 3 - UV - UV - UV -Face 3943 -UV Count: 3 - UV - UV - UV -Face 3944 -UV Count: 3 - UV - UV - UV -Face 3945 -UV Count: 3 - UV - UV - UV -Face 3946 -UV Count: 3 - UV - UV - UV -Face 3947 -UV Count: 3 - UV - UV - UV -Face 3948 -UV Count: 3 - UV - UV - UV -Face 3949 -UV Count: 3 - UV - UV - UV -Face 3950 -UV Count: 3 - UV - UV - UV -Face 3951 -UV Count: 3 - UV - UV - UV -Face 3952 -UV Count: 3 - UV - UV - UV -Face 3953 -UV Count: 3 - UV - UV - UV -Face 3954 -UV Count: 3 - UV - UV - UV -Face 3955 -UV Count: 3 - UV - UV - UV -Face 3956 -UV Count: 3 - UV - UV - UV -Face 3957 -UV Count: 3 - UV - UV - UV -Face 3958 -UV Count: 3 - UV - UV - UV -Face 3959 -UV Count: 3 - UV - UV - UV -Face 3960 -UV Count: 3 - UV - UV - UV -Face 3961 -UV Count: 3 - UV - UV - UV -Face 3962 -UV Count: 3 - UV - UV - UV -Face 3963 -UV Count: 3 - UV - UV - UV -Face 3964 -UV Count: 3 - UV - UV - UV -Face 3965 -UV Count: 3 - UV - UV - UV -Face 3966 -UV Count: 3 - UV - UV - UV -Face 3967 -UV Count: 3 - UV - UV - UV -Face 3968 -UV Count: 3 - UV - UV - UV -Face 3969 -UV Count: 3 - UV - UV - UV -Face 3970 -UV Count: 3 - UV - UV - UV -Face 3971 -UV Count: 3 - UV - UV - UV -Face 3972 -UV Count: 3 - UV - UV - UV -Face 3973 -UV Count: 3 - UV - UV - UV -Face 3974 -UV Count: 3 - UV - UV - UV -Face 3975 -UV Count: 3 - UV - UV - UV -Face 3976 -UV Count: 3 - UV - UV - UV -Face 3977 -UV Count: 3 - UV - UV - UV -Face 3978 -UV Count: 3 - UV - UV - UV -Face 3979 -UV Count: 3 - UV - UV - UV -Face 3980 -UV Count: 3 - UV - UV - UV -Face 3981 -UV Count: 3 - UV - UV - UV -Face 3982 -UV Count: 3 - UV - UV - UV -Face 3983 -UV Count: 3 - UV - UV - UV -Face 3984 -UV Count: 3 - UV - UV - UV -Face 3985 -UV Count: 3 - UV - UV - UV -Face 3986 -UV Count: 3 - UV - UV - UV -Face 3987 -UV Count: 3 - UV - UV - UV -Face 3988 -UV Count: 3 - UV - UV - UV -Face 3989 -UV Count: 3 - UV - UV - UV -Face 3990 -UV Count: 3 - UV - UV - UV -Face 3991 -UV Count: 3 - UV - UV - UV -Face 3992 -UV Count: 3 - UV - UV - UV -Face 3993 -UV Count: 3 - UV - UV - UV -Face 3994 -UV Count: 3 - UV - UV - UV -Face 3995 -UV Count: 3 - UV - UV - UV -Face 3996 -UV Count: 3 - UV - UV - UV -Face 3997 -UV Count: 3 - UV - UV - UV -Face 3998 -UV Count: 3 - UV - UV - UV -Face 3999 -UV Count: 3 - UV - UV - UV -Face 4000 -UV Count: 3 - UV - UV - UV -Face 4001 -UV Count: 3 - UV - UV - UV -Face 4002 -UV Count: 3 - UV - UV - UV -Face 4003 -UV Count: 3 - UV - UV - UV -Face 4004 -UV Count: 3 - UV - UV - UV -Face 4005 -UV Count: 3 - UV - UV - UV -Face 4006 -UV Count: 3 - UV - UV - UV -Face 4007 -UV Count: 3 - UV - UV - UV -Face 4008 -UV Count: 3 - UV - UV - UV -Face 4009 -UV Count: 3 - UV - UV - UV -Face 4010 -UV Count: 3 - UV - UV - UV -Face 4011 -UV Count: 3 - UV - UV - UV -Face 4012 -UV Count: 3 - UV - UV - UV -Face 4013 -UV Count: 3 - UV - UV - UV -Face 4014 -UV Count: 3 - UV - UV - UV -Face 4015 -UV Count: 3 - UV - UV - UV -Face 4016 -UV Count: 3 - UV - UV - UV -Face 4017 -UV Count: 3 - UV - UV - UV -Face 4018 -UV Count: 3 - UV - UV - UV -Face 4019 -UV Count: 3 - UV - UV - UV -Face 4020 -UV Count: 3 - UV - UV - UV -Face 4021 -UV Count: 3 - UV - UV - UV -Face 4022 -UV Count: 3 - UV - UV - UV -Face 4023 -UV Count: 3 - UV - UV - UV -Face 4024 -UV Count: 3 - UV - UV - UV -Face 4025 -UV Count: 3 - UV - UV - UV -Face 4026 -UV Count: 3 - UV - UV - UV -Face 4027 -UV Count: 3 - UV - UV - UV -Face 4028 -UV Count: 3 - UV - UV - UV -Face 4029 -UV Count: 3 - UV - UV - UV -Face 4030 -UV Count: 3 - UV - UV - UV -Face 4031 -UV Count: 3 - UV - UV - UV -Face 4032 -UV Count: 3 - UV - UV - UV -Face 4033 -UV Count: 3 - UV - UV - UV -Face 4034 -UV Count: 3 - UV - UV - UV -Face 4035 -UV Count: 3 - UV - UV - UV -Face 4036 -UV Count: 3 - UV - UV - UV -Face 4037 -UV Count: 3 - UV - UV - UV -Face 4038 -UV Count: 3 - UV - UV - UV -Face 4039 -UV Count: 3 - UV - UV - UV -Face 4040 -UV Count: 3 - UV - UV - UV -Face 4041 -UV Count: 3 - UV - UV - UV -Face 4042 -UV Count: 3 - UV - UV - UV -Face 4043 -UV Count: 3 - UV - UV - UV -Face 4044 -UV Count: 3 - UV - UV - UV -Face 4045 -UV Count: 3 - UV - UV - UV -Face 4046 -UV Count: 3 - UV - UV - UV -Face 4047 -UV Count: 3 - UV - UV - UV -Face 4048 -UV Count: 3 - UV - UV - UV -Face 4049 -UV Count: 3 - UV - UV - UV -Face 4050 -UV Count: 3 - UV - UV - UV -Face 4051 -UV Count: 3 - UV - UV - UV -Face 4052 -UV Count: 3 - UV - UV - UV -Face 4053 -UV Count: 3 - UV - UV - UV -Face 4054 -UV Count: 3 - UV - UV - UV -Face 4055 -UV Count: 3 - UV - UV - UV -Face 4056 -UV Count: 3 - UV - UV - UV -Face 4057 -UV Count: 3 - UV - UV - UV -Face 4058 -UV Count: 3 - UV - UV - UV -Face 4059 -UV Count: 3 - UV - UV - UV -Face 4060 -UV Count: 3 - UV - UV - UV -Face 4061 -UV Count: 3 - UV - UV - UV -Face 4062 -UV Count: 3 - UV - UV - UV -Face 4063 -UV Count: 3 - UV - UV - UV -Face 4064 -UV Count: 3 - UV - UV - UV -Face 4065 -UV Count: 3 - UV - UV - UV -Face 4066 -UV Count: 3 - UV - UV - UV -Face 4067 -UV Count: 3 - UV - UV - UV -Face 4068 -UV Count: 3 - UV - UV - UV -Face 4069 -UV Count: 3 - UV - UV - UV -Face 4070 -UV Count: 3 - UV - UV - UV -Face 4071 -UV Count: 3 - UV - UV - UV -Face 4072 -UV Count: 3 - UV - UV - UV -Face 4073 -UV Count: 3 - UV - UV - UV -Face 4074 -UV Count: 3 - UV - UV - UV -Face 4075 -UV Count: 3 - UV - UV - UV -Face 4076 -UV Count: 3 - UV - UV - UV -Face 4077 -UV Count: 3 - UV - UV - UV -Face 4078 -UV Count: 3 - UV - UV - UV -Face 4079 -UV Count: 3 - UV - UV - UV -Face 4080 -UV Count: 3 - UV - UV - UV -Face 4081 -UV Count: 3 - UV - UV - UV -Face 4082 -UV Count: 3 - UV - UV - UV -Face 4083 -UV Count: 3 - UV - UV - UV -Face 4084 -UV Count: 3 - UV - UV - UV -Face 4085 -UV Count: 3 - UV - UV - UV -Face 4086 -UV Count: 3 - UV - UV - UV -Face 4087 -UV Count: 3 - UV - UV - UV -Face 4088 -UV Count: 3 - UV - UV - UV -Face 4089 -UV Count: 3 - UV - UV - UV -Face 4090 -UV Count: 3 - UV - UV - UV -Face 4091 -UV Count: 3 - UV - UV - UV -Face 4092 -UV Count: 3 - UV - UV - UV -Face 4093 -UV Count: 3 - UV - UV - UV -Face 4094 -UV Count: 3 - UV - UV - UV -Face 4095 -UV Count: 3 - UV - UV - UV -Face 4096 -UV Count: 3 - UV - UV - UV -Face 4097 -UV Count: 3 - UV - UV - UV -Face 4098 -UV Count: 3 - UV - UV - UV -Face 4099 -UV Count: 3 - UV - UV - UV -Face 4100 -UV Count: 3 - UV - UV - UV -Face 4101 -UV Count: 3 - UV - UV - UV -Face 4102 -UV Count: 3 - UV - UV - UV -Face 4103 -UV Count: 3 - UV - UV - UV -Face 4104 -UV Count: 3 - UV - UV - UV -Face 4105 -UV Count: 3 - UV - UV - UV -Face 4106 -UV Count: 3 - UV - UV - UV -Face 4107 -UV Count: 3 - UV - UV - UV -Face 4108 -UV Count: 3 - UV - UV - UV -Face 4109 -UV Count: 3 - UV - UV - UV -Face 4110 -UV Count: 3 - UV - UV - UV -Face 4111 -UV Count: 3 - UV - UV - UV -Face 4112 -UV Count: 3 - UV - UV - UV -Face 4113 -UV Count: 3 - UV - UV - UV -Face 4114 -UV Count: 3 - UV - UV - UV -Face 4115 -UV Count: 3 - UV - UV - UV -Face 4116 -UV Count: 3 - UV - UV - UV -Face 4117 -UV Count: 3 - UV - UV - UV -Face 4118 -UV Count: 3 - UV - UV - UV -Face 4119 -UV Count: 3 - UV - UV - UV -Face 4120 -UV Count: 3 - UV - UV - UV -Face 4121 -UV Count: 3 - UV - UV - UV -Face 4122 -UV Count: 3 - UV - UV - UV -Face 4123 -UV Count: 3 - UV - UV - UV -Face 4124 -UV Count: 3 - UV - UV - UV -Face 4125 -UV Count: 3 - UV - UV - UV -Face 4126 -UV Count: 3 - UV - UV - UV -Face 4127 -UV Count: 3 - UV - UV - UV -Face 4128 -UV Count: 3 - UV - UV - UV -Face 4129 -UV Count: 3 - UV - UV - UV -Face 4130 -UV Count: 3 - UV - UV - UV -Face 4131 -UV Count: 3 - UV - UV - UV -Face 4132 -UV Count: 3 - UV - UV - UV -Face 4133 -UV Count: 3 - UV - UV - UV -Face 4134 -UV Count: 3 - UV - UV - UV -Face 4135 -UV Count: 3 - UV - UV - UV -Face 4136 -UV Count: 3 - UV - UV - UV -Face 4137 -UV Count: 3 - UV - UV - UV -Face 4138 -UV Count: 3 - UV - UV - UV -Face 4139 -UV Count: 3 - UV - UV - UV -Face 4140 -UV Count: 3 - UV - UV - UV -Face 4141 -UV Count: 3 - UV - UV - UV -Face 4142 -UV Count: 3 - UV - UV - UV -Face 4143 -UV Count: 3 - UV - UV - UV -Face 4144 -UV Count: 3 - UV - UV - UV -Face 4145 -UV Count: 3 - UV - UV - UV -Face 4146 -UV Count: 3 - UV - UV - UV -Face 4147 -UV Count: 3 - UV - UV - UV -Face 4148 -UV Count: 3 - UV - UV - UV -Face 4149 -UV Count: 3 - UV - UV - UV -Face 4150 -UV Count: 3 - UV - UV - UV -Face 4151 -UV Count: 3 - UV - UV - UV -Face 4152 -UV Count: 3 - UV - UV - UV -Face 4153 -UV Count: 3 - UV - UV - UV -Face 4154 -UV Count: 3 - UV - UV - UV -Face 4155 -UV Count: 3 - UV - UV - UV -Face 4156 -UV Count: 3 - UV - UV - UV -Face 4157 -UV Count: 3 - UV - UV - UV -Face 4158 -UV Count: 3 - UV - UV - UV -Face 4159 -UV Count: 3 - UV - UV - UV -Face 4160 -UV Count: 3 - UV - UV - UV -Face 4161 -UV Count: 3 - UV - UV - UV -Face 4162 -UV Count: 3 - UV - UV - UV -Face 4163 -UV Count: 3 - UV - UV - UV -Face 4164 -UV Count: 3 - UV - UV - UV -Face 4165 -UV Count: 3 - UV - UV - UV -Face 4166 -UV Count: 3 - UV - UV - UV -Face 4167 -UV Count: 3 - UV - UV - UV -Face 4168 -UV Count: 3 - UV - UV - UV -Face 4169 -UV Count: 3 - UV - UV - UV -Face 4170 -UV Count: 3 - UV - UV - UV -Face 4171 -UV Count: 3 - UV - UV - UV -Face 4172 -UV Count: 3 - UV - UV - UV -Face 4173 -UV Count: 3 - UV - UV - UV -Face 4174 -UV Count: 3 - UV - UV - UV -Face 4175 -UV Count: 3 - UV - UV - UV -Face 4176 -UV Count: 3 - UV - UV - UV -Face 4177 -UV Count: 3 - UV - UV - UV -Face 4178 -UV Count: 3 - UV - UV - UV -Face 4179 -UV Count: 3 - UV - UV - UV -Face 4180 -UV Count: 3 - UV - UV - UV -Face 4181 -UV Count: 3 - UV - UV - UV -Face 4182 -UV Count: 3 - UV - UV - UV -Face 4183 -UV Count: 3 - UV - UV - UV -Face 4184 -UV Count: 3 - UV - UV - UV -Face 4185 -UV Count: 3 - UV - UV - UV -Face 4186 -UV Count: 3 - UV - UV - UV -Face 4187 -UV Count: 3 - UV - UV - UV -Face 4188 -UV Count: 3 - UV - UV - UV -Face 4189 -UV Count: 3 - UV - UV - UV -Face 4190 -UV Count: 3 - UV - UV - UV -Face 4191 -UV Count: 3 - UV - UV - UV -Face 4192 -UV Count: 3 - UV - UV - UV -Face 4193 -UV Count: 3 - UV - UV - UV -Face 4194 -UV Count: 3 - UV - UV - UV -Face 4195 -UV Count: 3 - UV - UV - UV -Face 4196 -UV Count: 3 - UV - UV - UV -Face 4197 -UV Count: 3 - UV - UV - UV -Face 4198 -UV Count: 3 - UV - UV - UV -Face 4199 -UV Count: 3 - UV - UV - UV -Face 4200 -UV Count: 3 - UV - UV - UV -Face 4201 -UV Count: 3 - UV - UV - UV -Face 4202 -UV Count: 3 - UV - UV - UV -Face 4203 -UV Count: 3 - UV - UV - UV -Face 4204 -UV Count: 3 - UV - UV - UV -Face 4205 -UV Count: 3 - UV - UV - UV -Face 4206 -UV Count: 3 - UV - UV - UV -Face 4207 -UV Count: 3 - UV - UV - UV -Face 4208 -UV Count: 3 - UV - UV - UV -Face 4209 -UV Count: 3 - UV - UV - UV -Face 4210 -UV Count: 3 - UV - UV - UV -Face 4211 -UV Count: 3 - UV - UV - UV -Face 4212 -UV Count: 3 - UV - UV - UV -Face 4213 -UV Count: 3 - UV - UV - UV -Face 4214 -UV Count: 3 - UV - UV - UV -Face 4215 -UV Count: 3 - UV - UV - UV -Face 4216 -UV Count: 3 - UV - UV - UV -Face 4217 -UV Count: 3 - UV - UV - UV -Face 4218 -UV Count: 3 - UV - UV - UV -Face 4219 -UV Count: 3 - UV - UV - UV -Face 4220 -UV Count: 3 - UV - UV - UV -Face 4221 -UV Count: 3 - UV - UV - UV -Face 4222 -UV Count: 3 - UV - UV - UV -Face 4223 -UV Count: 3 - UV - UV - UV -Face 4224 -UV Count: 3 - UV - UV - UV -Face 4225 -UV Count: 3 - UV - UV - UV -Face 4226 -UV Count: 3 - UV - UV - UV -Face 4227 -UV Count: 3 - UV - UV - UV -Face 4228 -UV Count: 3 - UV - UV - UV -Face 4229 -UV Count: 3 - UV - UV - UV -Face 4230 -UV Count: 3 - UV - UV - UV -Face 4231 -UV Count: 3 - UV - UV - UV -Face 4232 -UV Count: 3 - UV - UV - UV -Face 4233 -UV Count: 3 - UV - UV - UV -Face 4234 -UV Count: 3 - UV - UV - UV -Face 4235 -UV Count: 3 - UV - UV - UV -Face 4236 -UV Count: 3 - UV - UV - UV -Face 4237 -UV Count: 3 - UV - UV - UV -Face 4238 -UV Count: 3 - UV - UV - UV -Face 4239 -UV Count: 3 - UV - UV - UV -Face 4240 -UV Count: 3 - UV - UV - UV -Face 4241 -UV Count: 3 - UV - UV - UV -Face 4242 -UV Count: 3 - UV - UV - UV -Face 4243 -UV Count: 3 - UV - UV - UV -Face 4244 -UV Count: 3 - UV - UV - UV -Face 4245 -UV Count: 3 - UV - UV - UV -Face 4246 -UV Count: 3 - UV - UV - UV -Face 4247 -UV Count: 3 - UV - UV - UV -Face 4248 -UV Count: 3 - UV - UV - UV -Face 4249 -UV Count: 3 - UV - UV - UV -Face 4250 -UV Count: 3 - UV - UV - UV -Face 4251 -UV Count: 3 - UV - UV - UV -Face 4252 -UV Count: 3 - UV - UV - UV -Face 4253 -UV Count: 3 - UV - UV - UV -Face 4254 -UV Count: 3 - UV - UV - UV -Face 4255 -UV Count: 3 - UV - UV - UV -Face 4256 -UV Count: 3 - UV - UV - UV -Face 4257 -UV Count: 3 - UV - UV - UV -Face 4258 -UV Count: 3 - UV - UV - UV -Face 4259 -UV Count: 3 - UV - UV - UV -Face 4260 -UV Count: 3 - UV - UV - UV -Face 4261 -UV Count: 3 - UV - UV - UV -Face 4262 -UV Count: 3 - UV - UV - UV -Face 4263 -UV Count: 3 - UV - UV - UV -Face 4264 -UV Count: 3 - UV - UV - UV -Face 4265 -UV Count: 3 - UV - UV - UV -Face 4266 -UV Count: 3 - UV - UV - UV -Face 4267 -UV Count: 3 - UV - UV - UV -Face 4268 -UV Count: 3 - UV - UV - UV -Face 4269 -UV Count: 3 - UV - UV - UV -Face 4270 -UV Count: 3 - UV - UV - UV -Face 4271 -UV Count: 3 - UV - UV - UV -Face 4272 -UV Count: 3 - UV - UV - UV -Face 4273 -UV Count: 3 - UV - UV - UV -Face 4274 -UV Count: 3 - UV - UV - UV -Face 4275 -UV Count: 3 - UV - UV - UV -Face 4276 -UV Count: 3 - UV - UV - UV -Face 4277 -UV Count: 3 - UV - UV - UV -Face 4278 -UV Count: 3 - UV - UV - UV -Face 4279 -UV Count: 3 - UV - UV - UV -Face 4280 -UV Count: 3 - UV - UV - UV -Face 4281 -UV Count: 3 - UV - UV - UV -Face 4282 -UV Count: 3 - UV - UV - UV -Face 4283 -UV Count: 3 - UV - UV - UV -Face 4284 -UV Count: 3 - UV - UV - UV -Face 4285 -UV Count: 3 - UV - UV - UV -Face 4286 -UV Count: 3 - UV - UV - UV -Face 4287 -UV Count: 3 - UV - UV - UV -Face 4288 -UV Count: 3 - UV - UV - UV -Face 4289 -UV Count: 3 - UV - UV - UV -Face 4290 -UV Count: 3 - UV - UV - UV -Face 4291 -UV Count: 3 - UV - UV - UV -Face 4292 -UV Count: 3 - UV - UV - UV -Face 4293 -UV Count: 3 - UV - UV - UV -Face 4294 -UV Count: 3 - UV - UV - UV -Face 4295 -UV Count: 3 - UV - UV - UV -Face 4296 -UV Count: 3 - UV - UV - UV -Face 4297 -UV Count: 3 - UV - UV - UV -Face 4298 -UV Count: 3 - UV - UV - UV -Face 4299 -UV Count: 3 - UV - UV - UV -Face 4300 -UV Count: 3 - UV - UV - UV -Face 4301 -UV Count: 3 - UV - UV - UV -Face 4302 -UV Count: 3 - UV - UV - UV -Face 4303 -UV Count: 3 - UV - UV - UV -Face 4304 -UV Count: 3 - UV - UV - UV -Face 4305 -UV Count: 3 - UV - UV - UV -Face 4306 -UV Count: 3 - UV - UV - UV -Face 4307 -UV Count: 3 - UV - UV - UV -Face 4308 -UV Count: 3 - UV - UV - UV -Face 4309 -UV Count: 3 - UV - UV - UV -Face 4310 -UV Count: 3 - UV - UV - UV -Face 4311 -UV Count: 3 - UV - UV - UV -Face 4312 -UV Count: 3 - UV - UV - UV -Face 4313 -UV Count: 3 - UV - UV - UV -Face 4314 -UV Count: 3 - UV - UV - UV -Face 4315 -UV Count: 3 - UV - UV - UV -Face 4316 -UV Count: 3 - UV - UV - UV -Face 4317 -UV Count: 3 - UV - UV - UV -Face 4318 -UV Count: 3 - UV - UV - UV -Face 4319 -UV Count: 3 - UV - UV - UV -Face 4320 -UV Count: 3 - UV - UV - UV -Face 4321 -UV Count: 3 - UV - UV - UV -Face 4322 -UV Count: 3 - UV - UV - UV -Face 4323 -UV Count: 3 - UV - UV - UV -Face 4324 -UV Count: 3 - UV - UV - UV -Face 4325 -UV Count: 3 - UV - UV - UV -Face 4326 -UV Count: 3 - UV - UV - UV -Face 4327 -UV Count: 3 - UV - UV - UV -Face 4328 -UV Count: 3 - UV - UV - UV -Face 4329 -UV Count: 3 - UV - UV - UV -Face 4330 -UV Count: 3 - UV - UV - UV -Face 4331 -UV Count: 3 - UV - UV - UV -Face 4332 -UV Count: 3 - UV - UV - UV -Face 4333 -UV Count: 3 - UV - UV - UV -Face 4334 -UV Count: 3 - UV - UV - UV -Face 4335 -UV Count: 3 - UV - UV - UV -Face 4336 -UV Count: 3 - UV - UV - UV -Face 4337 -UV Count: 3 - UV - UV - UV -Face 4338 -UV Count: 3 - UV - UV - UV -Face 4339 -UV Count: 3 - UV - UV - UV -Face 4340 -UV Count: 3 - UV - UV - UV -Face 4341 -UV Count: 3 - UV - UV - UV -Face 4342 -UV Count: 3 - UV - UV - UV -Face 4343 -UV Count: 3 - UV - UV - UV -Face 4344 -UV Count: 3 - UV - UV - UV -Face 4345 -UV Count: 3 - UV - UV - UV -Face 4346 -UV Count: 3 - UV - UV - UV -Face 4347 -UV Count: 3 - UV - UV - UV -Face 4348 -UV Count: 3 - UV - UV - UV -Face 4349 -UV Count: 3 - UV - UV - UV -Face 4350 -UV Count: 3 - UV - UV - UV -Face 4351 -UV Count: 3 - UV - UV - UV -Face 4352 -UV Count: 3 - UV - UV - UV -Face 4353 -UV Count: 3 - UV - UV - UV -Face 4354 -UV Count: 3 - UV - UV - UV -Face 4355 -UV Count: 3 - UV - UV - UV -Face 4356 -UV Count: 3 - UV - UV - UV -Face 4357 -UV Count: 3 - UV - UV - UV -Face 4358 -UV Count: 3 - UV - UV - UV -Face 4359 -UV Count: 3 - UV - UV - UV -Face 4360 -UV Count: 3 - UV - UV - UV -Face 4361 -UV Count: 3 - UV - UV - UV -Face 4362 -UV Count: 3 - UV - UV - UV -Face 4363 -UV Count: 3 - UV - UV - UV -Face 4364 -UV Count: 3 - UV - UV - UV -Face 4365 -UV Count: 3 - UV - UV - UV -Face 4366 -UV Count: 3 - UV - UV - UV -Face 4367 -UV Count: 3 - UV - UV - UV -Face 4368 -UV Count: 3 - UV - UV - UV -Face 4369 -UV Count: 3 - UV - UV - UV -Face 4370 -UV Count: 3 - UV - UV - UV -Face 4371 -UV Count: 3 - UV - UV - UV -Face 4372 -UV Count: 3 - UV - UV - UV -Face 4373 -UV Count: 3 - UV - UV - UV -Face 4374 -UV Count: 3 - UV - UV - UV -Face 4375 -UV Count: 3 - UV - UV - UV -Face 4376 -UV Count: 3 - UV - UV - UV -Face 4377 -UV Count: 3 - UV - UV - UV -Face 4378 -UV Count: 3 - UV - UV - UV -Face 4379 -UV Count: 3 - UV - UV - UV -Face 4380 -UV Count: 3 - UV - UV - UV -Face 4381 -UV Count: 3 - UV - UV - UV -Face 4382 -UV Count: 3 - UV - UV - UV -Face 4383 -UV Count: 3 - UV - UV - UV -Face 4384 -UV Count: 3 - UV - UV - UV -Face 4385 -UV Count: 3 - UV - UV - UV -Face 4386 -UV Count: 3 - UV - UV - UV -Face 4387 -UV Count: 3 - UV - UV - UV -Face 4388 -UV Count: 3 - UV - UV - UV -Face 4389 -UV Count: 3 - UV - UV - UV -Face 4390 -UV Count: 3 - UV - UV - UV -Face 4391 -UV Count: 3 - UV - UV - UV -Face 4392 -UV Count: 3 - UV - UV - UV -Face 4393 -UV Count: 3 - UV - UV - UV -Face 4394 -UV Count: 3 - UV - UV - UV -Face 4395 -UV Count: 3 - UV - UV - UV -Face 4396 -UV Count: 3 - UV - UV - UV -Face 4397 -UV Count: 3 - UV - UV - UV -Face 4398 -UV Count: 3 - UV - UV - UV -Face 4399 -UV Count: 3 - UV - UV - UV -Face 4400 -UV Count: 3 - UV - UV - UV -Face 4401 -UV Count: 3 - UV - UV - UV -Face 4402 -UV Count: 3 - UV - UV - UV -Face 4403 -UV Count: 3 - UV - UV - UV -Face 4404 -UV Count: 3 - UV - UV - UV -Face 4405 -UV Count: 3 - UV - UV - UV -Face 4406 -UV Count: 3 - UV - UV - UV -Face 4407 -UV Count: 3 - UV - UV - UV -Face 4408 -UV Count: 3 - UV - UV - UV -Face 4409 -UV Count: 3 - UV - UV - UV -Face 4410 -UV Count: 3 - UV - UV - UV -Face 4411 -UV Count: 3 - UV - UV - UV -Face 4412 -UV Count: 3 - UV - UV - UV -Face 4413 -UV Count: 3 - UV - UV - UV -Face 4414 -UV Count: 3 - UV - UV - UV -Face 4415 -UV Count: 3 - UV - UV - UV -Face 4416 -UV Count: 3 - UV - UV - UV -Face 4417 -UV Count: 3 - UV - UV - UV -Face 4418 -UV Count: 3 - UV - UV - UV -Face 4419 -UV Count: 3 - UV - UV - UV -Face 4420 -UV Count: 3 - UV - UV - UV -Face 4421 -UV Count: 3 - UV - UV - UV -Face 4422 -UV Count: 3 - UV - UV - UV -Face 4423 -UV Count: 3 - UV - UV - UV -Face 4424 -UV Count: 3 - UV - UV - UV -Face 4425 -UV Count: 3 - UV - UV - UV -Face 4426 -UV Count: 3 - UV - UV - UV -Face 4427 -UV Count: 3 - UV - UV - UV -Face 4428 -UV Count: 3 - UV - UV - UV -Face 4429 -UV Count: 3 - UV - UV - UV -Face 4430 -UV Count: 3 - UV - UV - UV -Face 4431 -UV Count: 3 - UV - UV - UV -Face 4432 -UV Count: 3 - UV - UV - UV -Face 4433 -UV Count: 3 - UV - UV - UV -Face 4434 -UV Count: 3 - UV - UV - UV -Face 4435 -UV Count: 3 - UV - UV - UV -Face 4436 -UV Count: 3 - UV - UV - UV -Face 4437 -UV Count: 3 - UV - UV - UV -Face 4438 -UV Count: 3 - UV - UV - UV -Face 4439 -UV Count: 3 - UV - UV - UV -Face 4440 -UV Count: 3 - UV - UV - UV -Face 4441 -UV Count: 3 - UV - UV - UV -Face 4442 -UV Count: 3 - UV - UV - UV -Face 4443 -UV Count: 3 - UV - UV - UV -Face 4444 -UV Count: 3 - UV - UV - UV -Face 4445 -UV Count: 3 - UV - UV - UV -Face 4446 -UV Count: 3 - UV - UV - UV -Face 4447 -UV Count: 3 - UV - UV - UV -Face 4448 -UV Count: 3 - UV - UV - UV -Face 4449 -UV Count: 3 - UV - UV - UV -Face 4450 -UV Count: 3 - UV - UV - UV -Face 4451 -UV Count: 3 - UV - UV - UV -Face 4452 -UV Count: 3 - UV - UV - UV -Face 4453 -UV Count: 3 - UV - UV - UV -Face 4454 -UV Count: 3 - UV - UV - UV -Face 4455 -UV Count: 3 - UV - UV - UV -Face 4456 -UV Count: 3 - UV - UV - UV -Face 4457 -UV Count: 3 - UV - UV - UV -Face 4458 -UV Count: 3 - UV - UV - UV -Face 4459 -UV Count: 3 - UV - UV - UV -Face 4460 -UV Count: 3 - UV - UV - UV -Face 4461 -UV Count: 3 - UV - UV - UV -Face 4462 -UV Count: 3 - UV - UV - UV -Face 4463 -UV Count: 3 - UV - UV - UV -Face 4464 -UV Count: 3 - UV - UV - UV -Face 4465 -UV Count: 3 - UV - UV - UV -Face 4466 -UV Count: 3 - UV - UV - UV -Face 4467 -UV Count: 3 - UV - UV - UV -Face 4468 -UV Count: 3 - UV - UV - UV -Face 4469 -UV Count: 3 - UV - UV - UV -Face 4470 -UV Count: 3 - UV - UV - UV -Face 4471 -UV Count: 3 - UV - UV - UV -Face 4472 -UV Count: 3 - UV - UV - UV -Face 4473 -UV Count: 3 - UV - UV - UV -Face 4474 -UV Count: 3 - UV - UV - UV -Face 4475 -UV Count: 3 - UV - UV - UV -Face 4476 -UV Count: 3 - UV - UV - UV -Face 4477 -UV Count: 3 - UV - UV - UV -Face 4478 -UV Count: 3 - UV - UV - UV -Face 4479 -UV Count: 3 - UV - UV - UV -===Normals: -Vertex 0: Normal -Vertex 1: Normal -Vertex 2: Normal -Vertex 3: Normal -Vertex 4: Normal -Vertex 5: Normal -Vertex 6: Normal -Vertex 7: Normal -Vertex 8: Normal -Vertex 9: Normal -Vertex 10: Normal -Vertex 11: Normal -Vertex 12: Normal -Vertex 13: Normal -Vertex 14: Normal -Vertex 15: Normal -Vertex 16: Normal -Vertex 17: Normal -Vertex 18: Normal -Vertex 19: Normal -Vertex 20: Normal -Vertex 21: Normal -Vertex 22: Normal -Vertex 23: Normal -Vertex 24: Normal -Vertex 25: Normal -Vertex 26: Normal -Vertex 27: Normal -Vertex 28: Normal -Vertex 29: Normal -Vertex 30: Normal -Vertex 31: Normal -Vertex 32: Normal -Vertex 33: Normal -Vertex 34: Normal -Vertex 35: Normal -Vertex 36: Normal -Vertex 37: Normal -Vertex 38: Normal -Vertex 39: Normal -Vertex 40: Normal -Vertex 41: Normal -Vertex 42: Normal -Vertex 43: Normal -Vertex 44: Normal -Vertex 45: Normal -Vertex 46: Normal -Vertex 47: Normal -Vertex 48: Normal -Vertex 49: Normal -Vertex 50: Normal -Vertex 51: Normal -Vertex 52: Normal -Vertex 53: Normal -Vertex 54: Normal -Vertex 55: Normal -Vertex 56: Normal -Vertex 57: Normal -Vertex 58: Normal -Vertex 59: Normal -Vertex 60: Normal -Vertex 61: Normal -Vertex 62: Normal -Vertex 63: Normal -Vertex 64: Normal -Vertex 65: Normal -Vertex 66: Normal -Vertex 67: Normal -Vertex 68: Normal -Vertex 69: Normal -Vertex 70: Normal -Vertex 71: Normal -Vertex 72: Normal -Vertex 73: Normal -Vertex 74: Normal -Vertex 75: Normal -Vertex 76: Normal -Vertex 77: Normal -Vertex 78: Normal -Vertex 79: Normal -Vertex 80: Normal -Vertex 81: Normal -Vertex 82: Normal -Vertex 83: Normal -Vertex 84: Normal -Vertex 85: Normal -Vertex 86: Normal -Vertex 87: Normal -Vertex 88: Normal -Vertex 89: Normal -Vertex 90: Normal -Vertex 91: Normal -Vertex 92: Normal -Vertex 93: Normal -Vertex 94: Normal -Vertex 95: Normal -Vertex 96: Normal -Vertex 97: Normal -Vertex 98: Normal -Vertex 99: Normal -Vertex 100: Normal -Vertex 101: Normal -Vertex 102: Normal -Vertex 103: Normal -Vertex 104: Normal -Vertex 105: Normal -Vertex 106: Normal -Vertex 107: Normal -Vertex 108: Normal -Vertex 109: Normal -Vertex 110: Normal -Vertex 111: Normal -Vertex 112: Normal -Vertex 113: Normal -Vertex 114: Normal -Vertex 115: Normal -Vertex 116: Normal -Vertex 117: Normal -Vertex 118: Normal -Vertex 119: Normal -Vertex 120: Normal -Vertex 121: Normal -Vertex 122: Normal -Vertex 123: Normal -Vertex 124: Normal -Vertex 125: Normal -Vertex 126: Normal -Vertex 127: Normal -Vertex 128: Normal -Vertex 129: Normal -Vertex 130: Normal -Vertex 131: Normal -Vertex 132: Normal -Vertex 133: Normal -Vertex 134: Normal -Vertex 135: Normal -Vertex 136: Normal -Vertex 137: Normal -Vertex 138: Normal -Vertex 139: Normal -Vertex 140: Normal -Vertex 141: Normal -Vertex 142: Normal -Vertex 143: Normal -Vertex 144: Normal -Vertex 145: Normal -Vertex 146: Normal -Vertex 147: Normal -Vertex 148: Normal -Vertex 149: Normal -Vertex 150: Normal -Vertex 151: Normal -Vertex 152: Normal -Vertex 153: Normal -Vertex 154: Normal -Vertex 155: Normal -Vertex 156: Normal -Vertex 157: Normal -Vertex 158: Normal -Vertex 159: Normal -Vertex 160: Normal -Vertex 161: Normal -Vertex 162: Normal -Vertex 163: Normal -Vertex 164: Normal -Vertex 165: Normal -Vertex 166: Normal -Vertex 167: Normal -Vertex 168: Normal -Vertex 169: Normal -Vertex 170: Normal -Vertex 171: Normal -Vertex 172: Normal -Vertex 173: Normal -Vertex 174: Normal -Vertex 175: Normal -Vertex 176: Normal -Vertex 177: Normal -Vertex 178: Normal -Vertex 179: Normal -Vertex 180: Normal -Vertex 181: Normal -Vertex 182: Normal -Vertex 183: Normal -Vertex 184: Normal -Vertex 185: Normal -Vertex 186: Normal -Vertex 187: Normal -Vertex 188: Normal -Vertex 189: Normal -Vertex 190: Normal -Vertex 191: Normal -Vertex 192: Normal -Vertex 193: Normal -Vertex 194: Normal -Vertex 195: Normal -Vertex 196: Normal -Vertex 197: Normal -Vertex 198: Normal -Vertex 199: Normal -Vertex 200: Normal -Vertex 201: Normal -Vertex 202: Normal -Vertex 203: Normal -Vertex 204: Normal -Vertex 205: Normal -Vertex 206: Normal -Vertex 207: Normal -Vertex 208: Normal -Vertex 209: Normal -Vertex 210: Normal -Vertex 211: Normal -Vertex 212: Normal -Vertex 213: Normal -Vertex 214: Normal -Vertex 215: Normal -Vertex 216: Normal -Vertex 217: Normal -Vertex 218: Normal -Vertex 219: Normal -Vertex 220: Normal -Vertex 221: Normal -Vertex 222: Normal -Vertex 223: Normal -Vertex 224: Normal -Vertex 225: Normal -Vertex 226: Normal -Vertex 227: Normal -Vertex 228: Normal -Vertex 229: Normal -Vertex 230: Normal -Vertex 231: Normal -Vertex 232: Normal -Vertex 233: Normal -Vertex 234: Normal -Vertex 235: Normal -Vertex 236: Normal -Vertex 237: Normal -Vertex 238: Normal -Vertex 239: Normal -Vertex 240: Normal -Vertex 241: Normal -Vertex 242: Normal -Vertex 243: Normal -Vertex 244: Normal -Vertex 245: Normal -Vertex 246: Normal -Vertex 247: Normal -Vertex 248: Normal -Vertex 249: Normal -Vertex 250: Normal -Vertex 251: Normal -Vertex 252: Normal -Vertex 253: Normal -Vertex 254: Normal -Vertex 255: Normal -Vertex 256: Normal -Vertex 257: Normal -Vertex 258: Normal -Vertex 259: Normal -Vertex 260: Normal -Vertex 261: Normal -Vertex 262: Normal -Vertex 263: Normal -Vertex 264: Normal -Vertex 265: Normal -Vertex 266: Normal -Vertex 267: Normal -Vertex 268: Normal -Vertex 269: Normal -Vertex 270: Normal -Vertex 271: Normal -Vertex 272: Normal -Vertex 273: Normal -Vertex 274: Normal -Vertex 275: Normal -Vertex 276: Normal -Vertex 277: Normal -Vertex 278: Normal -Vertex 279: Normal -Vertex 280: Normal -Vertex 281: Normal -Vertex 282: Normal -Vertex 283: Normal -Vertex 284: Normal -Vertex 285: Normal -Vertex 286: Normal -Vertex 287: Normal -Vertex 288: Normal -Vertex 289: Normal -Vertex 290: Normal -Vertex 291: Normal -Vertex 292: Normal -Vertex 293: Normal -Vertex 294: Normal -Vertex 295: Normal -Vertex 296: Normal -Vertex 297: Normal -Vertex 298: Normal -Vertex 299: Normal -Vertex 300: Normal -Vertex 301: Normal -Vertex 302: Normal -Vertex 303: Normal -Vertex 304: Normal -Vertex 305: Normal -Vertex 306: Normal -Vertex 307: Normal -Vertex 308: Normal -Vertex 309: Normal -Vertex 310: Normal -Vertex 311: Normal -Vertex 312: Normal -Vertex 313: Normal -Vertex 314: Normal -Vertex 315: Normal -Vertex 316: Normal -Vertex 317: Normal -Vertex 318: Normal -Vertex 319: Normal -Vertex 320: Normal -Vertex 321: Normal -Vertex 322: Normal -Vertex 323: Normal -Vertex 324: Normal -Vertex 325: Normal -Vertex 326: Normal -Vertex 327: Normal -Vertex 328: Normal -Vertex 329: Normal -Vertex 330: Normal -Vertex 331: Normal -Vertex 332: Normal -Vertex 333: Normal -Vertex 334: Normal -Vertex 335: Normal -Vertex 336: Normal -Vertex 337: Normal -Vertex 338: Normal -Vertex 339: Normal -Vertex 340: Normal -Vertex 341: Normal -Vertex 342: Normal -Vertex 343: Normal -Vertex 344: Normal -Vertex 345: Normal -Vertex 346: Normal -Vertex 347: Normal -Vertex 348: Normal -Vertex 349: Normal -Vertex 350: Normal -Vertex 351: Normal -Vertex 352: Normal -Vertex 353: Normal -Vertex 354: Normal -Vertex 355: Normal -Vertex 356: Normal -Vertex 357: Normal -Vertex 358: Normal -Vertex 359: Normal -Vertex 360: Normal -Vertex 361: Normal -Vertex 362: Normal -Vertex 363: Normal -Vertex 364: Normal -Vertex 365: Normal -Vertex 366: Normal -Vertex 367: Normal -Vertex 368: Normal -Vertex 369: Normal -Vertex 370: Normal -Vertex 371: Normal -Vertex 372: Normal -Vertex 373: Normal -Vertex 374: Normal -Vertex 375: Normal -Vertex 376: Normal -Vertex 377: Normal -Vertex 378: Normal -Vertex 379: Normal -Vertex 380: Normal -Vertex 381: Normal -Vertex 382: Normal -Vertex 383: Normal -Vertex 384: Normal -Vertex 385: Normal -Vertex 386: Normal -Vertex 387: Normal -Vertex 388: Normal -Vertex 389: Normal -Vertex 390: Normal -Vertex 391: Normal -Vertex 392: Normal -Vertex 393: Normal -Vertex 394: Normal -Vertex 395: Normal -Vertex 396: Normal -Vertex 397: Normal -Vertex 398: Normal -Vertex 399: Normal -Vertex 400: Normal -Vertex 401: Normal -Vertex 402: Normal -Vertex 403: Normal -Vertex 404: Normal -Vertex 405: Normal -Vertex 406: Normal -Vertex 407: Normal -Vertex 408: Normal -Vertex 409: Normal -Vertex 410: Normal -Vertex 411: Normal -Vertex 412: Normal -Vertex 413: Normal -Vertex 414: Normal -Vertex 415: Normal -Vertex 416: Normal -Vertex 417: Normal -Vertex 418: Normal -Vertex 419: Normal -Vertex 420: Normal -Vertex 421: Normal -Vertex 422: Normal -Vertex 423: Normal -Vertex 424: Normal -Vertex 425: Normal -Vertex 426: Normal -Vertex 427: Normal -Vertex 428: Normal -Vertex 429: Normal -Vertex 430: Normal -Vertex 431: Normal -Vertex 432: Normal -Vertex 433: Normal -Vertex 434: Normal -Vertex 435: Normal -Vertex 436: Normal -Vertex 437: Normal -Vertex 438: Normal -Vertex 439: Normal -Vertex 440: Normal -Vertex 441: Normal -Vertex 442: Normal -Vertex 443: Normal -Vertex 444: Normal -Vertex 445: Normal -Vertex 446: Normal -Vertex 447: Normal -Vertex 448: Normal -Vertex 449: Normal -Vertex 450: Normal -Vertex 451: Normal -Vertex 452: Normal -Vertex 453: Normal -Vertex 454: Normal -Vertex 455: Normal -Vertex 456: Normal -Vertex 457: Normal -Vertex 458: Normal -Vertex 459: Normal -Vertex 460: Normal -Vertex 461: Normal -Vertex 462: Normal -Vertex 463: Normal -Vertex 464: Normal -Vertex 465: Normal -Vertex 466: Normal -Vertex 467: Normal -Vertex 468: Normal -Vertex 469: Normal -Vertex 470: Normal -Vertex 471: Normal -Vertex 472: Normal -Vertex 473: Normal -Vertex 474: Normal -Vertex 475: Normal -Vertex 476: Normal -Vertex 477: Normal -Vertex 478: Normal -Vertex 479: Normal -Vertex 480: Normal -Vertex 481: Normal -Vertex 482: Normal -Vertex 483: Normal -Vertex 484: Normal -Vertex 485: Normal -Vertex 486: Normal -Vertex 487: Normal -Vertex 488: Normal -Vertex 489: Normal -Vertex 490: Normal -Vertex 491: Normal -Vertex 492: Normal -Vertex 493: Normal -Vertex 494: Normal -Vertex 495: Normal -Vertex 496: Normal -Vertex 497: Normal -Vertex 498: Normal -Vertex 499: Normal -Vertex 500: Normal -Vertex 501: Normal -Vertex 502: Normal -Vertex 503: Normal -Vertex 504: Normal -Vertex 505: Normal -Vertex 506: Normal -Vertex 507: Normal -Vertex 508: Normal -Vertex 509: Normal -Vertex 510: Normal -Vertex 511: Normal -Vertex 512: Normal -Vertex 513: Normal -Vertex 514: Normal -Vertex 515: Normal -Vertex 516: Normal -Vertex 517: Normal -Vertex 518: Normal -Vertex 519: Normal -Vertex 520: Normal -Vertex 521: Normal -Vertex 522: Normal -Vertex 523: Normal -Vertex 524: Normal -Vertex 525: Normal -Vertex 526: Normal -Vertex 527: Normal -Vertex 528: Normal -Vertex 529: Normal -Vertex 530: Normal -Vertex 531: Normal -Vertex 532: Normal -Vertex 533: Normal -Vertex 534: Normal -Vertex 535: Normal -Vertex 536: Normal -Vertex 537: Normal -Vertex 538: Normal -Vertex 539: Normal -Vertex 540: Normal -Vertex 541: Normal -Vertex 542: Normal -Vertex 543: Normal -Vertex 544: Normal -Vertex 545: Normal -Vertex 546: Normal -Vertex 547: Normal -Vertex 548: Normal -Vertex 549: Normal -Vertex 550: Normal -Vertex 551: Normal -Vertex 552: Normal -Vertex 553: Normal -Vertex 554: Normal -Vertex 555: Normal -Vertex 556: Normal -Vertex 557: Normal -Vertex 558: Normal -Vertex 559: Normal -Vertex 560: Normal -Vertex 561: Normal -Vertex 562: Normal -Vertex 563: Normal -Vertex 564: Normal -Vertex 565: Normal -Vertex 566: Normal -Vertex 567: Normal -Vertex 568: Normal -Vertex 569: Normal -Vertex 570: Normal -Vertex 571: Normal -Vertex 572: Normal -Vertex 573: Normal -Vertex 574: Normal -Vertex 575: Normal -Vertex 576: Normal -Vertex 577: Normal -Vertex 578: Normal -Vertex 579: Normal -Vertex 580: Normal -Vertex 581: Normal -Vertex 582: Normal -Vertex 583: Normal -Vertex 584: Normal -Vertex 585: Normal -Vertex 586: Normal -Vertex 587: Normal -Vertex 588: Normal -Vertex 589: Normal -Vertex 590: Normal -Vertex 591: Normal -Vertex 592: Normal -Vertex 593: Normal -Vertex 594: Normal -Vertex 595: Normal -Vertex 596: Normal -Vertex 597: Normal -Vertex 598: Normal -Vertex 599: Normal -Vertex 600: Normal -Vertex 601: Normal -Vertex 602: Normal -Vertex 603: Normal -Vertex 604: Normal -Vertex 605: Normal -Vertex 606: Normal -Vertex 607: Normal -Vertex 608: Normal -Vertex 609: Normal -Vertex 610: Normal -Vertex 611: Normal -Vertex 612: Normal -Vertex 613: Normal -Vertex 614: Normal -Vertex 615: Normal -Vertex 616: Normal -Vertex 617: Normal -Vertex 618: Normal -Vertex 619: Normal -Vertex 620: Normal -Vertex 621: Normal -Vertex 622: Normal -Vertex 623: Normal -Vertex 624: Normal -Vertex 625: Normal -Vertex 626: Normal -Vertex 627: Normal -Vertex 628: Normal -Vertex 629: Normal -Vertex 630: Normal -Vertex 631: Normal -Vertex 632: Normal -Vertex 633: Normal -Vertex 634: Normal -Vertex 635: Normal -Vertex 636: Normal -Vertex 637: Normal -Vertex 638: Normal -Vertex 639: Normal -Vertex 640: Normal -Vertex 641: Normal -Vertex 642: Normal -Vertex 643: Normal -Vertex 644: Normal -Vertex 645: Normal -Vertex 646: Normal -Vertex 647: Normal -Vertex 648: Normal -Vertex 649: Normal -Vertex 650: Normal -Vertex 651: Normal -Vertex 652: Normal -Vertex 653: Normal -Vertex 654: Normal -Vertex 655: Normal -Vertex 656: Normal -Vertex 657: Normal -Vertex 658: Normal -Vertex 659: Normal -Vertex 660: Normal -Vertex 661: Normal -Vertex 662: Normal -Vertex 663: Normal -Vertex 664: Normal -Vertex 665: Normal -Vertex 666: Normal -Vertex 667: Normal -Vertex 668: Normal -Vertex 669: Normal -Vertex 670: Normal -Vertex 671: Normal -Vertex 672: Normal -Vertex 673: Normal -Vertex 674: Normal -Vertex 675: Normal -Vertex 676: Normal -Vertex 677: Normal -Vertex 678: Normal -Vertex 679: Normal -Vertex 680: Normal -Vertex 681: Normal -Vertex 682: Normal -Vertex 683: Normal -Vertex 684: Normal -Vertex 685: Normal -Vertex 686: Normal -Vertex 687: Normal -Vertex 688: Normal -Vertex 689: Normal -Vertex 690: Normal -Vertex 691: Normal -Vertex 692: Normal -Vertex 693: Normal -Vertex 694: Normal -Vertex 695: Normal -Vertex 696: Normal -Vertex 697: Normal -Vertex 698: Normal -Vertex 699: Normal -Vertex 700: Normal -Vertex 701: Normal -Vertex 702: Normal -Vertex 703: Normal -Vertex 704: Normal -Vertex 705: Normal -Vertex 706: Normal -Vertex 707: Normal -Vertex 708: Normal -Vertex 709: Normal -Vertex 710: Normal -Vertex 711: Normal -Vertex 712: Normal -Vertex 713: Normal -Vertex 714: Normal -Vertex 715: Normal -Vertex 716: Normal -Vertex 717: Normal -Vertex 718: Normal -Vertex 719: Normal -Vertex 720: Normal -Vertex 721: Normal -Vertex 722: Normal -Vertex 723: Normal -Vertex 724: Normal -Vertex 725: Normal -Vertex 726: Normal -Vertex 727: Normal -Vertex 728: Normal -Vertex 729: Normal -Vertex 730: Normal -Vertex 731: Normal -Vertex 732: Normal -Vertex 733: Normal -Vertex 734: Normal -Vertex 735: Normal -Vertex 736: Normal -Vertex 737: Normal -Vertex 738: Normal -Vertex 739: Normal -Vertex 740: Normal -Vertex 741: Normal -Vertex 742: Normal -Vertex 743: Normal -Vertex 744: Normal -Vertex 745: Normal -Vertex 746: Normal -Vertex 747: Normal -Vertex 748: Normal -Vertex 749: Normal -Vertex 750: Normal -Vertex 751: Normal -Vertex 752: Normal -Vertex 753: Normal -Vertex 754: Normal -Vertex 755: Normal -Vertex 756: Normal -Vertex 757: Normal -Vertex 758: Normal -Vertex 759: Normal -Vertex 760: Normal -Vertex 761: Normal -Vertex 762: Normal -Vertex 763: Normal -Vertex 764: Normal -Vertex 765: Normal -Vertex 766: Normal -Vertex 767: Normal -Vertex 768: Normal -Vertex 769: Normal -Vertex 770: Normal -Vertex 771: Normal -Vertex 772: Normal -Vertex 773: Normal -Vertex 774: Normal -Vertex 775: Normal -Vertex 776: Normal -Vertex 777: Normal -Vertex 778: Normal -Vertex 779: Normal -Vertex 780: Normal -Vertex 781: Normal -Vertex 782: Normal -Vertex 783: Normal -Vertex 784: Normal -Vertex 785: Normal -Vertex 786: Normal -Vertex 787: Normal -Vertex 788: Normal -Vertex 789: Normal -Vertex 790: Normal -Vertex 791: Normal -Vertex 792: Normal -Vertex 793: Normal -Vertex 794: Normal -Vertex 795: Normal -Vertex 796: Normal -Vertex 797: Normal -Vertex 798: Normal -Vertex 799: Normal -Vertex 800: Normal -Vertex 801: Normal -Vertex 802: Normal -Vertex 803: Normal -Vertex 804: Normal -Vertex 805: Normal -Vertex 806: Normal -Vertex 807: Normal -Vertex 808: Normal -Vertex 809: Normal -Vertex 810: Normal -Vertex 811: Normal -Vertex 812: Normal -Vertex 813: Normal -Vertex 814: Normal -Vertex 815: Normal -Vertex 816: Normal -Vertex 817: Normal -Vertex 818: Normal -Vertex 819: Normal -Vertex 820: Normal -Vertex 821: Normal -Vertex 822: Normal -Vertex 823: Normal -Vertex 824: Normal -Vertex 825: Normal -Vertex 826: Normal -Vertex 827: Normal -Vertex 828: Normal -Vertex 829: Normal -Vertex 830: Normal -Vertex 831: Normal -Vertex 832: Normal -Vertex 833: Normal -Vertex 834: Normal -Vertex 835: Normal -Vertex 836: Normal -Vertex 837: Normal -Vertex 838: Normal -Vertex 839: Normal -Vertex 840: Normal -Vertex 841: Normal -Vertex 842: Normal -Vertex 843: Normal -Vertex 844: Normal -Vertex 845: Normal -Vertex 846: Normal -Vertex 847: Normal -Vertex 848: Normal -Vertex 849: Normal -Vertex 850: Normal -Vertex 851: Normal -Vertex 852: Normal -Vertex 853: Normal -Vertex 854: Normal -Vertex 855: Normal -Vertex 856: Normal -Vertex 857: Normal -Vertex 858: Normal -Vertex 859: Normal -Vertex 860: Normal -Vertex 861: Normal -Vertex 862: Normal -Vertex 863: Normal -Vertex 864: Normal -Vertex 865: Normal -Vertex 866: Normal -Vertex 867: Normal -Vertex 868: Normal -Vertex 869: Normal -Vertex 870: Normal -Vertex 871: Normal -Vertex 872: Normal -Vertex 873: Normal -Vertex 874: Normal -Vertex 875: Normal -Vertex 876: Normal -Vertex 877: Normal -Vertex 878: Normal -Vertex 879: Normal -Vertex 880: Normal -Vertex 881: Normal -Vertex 882: Normal -Vertex 883: Normal -Vertex 884: Normal -Vertex 885: Normal -Vertex 886: Normal -Vertex 887: Normal -Vertex 888: Normal -Vertex 889: Normal -Vertex 890: Normal -Vertex 891: Normal -Vertex 892: Normal -Vertex 893: Normal -Vertex 894: Normal -Vertex 895: Normal -Vertex 896: Normal -Vertex 897: Normal -Vertex 898: Normal -Vertex 899: Normal -Vertex 900: Normal -Vertex 901: Normal -Vertex 902: Normal -Vertex 903: Normal -Vertex 904: Normal -Vertex 905: Normal -Vertex 906: Normal -Vertex 907: Normal -Vertex 908: Normal -Vertex 909: Normal -Vertex 910: Normal -Vertex 911: Normal -Vertex 912: Normal -Vertex 913: Normal -Vertex 914: Normal -Vertex 915: Normal -Vertex 916: Normal -Vertex 917: Normal -Vertex 918: Normal -Vertex 919: Normal -Vertex 920: Normal -Vertex 921: Normal -Vertex 922: Normal -Vertex 923: Normal -Vertex 924: Normal -Vertex 925: Normal -Vertex 926: Normal -Vertex 927: Normal -Vertex 928: Normal -Vertex 929: Normal -Vertex 930: Normal -Vertex 931: Normal -Vertex 932: Normal -Vertex 933: Normal -Vertex 934: Normal -Vertex 935: Normal -Vertex 936: Normal -Vertex 937: Normal -Vertex 938: Normal -Vertex 939: Normal -Vertex 940: Normal -Vertex 941: Normal -Vertex 942: Normal -Vertex 943: Normal -Vertex 944: Normal -Vertex 945: Normal -Vertex 946: Normal -Vertex 947: Normal -Vertex 948: Normal -Vertex 949: Normal -Vertex 950: Normal -Vertex 951: Normal -Vertex 952: Normal -Vertex 953: Normal -Vertex 954: Normal -Vertex 955: Normal -Vertex 956: Normal -Vertex 957: Normal -Vertex 958: Normal -Vertex 959: Normal -Vertex 960: Normal -Vertex 961: Normal -Vertex 962: Normal -Vertex 963: Normal -Vertex 964: Normal -Vertex 965: Normal -Vertex 966: Normal -Vertex 967: Normal -Vertex 968: Normal -Vertex 969: Normal -Vertex 970: Normal -Vertex 971: Normal -Vertex 972: Normal -Vertex 973: Normal -Vertex 974: Normal -Vertex 975: Normal -Vertex 976: Normal -Vertex 977: Normal -Vertex 978: Normal -Vertex 979: Normal -Vertex 980: Normal -Vertex 981: Normal -Vertex 982: Normal -Vertex 983: Normal -Vertex 984: Normal -Vertex 985: Normal -Vertex 986: Normal -Vertex 987: Normal -Vertex 988: Normal -Vertex 989: Normal -Vertex 990: Normal -Vertex 991: Normal -Vertex 992: Normal -Vertex 993: Normal -Vertex 994: Normal -Vertex 995: Normal -Vertex 996: Normal -Vertex 997: Normal -Vertex 998: Normal -Vertex 999: Normal -Vertex 1000: Normal -Vertex 1001: Normal -Vertex 1002: Normal -Vertex 1003: Normal -Vertex 1004: Normal -Vertex 1005: Normal -Vertex 1006: Normal -Vertex 1007: Normal -Vertex 1008: Normal -Vertex 1009: Normal -Vertex 1010: Normal -Vertex 1011: Normal -Vertex 1012: Normal -Vertex 1013: Normal -Vertex 1014: Normal -Vertex 1015: Normal -Vertex 1016: Normal -Vertex 1017: Normal -Vertex 1018: Normal -Vertex 1019: Normal -Vertex 1020: Normal -Vertex 1021: Normal -Vertex 1022: Normal -Vertex 1023: Normal -Vertex 1024: Normal -Vertex 1025: Normal -Vertex 1026: Normal -Vertex 1027: Normal -Vertex 1028: Normal -Vertex 1029: Normal -Vertex 1030: Normal -Vertex 1031: Normal -Vertex 1032: Normal -Vertex 1033: Normal -Vertex 1034: Normal -Vertex 1035: Normal -Vertex 1036: Normal -Vertex 1037: Normal -Vertex 1038: Normal -Vertex 1039: Normal -Vertex 1040: Normal -Vertex 1041: Normal -Vertex 1042: Normal -Vertex 1043: Normal -Vertex 1044: Normal -Vertex 1045: Normal -Vertex 1046: Normal -Vertex 1047: Normal -Vertex 1048: Normal -Vertex 1049: Normal -Vertex 1050: Normal -Vertex 1051: Normal -Vertex 1052: Normal -Vertex 1053: Normal -Vertex 1054: Normal -Vertex 1055: Normal -Vertex 1056: Normal -Vertex 1057: Normal -Vertex 1058: Normal -Vertex 1059: Normal -Vertex 1060: Normal -Vertex 1061: Normal -Vertex 1062: Normal -Vertex 1063: Normal -Vertex 1064: Normal -Vertex 1065: Normal -Vertex 1066: Normal -Vertex 1067: Normal -Vertex 1068: Normal -Vertex 1069: Normal -Vertex 1070: Normal -Vertex 1071: Normal -Vertex 1072: Normal -Vertex 1073: Normal -Vertex 1074: Normal -Vertex 1075: Normal -Vertex 1076: Normal -Vertex 1077: Normal -Vertex 1078: Normal -Vertex 1079: Normal -Vertex 1080: Normal -Vertex 1081: Normal -Vertex 1082: Normal -Vertex 1083: Normal -Vertex 1084: Normal -Vertex 1085: Normal -Vertex 1086: Normal -Vertex 1087: Normal -Vertex 1088: Normal -Vertex 1089: Normal -Vertex 1090: Normal -Vertex 1091: Normal -Vertex 1092: Normal -Vertex 1093: Normal -Vertex 1094: Normal -Vertex 1095: Normal -Vertex 1096: Normal -Vertex 1097: Normal -Vertex 1098: Normal -Vertex 1099: Normal -Vertex 1100: Normal -Vertex 1101: Normal -Vertex 1102: Normal -Vertex 1103: Normal -Vertex 1104: Normal -Vertex 1105: Normal -Vertex 1106: Normal -Vertex 1107: Normal -Vertex 1108: Normal -Vertex 1109: Normal -Vertex 1110: Normal -Vertex 1111: Normal -Vertex 1112: Normal -Vertex 1113: Normal -Vertex 1114: Normal -Vertex 1115: Normal -Vertex 1116: Normal -Vertex 1117: Normal -Vertex 1118: Normal -Vertex 1119: Normal -Vertex 1120: Normal -Vertex 1121: Normal -Vertex 1122: Normal -Vertex 1123: Normal -Vertex 1124: Normal -Vertex 1125: Normal -Vertex 1126: Normal -Vertex 1127: Normal -Vertex 1128: Normal -Vertex 1129: Normal -Vertex 1130: Normal -Vertex 1131: Normal -Vertex 1132: Normal -Vertex 1133: Normal -Vertex 1134: Normal -Vertex 1135: Normal -Vertex 1136: Normal -Vertex 1137: Normal -Vertex 1138: Normal -Vertex 1139: Normal -Vertex 1140: Normal -Vertex 1141: Normal -Vertex 1142: Normal -Vertex 1143: Normal -Vertex 1144: Normal -Vertex 1145: Normal -Vertex 1146: Normal -Vertex 1147: Normal -Vertex 1148: Normal -Vertex 1149: Normal -Vertex 1150: Normal -Vertex 1151: Normal -Vertex 1152: Normal -Vertex 1153: Normal -Vertex 1154: Normal -Vertex 1155: Normal -Vertex 1156: Normal -Vertex 1157: Normal -Vertex 1158: Normal -Vertex 1159: Normal -Vertex 1160: Normal -Vertex 1161: Normal -Vertex 1162: Normal -Vertex 1163: Normal -Vertex 1164: Normal -Vertex 1165: Normal -Vertex 1166: Normal -Vertex 1167: Normal -Vertex 1168: Normal -Vertex 1169: Normal -Vertex 1170: Normal -Vertex 1171: Normal -Vertex 1172: Normal -Vertex 1173: Normal -Vertex 1174: Normal -Vertex 1175: Normal -Vertex 1176: Normal -Vertex 1177: Normal -Vertex 1178: Normal -Vertex 1179: Normal -Vertex 1180: Normal -Vertex 1181: Normal -Vertex 1182: Normal -Vertex 1183: Normal -Vertex 1184: Normal -Vertex 1185: Normal -Vertex 1186: Normal -Vertex 1187: Normal -Vertex 1188: Normal -Vertex 1189: Normal -Vertex 1190: Normal -Vertex 1191: Normal -Vertex 1192: Normal -Vertex 1193: Normal -Vertex 1194: Normal -Vertex 1195: Normal -Vertex 1196: Normal -Vertex 1197: Normal -Vertex 1198: Normal -Vertex 1199: Normal -Vertex 1200: Normal -Vertex 1201: Normal -Vertex 1202: Normal -Vertex 1203: Normal -Vertex 1204: Normal -Vertex 1205: Normal -Vertex 1206: Normal -Vertex 1207: Normal -Vertex 1208: Normal -Vertex 1209: Normal -Vertex 1210: Normal -Vertex 1211: Normal -Vertex 1212: Normal -Vertex 1213: Normal -Vertex 1214: Normal -Vertex 1215: Normal -Vertex 1216: Normal -Vertex 1217: Normal -Vertex 1218: Normal -Vertex 1219: Normal -Vertex 1220: Normal -Vertex 1221: Normal -Vertex 1222: Normal -Vertex 1223: Normal -Vertex 1224: Normal -Vertex 1225: Normal -Vertex 1226: Normal -Vertex 1227: Normal -Vertex 1228: Normal -Vertex 1229: Normal -Vertex 1230: Normal -Vertex 1231: Normal -Vertex 1232: Normal -Vertex 1233: Normal -Vertex 1234: Normal -Vertex 1235: Normal -Vertex 1236: Normal -Vertex 1237: Normal -Vertex 1238: Normal -Vertex 1239: Normal -Vertex 1240: Normal -Vertex 1241: Normal -Vertex 1242: Normal -Vertex 1243: Normal -Vertex 1244: Normal -Vertex 1245: Normal -Vertex 1246: Normal -Vertex 1247: Normal -Vertex 1248: Normal -Vertex 1249: Normal -Vertex 1250: Normal -Vertex 1251: Normal -Vertex 1252: Normal -Vertex 1253: Normal -Vertex 1254: Normal -Vertex 1255: Normal -Vertex 1256: Normal -Vertex 1257: Normal -Vertex 1258: Normal -Vertex 1259: Normal -Vertex 1260: Normal -Vertex 1261: Normal -Vertex 1262: Normal -Vertex 1263: Normal -Vertex 1264: Normal -Vertex 1265: Normal -Vertex 1266: Normal -Vertex 1267: Normal -Vertex 1268: Normal -Vertex 1269: Normal -Vertex 1270: Normal -Vertex 1271: Normal -Vertex 1272: Normal -Vertex 1273: Normal -Vertex 1274: Normal -Vertex 1275: Normal -Vertex 1276: Normal -Vertex 1277: Normal -Vertex 1278: Normal -Vertex 1279: Normal -Vertex 1280: Normal -Vertex 1281: Normal -Vertex 1282: Normal -Vertex 1283: Normal -Vertex 1284: Normal -Vertex 1285: Normal -Vertex 1286: Normal -Vertex 1287: Normal -Vertex 1288: Normal -Vertex 1289: Normal -Vertex 1290: Normal -Vertex 1291: Normal -Vertex 1292: Normal -Vertex 1293: Normal -Vertex 1294: Normal -Vertex 1295: Normal -Vertex 1296: Normal -Vertex 1297: Normal -Vertex 1298: Normal -Vertex 1299: Normal -Vertex 1300: Normal -Vertex 1301: Normal -Vertex 1302: Normal -Vertex 1303: Normal -Vertex 1304: Normal -Vertex 1305: Normal -Vertex 1306: Normal -Vertex 1307: Normal -Vertex 1308: Normal -Vertex 1309: Normal -Vertex 1310: Normal -Vertex 1311: Normal -Vertex 1312: Normal -Vertex 1313: Normal -Vertex 1314: Normal -Vertex 1315: Normal -Vertex 1316: Normal -Vertex 1317: Normal -Vertex 1318: Normal -Vertex 1319: Normal -Vertex 1320: Normal -Vertex 1321: Normal -Vertex 1322: Normal -Vertex 1323: Normal -Vertex 1324: Normal -Vertex 1325: Normal -Vertex 1326: Normal -Vertex 1327: Normal -Vertex 1328: Normal -Vertex 1329: Normal -Vertex 1330: Normal -Vertex 1331: Normal -Vertex 1332: Normal -Vertex 1333: Normal -Vertex 1334: Normal -Vertex 1335: Normal -Vertex 1336: Normal -Vertex 1337: Normal -Vertex 1338: Normal -Vertex 1339: Normal -Vertex 1340: Normal -Vertex 1341: Normal -Vertex 1342: Normal -Vertex 1343: Normal -Vertex 1344: Normal -Vertex 1345: Normal -Vertex 1346: Normal -Vertex 1347: Normal -Vertex 1348: Normal -Vertex 1349: Normal -Vertex 1350: Normal -Vertex 1351: Normal -Vertex 1352: Normal -Vertex 1353: Normal -Vertex 1354: Normal -Vertex 1355: Normal -Vertex 1356: Normal -Vertex 1357: Normal -Vertex 1358: Normal -Vertex 1359: Normal -Vertex 1360: Normal -Vertex 1361: Normal -Vertex 1362: Normal -Vertex 1363: Normal -Vertex 1364: Normal -Vertex 1365: Normal -Vertex 1366: Normal -Vertex 1367: Normal -Vertex 1368: Normal -Vertex 1369: Normal -Vertex 1370: Normal -Vertex 1371: Normal -Vertex 1372: Normal -Vertex 1373: Normal -Vertex 1374: Normal -Vertex 1375: Normal -Vertex 1376: Normal -Vertex 1377: Normal -Vertex 1378: Normal -Vertex 1379: Normal -Vertex 1380: Normal -Vertex 1381: Normal -Vertex 1382: Normal -Vertex 1383: Normal -Vertex 1384: Normal -Vertex 1385: Normal -Vertex 1386: Normal -Vertex 1387: Normal -Vertex 1388: Normal -Vertex 1389: Normal -Vertex 1390: Normal -Vertex 1391: Normal -Vertex 1392: Normal -Vertex 1393: Normal -Vertex 1394: Normal -Vertex 1395: Normal -Vertex 1396: Normal -Vertex 1397: Normal -Vertex 1398: Normal -Vertex 1399: Normal -Vertex 1400: Normal -Vertex 1401: Normal -Vertex 1402: Normal -Vertex 1403: Normal -Vertex 1404: Normal -Vertex 1405: Normal -Vertex 1406: Normal -Vertex 1407: Normal -Vertex 1408: Normal -Vertex 1409: Normal -Vertex 1410: Normal -Vertex 1411: Normal -Vertex 1412: Normal -Vertex 1413: Normal -Vertex 1414: Normal -Vertex 1415: Normal -Vertex 1416: Normal -Vertex 1417: Normal -Vertex 1418: Normal -Vertex 1419: Normal -Vertex 1420: Normal -Vertex 1421: Normal -Vertex 1422: Normal -Vertex 1423: Normal -Vertex 1424: Normal -Vertex 1425: Normal -Vertex 1426: Normal -Vertex 1427: Normal -Vertex 1428: Normal -Vertex 1429: Normal -Vertex 1430: Normal -Vertex 1431: Normal -Vertex 1432: Normal -Vertex 1433: Normal -Vertex 1434: Normal -Vertex 1435: Normal -Vertex 1436: Normal -Vertex 1437: Normal -Vertex 1438: Normal -Vertex 1439: Normal -Vertex 1440: Normal -Vertex 1441: Normal -Vertex 1442: Normal -Vertex 1443: Normal -Vertex 1444: Normal -Vertex 1445: Normal -Vertex 1446: Normal -Vertex 1447: Normal -Vertex 1448: Normal -Vertex 1449: Normal -Vertex 1450: Normal -Vertex 1451: Normal -Vertex 1452: Normal -Vertex 1453: Normal -Vertex 1454: Normal -Vertex 1455: Normal -Vertex 1456: Normal -Vertex 1457: Normal -Vertex 1458: Normal -Vertex 1459: Normal -Vertex 1460: Normal -Vertex 1461: Normal -Vertex 1462: Normal -Vertex 1463: Normal -Vertex 1464: Normal -Vertex 1465: Normal -Vertex 1466: Normal -Vertex 1467: Normal -Vertex 1468: Normal -Vertex 1469: Normal -Vertex 1470: Normal -Vertex 1471: Normal -Vertex 1472: Normal -Vertex 1473: Normal -Vertex 1474: Normal -Vertex 1475: Normal -Vertex 1476: Normal -Vertex 1477: Normal -Vertex 1478: Normal -Vertex 1479: Normal -Vertex 1480: Normal -Vertex 1481: Normal -Vertex 1482: Normal -Vertex 1483: Normal -Vertex 1484: Normal -Vertex 1485: Normal -Vertex 1486: Normal -Vertex 1487: Normal -Vertex 1488: Normal -Vertex 1489: Normal -Vertex 1490: Normal -Vertex 1491: Normal -Vertex 1492: Normal -Vertex 1493: Normal -Vertex 1494: Normal -Vertex 1495: Normal -Vertex 1496: Normal -Vertex 1497: Normal -Vertex 1498: Normal -Vertex 1499: Normal -Vertex 1500: Normal -Vertex 1501: Normal -Vertex 1502: Normal -Vertex 1503: Normal -Vertex 1504: Normal -Vertex 1505: Normal -Vertex 1506: Normal -Vertex 1507: Normal -Vertex 1508: Normal -Vertex 1509: Normal -Vertex 1510: Normal -Vertex 1511: Normal -Vertex 1512: Normal -Vertex 1513: Normal -Vertex 1514: Normal -Vertex 1515: Normal -Vertex 1516: Normal -Vertex 1517: Normal -Vertex 1518: Normal -Vertex 1519: Normal -Vertex 1520: Normal -Vertex 1521: Normal -Vertex 1522: Normal -Vertex 1523: Normal -Vertex 1524: Normal -Vertex 1525: Normal -Vertex 1526: Normal -Vertex 1527: Normal -Vertex 1528: Normal -Vertex 1529: Normal -Vertex 1530: Normal -Vertex 1531: Normal -Vertex 1532: Normal -Vertex 1533: Normal -Vertex 1534: Normal -Vertex 1535: Normal -Vertex 1536: Normal -Vertex 1537: Normal -Vertex 1538: Normal -Vertex 1539: Normal -Vertex 1540: Normal -Vertex 1541: Normal -Vertex 1542: Normal -Vertex 1543: Normal -Vertex 1544: Normal -Vertex 1545: Normal -Vertex 1546: Normal -Vertex 1547: Normal -Vertex 1548: Normal -Vertex 1549: Normal -Vertex 1550: Normal -Vertex 1551: Normal -Vertex 1552: Normal -Vertex 1553: Normal -Vertex 1554: Normal -Vertex 1555: Normal -Vertex 1556: Normal -Vertex 1557: Normal -Vertex 1558: Normal -Vertex 1559: Normal -Vertex 1560: Normal -Vertex 1561: Normal -Vertex 1562: Normal -Vertex 1563: Normal -Vertex 1564: Normal -Vertex 1565: Normal -Vertex 1566: Normal -Vertex 1567: Normal -Vertex 1568: Normal -Vertex 1569: Normal -Vertex 1570: Normal -Vertex 1571: Normal -Vertex 1572: Normal -Vertex 1573: Normal -Vertex 1574: Normal -Vertex 1575: Normal -Vertex 1576: Normal -Vertex 1577: Normal -Vertex 1578: Normal -Vertex 1579: Normal -Vertex 1580: Normal -Vertex 1581: Normal -Vertex 1582: Normal -Vertex 1583: Normal -Vertex 1584: Normal -Vertex 1585: Normal -Vertex 1586: Normal -Vertex 1587: Normal -Vertex 1588: Normal -Vertex 1589: Normal -Vertex 1590: Normal -Vertex 1591: Normal -Vertex 1592: Normal -Vertex 1593: Normal -Vertex 1594: Normal -Vertex 1595: Normal -Vertex 1596: Normal -Vertex 1597: Normal -Vertex 1598: Normal -Vertex 1599: Normal -Vertex 1600: Normal -Vertex 1601: Normal -Vertex 1602: Normal -Vertex 1603: Normal -Vertex 1604: Normal -Vertex 1605: Normal -Vertex 1606: Normal -Vertex 1607: Normal -Vertex 1608: Normal -Vertex 1609: Normal -Vertex 1610: Normal -Vertex 1611: Normal -Vertex 1612: Normal -Vertex 1613: Normal -Vertex 1614: Normal -Vertex 1615: Normal -Vertex 1616: Normal -Vertex 1617: Normal -Vertex 1618: Normal -Vertex 1619: Normal -Vertex 1620: Normal -Vertex 1621: Normal -Vertex 1622: Normal -Vertex 1623: Normal -Vertex 1624: Normal -Vertex 1625: Normal -Vertex 1626: Normal -Vertex 1627: Normal -Vertex 1628: Normal -Vertex 1629: Normal -Vertex 1630: Normal -Vertex 1631: Normal -Vertex 1632: Normal -Vertex 1633: Normal -Vertex 1634: Normal -Vertex 1635: Normal -Vertex 1636: Normal -Vertex 1637: Normal -Vertex 1638: Normal -Vertex 1639: Normal -Vertex 1640: Normal -Vertex 1641: Normal -Vertex 1642: Normal -Vertex 1643: Normal -Vertex 1644: Normal -Vertex 1645: Normal -Vertex 1646: Normal -Vertex 1647: Normal -Vertex 1648: Normal -Vertex 1649: Normal -Vertex 1650: Normal -Vertex 1651: Normal -Vertex 1652: Normal -Vertex 1653: Normal -Vertex 1654: Normal -Vertex 1655: Normal -Vertex 1656: Normal -Vertex 1657: Normal -Vertex 1658: Normal -Vertex 1659: Normal -Vertex 1660: Normal -Vertex 1661: Normal -Vertex 1662: Normal -Vertex 1663: Normal -Vertex 1664: Normal -Vertex 1665: Normal -Vertex 1666: Normal -Vertex 1667: Normal -Vertex 1668: Normal -Vertex 1669: Normal -Vertex 1670: Normal -Vertex 1671: Normal -Vertex 1672: Normal -Vertex 1673: Normal -Vertex 1674: Normal -Vertex 1675: Normal -Vertex 1676: Normal -Vertex 1677: Normal -Vertex 1678: Normal -Vertex 1679: Normal -Vertex 1680: Normal -Vertex 1681: Normal -Vertex 1682: Normal -Vertex 1683: Normal -Vertex 1684: Normal -Vertex 1685: Normal -Vertex 1686: Normal -Vertex 1687: Normal -Vertex 1688: Normal -Vertex 1689: Normal -Vertex 1690: Normal -Vertex 1691: Normal -Vertex 1692: Normal -Vertex 1693: Normal -Vertex 1694: Normal -Vertex 1695: Normal -Vertex 1696: Normal -Vertex 1697: Normal -Vertex 1698: Normal -Vertex 1699: Normal -Vertex 1700: Normal -Vertex 1701: Normal -Vertex 1702: Normal -Vertex 1703: Normal -Vertex 1704: Normal -Vertex 1705: Normal -Vertex 1706: Normal -Vertex 1707: Normal -Vertex 1708: Normal -Vertex 1709: Normal -Vertex 1710: Normal -Vertex 1711: Normal -Vertex 1712: Normal -Vertex 1713: Normal -Vertex 1714: Normal -Vertex 1715: Normal -Vertex 1716: Normal -Vertex 1717: Normal -Vertex 1718: Normal -Vertex 1719: Normal -Vertex 1720: Normal -Vertex 1721: Normal -Vertex 1722: Normal -Vertex 1723: Normal -Vertex 1724: Normal -Vertex 1725: Normal -Vertex 1726: Normal -Vertex 1727: Normal -Vertex 1728: Normal -Vertex 1729: Normal -Vertex 1730: Normal -Vertex 1731: Normal -Vertex 1732: Normal -Vertex 1733: Normal -Vertex 1734: Normal -Vertex 1735: Normal -Vertex 1736: Normal -Vertex 1737: Normal -Vertex 1738: Normal -Vertex 1739: Normal -Vertex 1740: Normal -Vertex 1741: Normal -Vertex 1742: Normal -Vertex 1743: Normal -Vertex 1744: Normal -Vertex 1745: Normal -Vertex 1746: Normal -Vertex 1747: Normal -Vertex 1748: Normal -Vertex 1749: Normal -Vertex 1750: Normal -Vertex 1751: Normal -Vertex 1752: Normal -Vertex 1753: Normal -Vertex 1754: Normal -Vertex 1755: Normal -Vertex 1756: Normal -Vertex 1757: Normal -Vertex 1758: Normal -Vertex 1759: Normal -Vertex 1760: Normal -Vertex 1761: Normal -Vertex 1762: Normal -Vertex 1763: Normal -Vertex 1764: Normal -Vertex 1765: Normal -Vertex 1766: Normal -Vertex 1767: Normal -Vertex 1768: Normal -Vertex 1769: Normal -Vertex 1770: Normal -Vertex 1771: Normal -Vertex 1772: Normal -Vertex 1773: Normal -Vertex 1774: Normal -Vertex 1775: Normal -Vertex 1776: Normal -Vertex 1777: Normal -Vertex 1778: Normal -Vertex 1779: Normal -Vertex 1780: Normal -Vertex 1781: Normal -Vertex 1782: Normal -Vertex 1783: Normal -Vertex 1784: Normal -Vertex 1785: Normal -Vertex 1786: Normal -Vertex 1787: Normal -Vertex 1788: Normal -Vertex 1789: Normal -Vertex 1790: Normal -Vertex 1791: Normal -Vertex 1792: Normal -Vertex 1793: Normal -Vertex 1794: Normal -Vertex 1795: Normal -Vertex 1796: Normal -Vertex 1797: Normal -Vertex 1798: Normal -Vertex 1799: Normal -Vertex 1800: Normal -Vertex 1801: Normal -Vertex 1802: Normal -Vertex 1803: Normal -Vertex 1804: Normal -Vertex 1805: Normal -Vertex 1806: Normal -Vertex 1807: Normal -Vertex 1808: Normal -Vertex 1809: Normal -Vertex 1810: Normal -Vertex 1811: Normal -Vertex 1812: Normal -Vertex 1813: Normal -Vertex 1814: Normal -Vertex 1815: Normal -Vertex 1816: Normal -Vertex 1817: Normal -Vertex 1818: Normal -Vertex 1819: Normal -Vertex 1820: Normal -Vertex 1821: Normal -Vertex 1822: Normal -Vertex 1823: Normal -Vertex 1824: Normal -Vertex 1825: Normal -Vertex 1826: Normal -Vertex 1827: Normal -Vertex 1828: Normal -Vertex 1829: Normal -Vertex 1830: Normal -Vertex 1831: Normal -Vertex 1832: Normal -Vertex 1833: Normal -Vertex 1834: Normal -Vertex 1835: Normal -Vertex 1836: Normal -Vertex 1837: Normal -Vertex 1838: Normal -Vertex 1839: Normal -Vertex 1840: Normal -Vertex 1841: Normal -Vertex 1842: Normal -Vertex 1843: Normal -Vertex 1844: Normal -Vertex 1845: Normal -Vertex 1846: Normal -Vertex 1847: Normal -Vertex 1848: Normal -Vertex 1849: Normal -Vertex 1850: Normal -Vertex 1851: Normal -Vertex 1852: Normal -Vertex 1853: Normal -Vertex 1854: Normal -Vertex 1855: Normal -Vertex 1856: Normal -Vertex 1857: Normal -Vertex 1858: Normal -Vertex 1859: Normal -Vertex 1860: Normal -Vertex 1861: Normal -Vertex 1862: Normal -Vertex 1863: Normal -Vertex 1864: Normal -Vertex 1865: Normal -Vertex 1866: Normal -Vertex 1867: Normal -Vertex 1868: Normal -Vertex 1869: Normal -Vertex 1870: Normal -Vertex 1871: Normal -Vertex 1872: Normal -Vertex 1873: Normal -Vertex 1874: Normal -Vertex 1875: Normal -Vertex 1876: Normal -Vertex 1877: Normal -Vertex 1878: Normal -Vertex 1879: Normal -Vertex 1880: Normal -Vertex 1881: Normal -Vertex 1882: Normal -Vertex 1883: Normal -Vertex 1884: Normal -Vertex 1885: Normal -Vertex 1886: Normal -Vertex 1887: Normal -Vertex 1888: Normal -Vertex 1889: Normal -Vertex 1890: Normal -Vertex 1891: Normal -Vertex 1892: Normal -Vertex 1893: Normal -Vertex 1894: Normal -Vertex 1895: Normal -Vertex 1896: Normal -Vertex 1897: Normal -Vertex 1898: Normal -Vertex 1899: Normal -Vertex 1900: Normal -Vertex 1901: Normal -Vertex 1902: Normal -Vertex 1903: Normal -Vertex 1904: Normal -Vertex 1905: Normal -Vertex 1906: Normal -Vertex 1907: Normal -Vertex 1908: Normal -Vertex 1909: Normal -Vertex 1910: Normal -Vertex 1911: Normal -Vertex 1912: Normal -Vertex 1913: Normal -Vertex 1914: Normal -Vertex 1915: Normal -Vertex 1916: Normal -Vertex 1917: Normal -Vertex 1918: Normal -Vertex 1919: Normal -Vertex 1920: Normal -Vertex 1921: Normal -Vertex 1922: Normal -Vertex 1923: Normal -Vertex 1924: Normal -Vertex 1925: Normal -Vertex 1926: Normal -Vertex 1927: Normal -Vertex 1928: Normal -Vertex 1929: Normal -Vertex 1930: Normal -Vertex 1931: Normal -Vertex 1932: Normal -Vertex 1933: Normal -Vertex 1934: Normal -Vertex 1935: Normal -Vertex 1936: Normal -Vertex 1937: Normal -Vertex 1938: Normal -Vertex 1939: Normal -Vertex 1940: Normal -Vertex 1941: Normal -Vertex 1942: Normal -Vertex 1943: Normal -Vertex 1944: Normal -Vertex 1945: Normal -Vertex 1946: Normal -Vertex 1947: Normal -Vertex 1948: Normal -Vertex 1949: Normal -Vertex 1950: Normal -Vertex 1951: Normal -Vertex 1952: Normal -Vertex 1953: Normal -Vertex 1954: Normal -Vertex 1955: Normal -Vertex 1956: Normal -Vertex 1957: Normal -Vertex 1958: Normal -Vertex 1959: Normal -Vertex 1960: Normal -Vertex 1961: Normal -Vertex 1962: Normal -Vertex 1963: Normal -Vertex 1964: Normal -Vertex 1965: Normal -Vertex 1966: Normal -Vertex 1967: Normal -Vertex 1968: Normal -Vertex 1969: Normal -Vertex 1970: Normal -Vertex 1971: Normal -Vertex 1972: Normal -Vertex 1973: Normal -Vertex 1974: Normal -Vertex 1975: Normal -Vertex 1976: Normal -Vertex 1977: Normal -Vertex 1978: Normal -Vertex 1979: Normal -Vertex 1980: Normal -Vertex 1981: Normal -Vertex 1982: Normal -Vertex 1983: Normal -Vertex 1984: Normal -Vertex 1985: Normal -Vertex 1986: Normal -Vertex 1987: Normal -Vertex 1988: Normal -Vertex 1989: Normal -Vertex 1990: Normal -Vertex 1991: Normal -Vertex 1992: Normal -Vertex 1993: Normal -Vertex 1994: Normal -Vertex 1995: Normal -Vertex 1996: Normal -Vertex 1997: Normal -Vertex 1998: Normal -Vertex 1999: Normal -Vertex 2000: Normal -Vertex 2001: Normal -Vertex 2002: Normal -Vertex 2003: Normal -Vertex 2004: Normal -Vertex 2005: Normal -Vertex 2006: Normal -Vertex 2007: Normal -Vertex 2008: Normal -Vertex 2009: Normal -Vertex 2010: Normal -Vertex 2011: Normal -Vertex 2012: Normal -Vertex 2013: Normal -Vertex 2014: Normal -Vertex 2015: Normal -Vertex 2016: Normal -Vertex 2017: Normal -Vertex 2018: Normal -Vertex 2019: Normal -Vertex 2020: Normal -Vertex 2021: Normal -Vertex 2022: Normal -Vertex 2023: Normal -Vertex 2024: Normal -Vertex 2025: Normal -Vertex 2026: Normal -Vertex 2027: Normal -Vertex 2028: Normal -Vertex 2029: Normal -Vertex 2030: Normal -Vertex 2031: Normal -Vertex 2032: Normal -Vertex 2033: Normal -Vertex 2034: Normal -Vertex 2035: Normal -Vertex 2036: Normal -Vertex 2037: Normal -Vertex 2038: Normal -Vertex 2039: Normal -Vertex 2040: Normal -Vertex 2041: Normal -Vertex 2042: Normal -Vertex 2043: Normal -Vertex 2044: Normal -Vertex 2045: Normal -Vertex 2046: Normal -Vertex 2047: Normal -Vertex 2048: Normal -Vertex 2049: Normal -Vertex 2050: Normal -Vertex 2051: Normal -Vertex 2052: Normal -Vertex 2053: Normal -Vertex 2054: Normal -Vertex 2055: Normal -Vertex 2056: Normal -Vertex 2057: Normal -Vertex 2058: Normal -Vertex 2059: Normal -Vertex 2060: Normal -Vertex 2061: Normal -Vertex 2062: Normal -Vertex 2063: Normal -Vertex 2064: Normal -Vertex 2065: Normal -Vertex 2066: Normal -Vertex 2067: Normal -Vertex 2068: Normal -Vertex 2069: Normal -Vertex 2070: Normal -Vertex 2071: Normal -Vertex 2072: Normal -Vertex 2073: Normal -Vertex 2074: Normal -Vertex 2075: Normal -Vertex 2076: Normal -Vertex 2077: Normal -Vertex 2078: Normal -Vertex 2079: Normal -Vertex 2080: Normal -Vertex 2081: Normal -Vertex 2082: Normal -Vertex 2083: Normal -Vertex 2084: Normal -Vertex 2085: Normal -Vertex 2086: Normal -Vertex 2087: Normal -Vertex 2088: Normal -Vertex 2089: Normal -Vertex 2090: Normal -Vertex 2091: Normal -Vertex 2092: Normal -Vertex 2093: Normal -Vertex 2094: Normal -Vertex 2095: Normal -Vertex 2096: Normal -Vertex 2097: Normal -Vertex 2098: Normal -Vertex 2099: Normal -Vertex 2100: Normal -Vertex 2101: Normal -Vertex 2102: Normal -Vertex 2103: Normal -Vertex 2104: Normal -Vertex 2105: Normal -Vertex 2106: Normal -Vertex 2107: Normal -Vertex 2108: Normal -Vertex 2109: Normal -Vertex 2110: Normal -Vertex 2111: Normal -Vertex 2112: Normal -Vertex 2113: Normal -Vertex 2114: Normal -Vertex 2115: Normal -Vertex 2116: Normal -Vertex 2117: Normal -Vertex 2118: Normal -Vertex 2119: Normal -Vertex 2120: Normal -Vertex 2121: Normal -Vertex 2122: Normal -Vertex 2123: Normal -Vertex 2124: Normal -Vertex 2125: Normal -Vertex 2126: Normal -Vertex 2127: Normal -Vertex 2128: Normal -Vertex 2129: Normal -Vertex 2130: Normal -Vertex 2131: Normal -Vertex 2132: Normal -Vertex 2133: Normal -Vertex 2134: Normal -Vertex 2135: Normal -Vertex 2136: Normal -Vertex 2137: Normal -Vertex 2138: Normal -Vertex 2139: Normal -Vertex 2140: Normal -Vertex 2141: Normal -Vertex 2142: Normal -Vertex 2143: Normal -Vertex 2144: Normal -Vertex 2145: Normal -Vertex 2146: Normal -Vertex 2147: Normal -Vertex 2148: Normal -Vertex 2149: Normal -Vertex 2150: Normal -Vertex 2151: Normal -Vertex 2152: Normal -Vertex 2153: Normal -Vertex 2154: Normal -Vertex 2155: Normal -Vertex 2156: Normal -Vertex 2157: Normal -Vertex 2158: Normal -Vertex 2159: Normal -Vertex 2160: Normal -Vertex 2161: Normal -Vertex 2162: Normal -Vertex 2163: Normal -Vertex 2164: Normal -Vertex 2165: Normal -Vertex 2166: Normal -Vertex 2167: Normal -Vertex 2168: Normal -Vertex 2169: Normal -Vertex 2170: Normal -Vertex 2171: Normal -Vertex 2172: Normal -Vertex 2173: Normal -Vertex 2174: Normal -Vertex 2175: Normal -Vertex 2176: Normal -Vertex 2177: Normal -Vertex 2178: Normal -Vertex 2179: Normal -Vertex 2180: Normal -Vertex 2181: Normal -Vertex 2182: Normal -Vertex 2183: Normal -Vertex 2184: Normal -Vertex 2185: Normal -Vertex 2186: Normal -Vertex 2187: Normal -Vertex 2188: Normal -Vertex 2189: Normal -Vertex 2190: Normal -Vertex 2191: Normal -Vertex 2192: Normal -Vertex 2193: Normal -Vertex 2194: Normal -Vertex 2195: Normal -Vertex 2196: Normal -Vertex 2197: Normal -Vertex 2198: Normal -Vertex 2199: Normal -Vertex 2200: Normal -Vertex 2201: Normal -Vertex 2202: Normal -Vertex 2203: Normal -Vertex 2204: Normal -Vertex 2205: Normal -Vertex 2206: Normal -Vertex 2207: Normal -Vertex 2208: Normal -Vertex 2209: Normal -Vertex 2210: Normal -Vertex 2211: Normal -Vertex 2212: Normal -Vertex 2213: Normal -Vertex 2214: Normal -Vertex 2215: Normal -Vertex 2216: Normal -Vertex 2217: Normal -Vertex 2218: Normal -Vertex 2219: Normal -Vertex 2220: Normal -Vertex 2221: Normal -Vertex 2222: Normal -Vertex 2223: Normal -Vertex 2224: Normal -Vertex 2225: Normal -Vertex 2226: Normal -Vertex 2227: Normal -Vertex 2228: Normal -Vertex 2229: Normal -Vertex 2230: Normal -Vertex 2231: Normal -Vertex 2232: Normal -Vertex 2233: Normal -Vertex 2234: Normal -Vertex 2235: Normal -Vertex 2236: Normal -Vertex 2237: Normal -Vertex 2238: Normal -Vertex 2239: Normal -Vertex 2240: Normal -Vertex 2241: Normal -Vertex 2242: Normal -Vertex 2243: Normal -Vertex 2244: Normal -Vertex 2245: Normal -Vertex 2246: Normal -Vertex 2247: Normal -Vertex 2248: Normal -Vertex 2249: Normal -Vertex 2250: Normal -Vertex 2251: Normal -Vertex 2252: Normal -Vertex 2253: Normal -Vertex 2254: Normal -Vertex 2255: Normal -Vertex 2256: Normal -Vertex 2257: Normal -Vertex 2258: Normal -Vertex 2259: Normal -Vertex 2260: Normal -Vertex 2261: Normal -Vertex 2262: Normal -Vertex 2263: Normal -Vertex 2264: Normal -Vertex 2265: Normal -Vertex 2266: Normal -Vertex 2267: Normal -Vertex 2268: Normal -Vertex 2269: Normal -Vertex 2270: Normal -Vertex 2271: Normal -Vertex 2272: Normal -Vertex 2273: Normal -Vertex 2274: Normal -Vertex 2275: Normal -Vertex 2276: Normal -Vertex 2277: Normal -Vertex 2278: Normal -Vertex 2279: Normal -Vertex 2280: Normal -Vertex 2281: Normal -Vertex 2282: Normal -Vertex 2283: Normal -Vertex 2284: Normal -Vertex 2285: Normal -Vertex 2286: Normal -Vertex 2287: Normal -Vertex 2288: Normal -Vertex 2289: Normal -Vertex 2290: Normal -Vertex 2291: Normal -Vertex 2292: Normal -Vertex 2293: Normal -Vertex 2294: Normal -Vertex 2295: Normal -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 14 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 5 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 7 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 8 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 10 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 15 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 16 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 17 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 20 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 23 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 25 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 30 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - diff --git a/walkviolla001.txt b/walkviolla001.txt deleted file mode 100644 index d4252fa..0000000 --- a/walkviolla001.txt +++ /dev/null @@ -1,18795 +0,0 @@ -=== Armature Matrix === - - - - -=== Armature Bones: 21 -Bone: Bone - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.6385188088443976 - - - - Parent: None - Children: ['Bone.003', 'Bone.005', 'Bone.017', 'Bone.001', 'Bone.002'] -Bone: Bone.003 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2075916281120636 - - - - Parent: Bone - Children: ['Bone.004'] -Bone: Bone.004 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.7687353908622945 - - - - Parent: Bone.003 - Children: [] -Bone: Bone.005 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2587767129404623 - - - - Parent: Bone - Children: ['Bone.006'] -Bone: Bone.006 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.88006733570851 - - - - Parent: Bone.005 - Children: [] -Bone: Bone.017 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1032981995946058 - - - - Parent: Bone - Children: ['Bone.018'] -Bone: Bone.018 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 4.35028638225876 - - - - Parent: Bone.017 - Children: [] -Bone: Bone.001 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.8753116924771713 - - - - Parent: Bone - Children: ['Bone.019'] -Bone: Bone.019 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.882150868153256 - - - - Parent: Bone.001 - Children: [] -Bone: Bone.002 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.406848648916298 - - - - Parent: Bone - Children: ['Bone.020'] -Bone: Bone.020 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.2033160486984014 - - - - Parent: Bone.002 - Children: [] -Bone: Bone.007 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.7599380807373177 - - - - Parent: None - Children: ['Bone.010'] -Bone: Bone.010 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.884598646855185 - - - - Parent: Bone.007 - Children: ['Bone.011'] -Bone: Bone.011 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.4956648054653807 - - - - Parent: Bone.010 - Children: ['Bone.015'] -Bone: Bone.015 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.093882692751814 - - - - Parent: Bone.011 - Children: ['Bone.016'] -Bone: Bone.016 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5070814005026841 - - - - Parent: Bone.015 - Children: [] -Bone: Bone.008 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.8970200344940075 - - - - Parent: None - Children: ['Bone.009'] -Bone: Bone.009 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 2.9229383271738243 - - - - Parent: Bone.008 - Children: ['Bone.012'] -Bone: Bone.012 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 3.429972543974184 - - - - Parent: Bone.009 - Children: ['Bone.013'] -Bone: Bone.013 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 1.1311470005265214 - - - - Parent: Bone.012 - Children: ['Bone.014'] -Bone: Bone.014 - HEAD_LOCAL: - TAIL_LOCAL: - Length: 0.5276753830992063 - - - - Parent: Bone.013 - Children: [] -===Vertices: 2296 -Vertex 0: -Vertex 1: -Vertex 2: -Vertex 3: -Vertex 4: -Vertex 5: -Vertex 6: -Vertex 7: -Vertex 8: -Vertex 9: -Vertex 10: -Vertex 11: -Vertex 12: -Vertex 13: -Vertex 14: -Vertex 15: -Vertex 16: -Vertex 17: -Vertex 18: -Vertex 19: -Vertex 20: -Vertex 21: -Vertex 22: -Vertex 23: -Vertex 24: -Vertex 25: -Vertex 26: -Vertex 27: -Vertex 28: -Vertex 29: -Vertex 30: -Vertex 31: -Vertex 32: -Vertex 33: -Vertex 34: -Vertex 35: -Vertex 36: -Vertex 37: -Vertex 38: -Vertex 39: -Vertex 40: -Vertex 41: -Vertex 42: -Vertex 43: -Vertex 44: -Vertex 45: -Vertex 46: -Vertex 47: -Vertex 48: -Vertex 49: -Vertex 50: -Vertex 51: -Vertex 52: -Vertex 53: -Vertex 54: -Vertex 55: -Vertex 56: -Vertex 57: -Vertex 58: -Vertex 59: -Vertex 60: -Vertex 61: -Vertex 62: -Vertex 63: -Vertex 64: -Vertex 65: -Vertex 66: -Vertex 67: -Vertex 68: -Vertex 69: -Vertex 70: -Vertex 71: -Vertex 72: -Vertex 73: -Vertex 74: -Vertex 75: -Vertex 76: -Vertex 77: -Vertex 78: -Vertex 79: -Vertex 80: -Vertex 81: -Vertex 82: -Vertex 83: -Vertex 84: -Vertex 85: -Vertex 86: -Vertex 87: -Vertex 88: -Vertex 89: -Vertex 90: -Vertex 91: -Vertex 92: -Vertex 93: -Vertex 94: -Vertex 95: -Vertex 96: -Vertex 97: -Vertex 98: -Vertex 99: -Vertex 100: -Vertex 101: -Vertex 102: -Vertex 103: -Vertex 104: -Vertex 105: -Vertex 106: -Vertex 107: -Vertex 108: -Vertex 109: -Vertex 110: -Vertex 111: -Vertex 112: -Vertex 113: -Vertex 114: -Vertex 115: -Vertex 116: -Vertex 117: -Vertex 118: -Vertex 119: -Vertex 120: -Vertex 121: -Vertex 122: -Vertex 123: -Vertex 124: -Vertex 125: -Vertex 126: -Vertex 127: -Vertex 128: -Vertex 129: -Vertex 130: -Vertex 131: -Vertex 132: -Vertex 133: -Vertex 134: -Vertex 135: -Vertex 136: -Vertex 137: -Vertex 138: -Vertex 139: -Vertex 140: -Vertex 141: -Vertex 142: -Vertex 143: -Vertex 144: -Vertex 145: -Vertex 146: -Vertex 147: -Vertex 148: -Vertex 149: -Vertex 150: -Vertex 151: -Vertex 152: -Vertex 153: -Vertex 154: -Vertex 155: -Vertex 156: -Vertex 157: -Vertex 158: -Vertex 159: -Vertex 160: -Vertex 161: -Vertex 162: -Vertex 163: -Vertex 164: -Vertex 165: -Vertex 166: -Vertex 167: -Vertex 168: -Vertex 169: -Vertex 170: -Vertex 171: -Vertex 172: -Vertex 173: -Vertex 174: -Vertex 175: -Vertex 176: -Vertex 177: -Vertex 178: -Vertex 179: -Vertex 180: -Vertex 181: -Vertex 182: -Vertex 183: -Vertex 184: -Vertex 185: -Vertex 186: -Vertex 187: -Vertex 188: -Vertex 189: -Vertex 190: -Vertex 191: -Vertex 192: -Vertex 193: -Vertex 194: -Vertex 195: -Vertex 196: -Vertex 197: -Vertex 198: -Vertex 199: -Vertex 200: -Vertex 201: -Vertex 202: -Vertex 203: -Vertex 204: -Vertex 205: -Vertex 206: -Vertex 207: -Vertex 208: -Vertex 209: -Vertex 210: -Vertex 211: -Vertex 212: -Vertex 213: -Vertex 214: -Vertex 215: -Vertex 216: -Vertex 217: -Vertex 218: -Vertex 219: -Vertex 220: -Vertex 221: -Vertex 222: -Vertex 223: -Vertex 224: -Vertex 225: -Vertex 226: -Vertex 227: -Vertex 228: -Vertex 229: -Vertex 230: -Vertex 231: -Vertex 232: -Vertex 233: -Vertex 234: -Vertex 235: -Vertex 236: -Vertex 237: -Vertex 238: -Vertex 239: -Vertex 240: -Vertex 241: -Vertex 242: -Vertex 243: -Vertex 244: -Vertex 245: -Vertex 246: -Vertex 247: -Vertex 248: -Vertex 249: -Vertex 250: -Vertex 251: -Vertex 252: -Vertex 253: -Vertex 254: -Vertex 255: -Vertex 256: -Vertex 257: -Vertex 258: -Vertex 259: -Vertex 260: -Vertex 261: -Vertex 262: -Vertex 263: -Vertex 264: -Vertex 265: -Vertex 266: -Vertex 267: -Vertex 268: -Vertex 269: -Vertex 270: -Vertex 271: -Vertex 272: -Vertex 273: -Vertex 274: -Vertex 275: -Vertex 276: -Vertex 277: -Vertex 278: -Vertex 279: -Vertex 280: -Vertex 281: -Vertex 282: -Vertex 283: -Vertex 284: -Vertex 285: -Vertex 286: -Vertex 287: -Vertex 288: -Vertex 289: -Vertex 290: -Vertex 291: -Vertex 292: -Vertex 293: -Vertex 294: -Vertex 295: -Vertex 296: -Vertex 297: -Vertex 298: -Vertex 299: -Vertex 300: -Vertex 301: -Vertex 302: -Vertex 303: -Vertex 304: -Vertex 305: -Vertex 306: -Vertex 307: -Vertex 308: -Vertex 309: -Vertex 310: -Vertex 311: -Vertex 312: -Vertex 313: -Vertex 314: -Vertex 315: -Vertex 316: -Vertex 317: -Vertex 318: -Vertex 319: -Vertex 320: -Vertex 321: -Vertex 322: -Vertex 323: -Vertex 324: -Vertex 325: -Vertex 326: -Vertex 327: -Vertex 328: -Vertex 329: -Vertex 330: -Vertex 331: -Vertex 332: -Vertex 333: -Vertex 334: -Vertex 335: -Vertex 336: -Vertex 337: -Vertex 338: -Vertex 339: -Vertex 340: -Vertex 341: -Vertex 342: -Vertex 343: -Vertex 344: -Vertex 345: -Vertex 346: -Vertex 347: -Vertex 348: -Vertex 349: -Vertex 350: -Vertex 351: -Vertex 352: -Vertex 353: -Vertex 354: -Vertex 355: -Vertex 356: -Vertex 357: -Vertex 358: -Vertex 359: -Vertex 360: -Vertex 361: -Vertex 362: -Vertex 363: -Vertex 364: -Vertex 365: -Vertex 366: -Vertex 367: -Vertex 368: -Vertex 369: -Vertex 370: -Vertex 371: -Vertex 372: -Vertex 373: -Vertex 374: -Vertex 375: -Vertex 376: -Vertex 377: -Vertex 378: -Vertex 379: -Vertex 380: -Vertex 381: -Vertex 382: -Vertex 383: -Vertex 384: -Vertex 385: -Vertex 386: -Vertex 387: -Vertex 388: -Vertex 389: -Vertex 390: -Vertex 391: -Vertex 392: -Vertex 393: -Vertex 394: -Vertex 395: -Vertex 396: -Vertex 397: -Vertex 398: -Vertex 399: -Vertex 400: -Vertex 401: -Vertex 402: -Vertex 403: -Vertex 404: -Vertex 405: -Vertex 406: -Vertex 407: -Vertex 408: -Vertex 409: -Vertex 410: -Vertex 411: -Vertex 412: -Vertex 413: -Vertex 414: -Vertex 415: -Vertex 416: -Vertex 417: -Vertex 418: -Vertex 419: -Vertex 420: -Vertex 421: -Vertex 422: -Vertex 423: -Vertex 424: -Vertex 425: -Vertex 426: -Vertex 427: -Vertex 428: -Vertex 429: -Vertex 430: -Vertex 431: -Vertex 432: -Vertex 433: -Vertex 434: -Vertex 435: -Vertex 436: -Vertex 437: -Vertex 438: -Vertex 439: -Vertex 440: -Vertex 441: -Vertex 442: -Vertex 443: -Vertex 444: -Vertex 445: -Vertex 446: -Vertex 447: -Vertex 448: -Vertex 449: -Vertex 450: -Vertex 451: -Vertex 452: -Vertex 453: -Vertex 454: -Vertex 455: -Vertex 456: -Vertex 457: -Vertex 458: -Vertex 459: -Vertex 460: -Vertex 461: -Vertex 462: -Vertex 463: -Vertex 464: -Vertex 465: -Vertex 466: -Vertex 467: -Vertex 468: -Vertex 469: -Vertex 470: -Vertex 471: -Vertex 472: -Vertex 473: -Vertex 474: -Vertex 475: -Vertex 476: -Vertex 477: -Vertex 478: -Vertex 479: -Vertex 480: -Vertex 481: -Vertex 482: -Vertex 483: -Vertex 484: -Vertex 485: -Vertex 486: -Vertex 487: -Vertex 488: -Vertex 489: -Vertex 490: -Vertex 491: -Vertex 492: -Vertex 493: -Vertex 494: -Vertex 495: -Vertex 496: -Vertex 497: -Vertex 498: -Vertex 499: -Vertex 500: -Vertex 501: -Vertex 502: -Vertex 503: -Vertex 504: -Vertex 505: -Vertex 506: -Vertex 507: -Vertex 508: -Vertex 509: -Vertex 510: -Vertex 511: -Vertex 512: -Vertex 513: -Vertex 514: -Vertex 515: -Vertex 516: -Vertex 517: -Vertex 518: -Vertex 519: -Vertex 520: -Vertex 521: -Vertex 522: -Vertex 523: -Vertex 524: -Vertex 525: -Vertex 526: -Vertex 527: -Vertex 528: -Vertex 529: -Vertex 530: -Vertex 531: -Vertex 532: -Vertex 533: -Vertex 534: -Vertex 535: -Vertex 536: -Vertex 537: -Vertex 538: -Vertex 539: -Vertex 540: -Vertex 541: -Vertex 542: -Vertex 543: -Vertex 544: -Vertex 545: -Vertex 546: -Vertex 547: -Vertex 548: -Vertex 549: -Vertex 550: -Vertex 551: -Vertex 552: -Vertex 553: -Vertex 554: -Vertex 555: -Vertex 556: -Vertex 557: -Vertex 558: -Vertex 559: -Vertex 560: -Vertex 561: -Vertex 562: -Vertex 563: -Vertex 564: -Vertex 565: -Vertex 566: -Vertex 567: -Vertex 568: -Vertex 569: -Vertex 570: -Vertex 571: -Vertex 572: -Vertex 573: -Vertex 574: -Vertex 575: -Vertex 576: -Vertex 577: -Vertex 578: -Vertex 579: -Vertex 580: -Vertex 581: -Vertex 582: -Vertex 583: -Vertex 584: -Vertex 585: -Vertex 586: -Vertex 587: -Vertex 588: -Vertex 589: -Vertex 590: -Vertex 591: -Vertex 592: -Vertex 593: -Vertex 594: -Vertex 595: -Vertex 596: -Vertex 597: -Vertex 598: -Vertex 599: -Vertex 600: -Vertex 601: -Vertex 602: -Vertex 603: -Vertex 604: -Vertex 605: -Vertex 606: -Vertex 607: -Vertex 608: -Vertex 609: -Vertex 610: -Vertex 611: -Vertex 612: -Vertex 613: -Vertex 614: -Vertex 615: -Vertex 616: -Vertex 617: -Vertex 618: -Vertex 619: -Vertex 620: -Vertex 621: -Vertex 622: -Vertex 623: -Vertex 624: -Vertex 625: -Vertex 626: -Vertex 627: -Vertex 628: -Vertex 629: -Vertex 630: -Vertex 631: -Vertex 632: -Vertex 633: -Vertex 634: -Vertex 635: -Vertex 636: -Vertex 637: -Vertex 638: -Vertex 639: -Vertex 640: -Vertex 641: -Vertex 642: -Vertex 643: -Vertex 644: -Vertex 645: -Vertex 646: -Vertex 647: -Vertex 648: -Vertex 649: -Vertex 650: -Vertex 651: -Vertex 652: -Vertex 653: -Vertex 654: -Vertex 655: -Vertex 656: -Vertex 657: -Vertex 658: -Vertex 659: -Vertex 660: -Vertex 661: -Vertex 662: -Vertex 663: -Vertex 664: -Vertex 665: -Vertex 666: -Vertex 667: -Vertex 668: -Vertex 669: -Vertex 670: -Vertex 671: -Vertex 672: -Vertex 673: -Vertex 674: -Vertex 675: -Vertex 676: -Vertex 677: -Vertex 678: -Vertex 679: -Vertex 680: -Vertex 681: -Vertex 682: -Vertex 683: -Vertex 684: -Vertex 685: -Vertex 686: -Vertex 687: -Vertex 688: -Vertex 689: -Vertex 690: -Vertex 691: -Vertex 692: -Vertex 693: -Vertex 694: -Vertex 695: -Vertex 696: -Vertex 697: -Vertex 698: -Vertex 699: -Vertex 700: -Vertex 701: -Vertex 702: -Vertex 703: -Vertex 704: -Vertex 705: -Vertex 706: -Vertex 707: -Vertex 708: -Vertex 709: -Vertex 710: -Vertex 711: -Vertex 712: -Vertex 713: -Vertex 714: -Vertex 715: -Vertex 716: -Vertex 717: -Vertex 718: -Vertex 719: -Vertex 720: -Vertex 721: -Vertex 722: -Vertex 723: -Vertex 724: -Vertex 725: -Vertex 726: -Vertex 727: -Vertex 728: -Vertex 729: -Vertex 730: -Vertex 731: -Vertex 732: -Vertex 733: -Vertex 734: -Vertex 735: -Vertex 736: -Vertex 737: -Vertex 738: -Vertex 739: -Vertex 740: -Vertex 741: -Vertex 742: -Vertex 743: -Vertex 744: -Vertex 745: -Vertex 746: -Vertex 747: -Vertex 748: -Vertex 749: -Vertex 750: -Vertex 751: -Vertex 752: -Vertex 753: -Vertex 754: -Vertex 755: -Vertex 756: -Vertex 757: -Vertex 758: -Vertex 759: -Vertex 760: -Vertex 761: -Vertex 762: -Vertex 763: -Vertex 764: -Vertex 765: -Vertex 766: -Vertex 767: -Vertex 768: -Vertex 769: -Vertex 770: -Vertex 771: -Vertex 772: -Vertex 773: -Vertex 774: -Vertex 775: -Vertex 776: -Vertex 777: -Vertex 778: -Vertex 779: -Vertex 780: -Vertex 781: -Vertex 782: -Vertex 783: -Vertex 784: -Vertex 785: -Vertex 786: -Vertex 787: -Vertex 788: -Vertex 789: -Vertex 790: -Vertex 791: -Vertex 792: -Vertex 793: -Vertex 794: -Vertex 795: -Vertex 796: -Vertex 797: -Vertex 798: -Vertex 799: -Vertex 800: -Vertex 801: -Vertex 802: -Vertex 803: -Vertex 804: -Vertex 805: -Vertex 806: -Vertex 807: -Vertex 808: -Vertex 809: -Vertex 810: -Vertex 811: -Vertex 812: -Vertex 813: -Vertex 814: -Vertex 815: -Vertex 816: -Vertex 817: -Vertex 818: -Vertex 819: -Vertex 820: -Vertex 821: -Vertex 822: -Vertex 823: -Vertex 824: -Vertex 825: -Vertex 826: -Vertex 827: -Vertex 828: -Vertex 829: -Vertex 830: -Vertex 831: -Vertex 832: -Vertex 833: -Vertex 834: -Vertex 835: -Vertex 836: -Vertex 837: -Vertex 838: -Vertex 839: -Vertex 840: -Vertex 841: -Vertex 842: -Vertex 843: -Vertex 844: -Vertex 845: -Vertex 846: -Vertex 847: -Vertex 848: -Vertex 849: -Vertex 850: -Vertex 851: -Vertex 852: -Vertex 853: -Vertex 854: -Vertex 855: -Vertex 856: -Vertex 857: -Vertex 858: -Vertex 859: -Vertex 860: -Vertex 861: -Vertex 862: -Vertex 863: -Vertex 864: -Vertex 865: -Vertex 866: -Vertex 867: -Vertex 868: -Vertex 869: -Vertex 870: -Vertex 871: -Vertex 872: -Vertex 873: -Vertex 874: -Vertex 875: -Vertex 876: -Vertex 877: -Vertex 878: -Vertex 879: -Vertex 880: -Vertex 881: -Vertex 882: -Vertex 883: -Vertex 884: -Vertex 885: -Vertex 886: -Vertex 887: -Vertex 888: -Vertex 889: -Vertex 890: -Vertex 891: -Vertex 892: -Vertex 893: -Vertex 894: -Vertex 895: -Vertex 896: -Vertex 897: -Vertex 898: -Vertex 899: -Vertex 900: -Vertex 901: -Vertex 902: -Vertex 903: -Vertex 904: -Vertex 905: -Vertex 906: -Vertex 907: -Vertex 908: -Vertex 909: -Vertex 910: -Vertex 911: -Vertex 912: -Vertex 913: -Vertex 914: -Vertex 915: -Vertex 916: -Vertex 917: -Vertex 918: -Vertex 919: -Vertex 920: -Vertex 921: -Vertex 922: -Vertex 923: -Vertex 924: -Vertex 925: -Vertex 926: -Vertex 927: -Vertex 928: -Vertex 929: -Vertex 930: -Vertex 931: -Vertex 932: -Vertex 933: -Vertex 934: -Vertex 935: -Vertex 936: -Vertex 937: -Vertex 938: -Vertex 939: -Vertex 940: -Vertex 941: -Vertex 942: -Vertex 943: -Vertex 944: -Vertex 945: -Vertex 946: -Vertex 947: -Vertex 948: -Vertex 949: -Vertex 950: -Vertex 951: -Vertex 952: -Vertex 953: -Vertex 954: -Vertex 955: -Vertex 956: -Vertex 957: -Vertex 958: -Vertex 959: -Vertex 960: -Vertex 961: -Vertex 962: -Vertex 963: -Vertex 964: -Vertex 965: -Vertex 966: -Vertex 967: -Vertex 968: -Vertex 969: -Vertex 970: -Vertex 971: -Vertex 972: -Vertex 973: -Vertex 974: -Vertex 975: -Vertex 976: -Vertex 977: -Vertex 978: -Vertex 979: -Vertex 980: -Vertex 981: -Vertex 982: -Vertex 983: -Vertex 984: -Vertex 985: -Vertex 986: -Vertex 987: -Vertex 988: -Vertex 989: -Vertex 990: -Vertex 991: -Vertex 992: -Vertex 993: -Vertex 994: -Vertex 995: -Vertex 996: -Vertex 997: -Vertex 998: -Vertex 999: -Vertex 1000: -Vertex 1001: -Vertex 1002: -Vertex 1003: -Vertex 1004: -Vertex 1005: -Vertex 1006: -Vertex 1007: -Vertex 1008: -Vertex 1009: -Vertex 1010: -Vertex 1011: -Vertex 1012: -Vertex 1013: -Vertex 1014: -Vertex 1015: -Vertex 1016: -Vertex 1017: -Vertex 1018: -Vertex 1019: -Vertex 1020: -Vertex 1021: -Vertex 1022: -Vertex 1023: -Vertex 1024: -Vertex 1025: -Vertex 1026: -Vertex 1027: -Vertex 1028: -Vertex 1029: -Vertex 1030: -Vertex 1031: -Vertex 1032: -Vertex 1033: -Vertex 1034: -Vertex 1035: -Vertex 1036: -Vertex 1037: -Vertex 1038: -Vertex 1039: -Vertex 1040: -Vertex 1041: -Vertex 1042: -Vertex 1043: -Vertex 1044: -Vertex 1045: -Vertex 1046: -Vertex 1047: -Vertex 1048: -Vertex 1049: -Vertex 1050: -Vertex 1051: -Vertex 1052: -Vertex 1053: -Vertex 1054: -Vertex 1055: -Vertex 1056: -Vertex 1057: -Vertex 1058: -Vertex 1059: -Vertex 1060: -Vertex 1061: -Vertex 1062: -Vertex 1063: -Vertex 1064: -Vertex 1065: -Vertex 1066: -Vertex 1067: -Vertex 1068: -Vertex 1069: -Vertex 1070: -Vertex 1071: -Vertex 1072: -Vertex 1073: -Vertex 1074: -Vertex 1075: -Vertex 1076: -Vertex 1077: -Vertex 1078: -Vertex 1079: -Vertex 1080: -Vertex 1081: -Vertex 1082: -Vertex 1083: -Vertex 1084: -Vertex 1085: -Vertex 1086: -Vertex 1087: -Vertex 1088: -Vertex 1089: -Vertex 1090: -Vertex 1091: -Vertex 1092: -Vertex 1093: -Vertex 1094: -Vertex 1095: -Vertex 1096: -Vertex 1097: -Vertex 1098: -Vertex 1099: -Vertex 1100: -Vertex 1101: -Vertex 1102: -Vertex 1103: -Vertex 1104: -Vertex 1105: -Vertex 1106: -Vertex 1107: -Vertex 1108: -Vertex 1109: -Vertex 1110: -Vertex 1111: -Vertex 1112: -Vertex 1113: -Vertex 1114: -Vertex 1115: -Vertex 1116: -Vertex 1117: -Vertex 1118: -Vertex 1119: -Vertex 1120: -Vertex 1121: -Vertex 1122: -Vertex 1123: -Vertex 1124: -Vertex 1125: -Vertex 1126: -Vertex 1127: -Vertex 1128: -Vertex 1129: -Vertex 1130: -Vertex 1131: -Vertex 1132: -Vertex 1133: -Vertex 1134: -Vertex 1135: -Vertex 1136: -Vertex 1137: -Vertex 1138: -Vertex 1139: -Vertex 1140: -Vertex 1141: -Vertex 1142: -Vertex 1143: -Vertex 1144: -Vertex 1145: -Vertex 1146: -Vertex 1147: -Vertex 1148: -Vertex 1149: -Vertex 1150: -Vertex 1151: -Vertex 1152: -Vertex 1153: -Vertex 1154: -Vertex 1155: -Vertex 1156: -Vertex 1157: -Vertex 1158: -Vertex 1159: -Vertex 1160: -Vertex 1161: -Vertex 1162: -Vertex 1163: -Vertex 1164: -Vertex 1165: -Vertex 1166: -Vertex 1167: -Vertex 1168: -Vertex 1169: -Vertex 1170: -Vertex 1171: -Vertex 1172: -Vertex 1173: -Vertex 1174: -Vertex 1175: -Vertex 1176: -Vertex 1177: -Vertex 1178: -Vertex 1179: -Vertex 1180: -Vertex 1181: -Vertex 1182: -Vertex 1183: -Vertex 1184: -Vertex 1185: -Vertex 1186: -Vertex 1187: -Vertex 1188: -Vertex 1189: -Vertex 1190: -Vertex 1191: -Vertex 1192: -Vertex 1193: -Vertex 1194: -Vertex 1195: -Vertex 1196: -Vertex 1197: -Vertex 1198: -Vertex 1199: -Vertex 1200: -Vertex 1201: -Vertex 1202: -Vertex 1203: -Vertex 1204: -Vertex 1205: -Vertex 1206: -Vertex 1207: -Vertex 1208: -Vertex 1209: -Vertex 1210: -Vertex 1211: -Vertex 1212: -Vertex 1213: -Vertex 1214: -Vertex 1215: -Vertex 1216: -Vertex 1217: -Vertex 1218: -Vertex 1219: -Vertex 1220: -Vertex 1221: -Vertex 1222: -Vertex 1223: -Vertex 1224: -Vertex 1225: -Vertex 1226: -Vertex 1227: -Vertex 1228: -Vertex 1229: -Vertex 1230: -Vertex 1231: -Vertex 1232: -Vertex 1233: -Vertex 1234: -Vertex 1235: -Vertex 1236: -Vertex 1237: -Vertex 1238: -Vertex 1239: -Vertex 1240: -Vertex 1241: -Vertex 1242: -Vertex 1243: -Vertex 1244: -Vertex 1245: -Vertex 1246: -Vertex 1247: -Vertex 1248: -Vertex 1249: -Vertex 1250: -Vertex 1251: -Vertex 1252: -Vertex 1253: -Vertex 1254: -Vertex 1255: -Vertex 1256: -Vertex 1257: -Vertex 1258: -Vertex 1259: -Vertex 1260: -Vertex 1261: -Vertex 1262: -Vertex 1263: -Vertex 1264: -Vertex 1265: -Vertex 1266: -Vertex 1267: -Vertex 1268: -Vertex 1269: -Vertex 1270: -Vertex 1271: -Vertex 1272: -Vertex 1273: -Vertex 1274: -Vertex 1275: -Vertex 1276: -Vertex 1277: -Vertex 1278: -Vertex 1279: -Vertex 1280: -Vertex 1281: -Vertex 1282: -Vertex 1283: -Vertex 1284: -Vertex 1285: -Vertex 1286: -Vertex 1287: -Vertex 1288: -Vertex 1289: -Vertex 1290: -Vertex 1291: -Vertex 1292: -Vertex 1293: -Vertex 1294: -Vertex 1295: -Vertex 1296: -Vertex 1297: -Vertex 1298: -Vertex 1299: -Vertex 1300: -Vertex 1301: -Vertex 1302: -Vertex 1303: -Vertex 1304: -Vertex 1305: -Vertex 1306: -Vertex 1307: -Vertex 1308: -Vertex 1309: -Vertex 1310: -Vertex 1311: -Vertex 1312: -Vertex 1313: -Vertex 1314: -Vertex 1315: -Vertex 1316: -Vertex 1317: -Vertex 1318: -Vertex 1319: -Vertex 1320: -Vertex 1321: -Vertex 1322: -Vertex 1323: -Vertex 1324: -Vertex 1325: -Vertex 1326: -Vertex 1327: -Vertex 1328: -Vertex 1329: -Vertex 1330: -Vertex 1331: -Vertex 1332: -Vertex 1333: -Vertex 1334: -Vertex 1335: -Vertex 1336: -Vertex 1337: -Vertex 1338: -Vertex 1339: -Vertex 1340: -Vertex 1341: -Vertex 1342: -Vertex 1343: -Vertex 1344: -Vertex 1345: -Vertex 1346: -Vertex 1347: -Vertex 1348: -Vertex 1349: -Vertex 1350: -Vertex 1351: -Vertex 1352: -Vertex 1353: -Vertex 1354: -Vertex 1355: -Vertex 1356: -Vertex 1357: -Vertex 1358: -Vertex 1359: -Vertex 1360: -Vertex 1361: -Vertex 1362: -Vertex 1363: -Vertex 1364: -Vertex 1365: -Vertex 1366: -Vertex 1367: -Vertex 1368: -Vertex 1369: -Vertex 1370: -Vertex 1371: -Vertex 1372: -Vertex 1373: -Vertex 1374: -Vertex 1375: -Vertex 1376: -Vertex 1377: -Vertex 1378: -Vertex 1379: -Vertex 1380: -Vertex 1381: -Vertex 1382: -Vertex 1383: -Vertex 1384: -Vertex 1385: -Vertex 1386: -Vertex 1387: -Vertex 1388: -Vertex 1389: -Vertex 1390: -Vertex 1391: -Vertex 1392: -Vertex 1393: -Vertex 1394: -Vertex 1395: -Vertex 1396: -Vertex 1397: -Vertex 1398: -Vertex 1399: -Vertex 1400: -Vertex 1401: -Vertex 1402: -Vertex 1403: -Vertex 1404: -Vertex 1405: -Vertex 1406: -Vertex 1407: -Vertex 1408: -Vertex 1409: -Vertex 1410: -Vertex 1411: -Vertex 1412: -Vertex 1413: -Vertex 1414: -Vertex 1415: -Vertex 1416: -Vertex 1417: -Vertex 1418: -Vertex 1419: -Vertex 1420: -Vertex 1421: -Vertex 1422: -Vertex 1423: -Vertex 1424: -Vertex 1425: -Vertex 1426: -Vertex 1427: -Vertex 1428: -Vertex 1429: -Vertex 1430: -Vertex 1431: -Vertex 1432: -Vertex 1433: -Vertex 1434: -Vertex 1435: -Vertex 1436: -Vertex 1437: -Vertex 1438: -Vertex 1439: -Vertex 1440: -Vertex 1441: -Vertex 1442: -Vertex 1443: -Vertex 1444: -Vertex 1445: -Vertex 1446: -Vertex 1447: -Vertex 1448: -Vertex 1449: -Vertex 1450: -Vertex 1451: -Vertex 1452: -Vertex 1453: -Vertex 1454: -Vertex 1455: -Vertex 1456: -Vertex 1457: -Vertex 1458: -Vertex 1459: -Vertex 1460: -Vertex 1461: -Vertex 1462: -Vertex 1463: -Vertex 1464: -Vertex 1465: -Vertex 1466: -Vertex 1467: -Vertex 1468: -Vertex 1469: -Vertex 1470: -Vertex 1471: -Vertex 1472: -Vertex 1473: -Vertex 1474: -Vertex 1475: -Vertex 1476: -Vertex 1477: -Vertex 1478: -Vertex 1479: -Vertex 1480: -Vertex 1481: -Vertex 1482: -Vertex 1483: -Vertex 1484: -Vertex 1485: -Vertex 1486: -Vertex 1487: -Vertex 1488: -Vertex 1489: -Vertex 1490: -Vertex 1491: -Vertex 1492: -Vertex 1493: -Vertex 1494: -Vertex 1495: -Vertex 1496: -Vertex 1497: -Vertex 1498: -Vertex 1499: -Vertex 1500: -Vertex 1501: -Vertex 1502: -Vertex 1503: -Vertex 1504: -Vertex 1505: -Vertex 1506: -Vertex 1507: -Vertex 1508: -Vertex 1509: -Vertex 1510: -Vertex 1511: -Vertex 1512: -Vertex 1513: -Vertex 1514: -Vertex 1515: -Vertex 1516: -Vertex 1517: -Vertex 1518: -Vertex 1519: -Vertex 1520: -Vertex 1521: -Vertex 1522: -Vertex 1523: -Vertex 1524: -Vertex 1525: -Vertex 1526: -Vertex 1527: -Vertex 1528: -Vertex 1529: -Vertex 1530: -Vertex 1531: -Vertex 1532: -Vertex 1533: -Vertex 1534: -Vertex 1535: -Vertex 1536: -Vertex 1537: -Vertex 1538: -Vertex 1539: -Vertex 1540: -Vertex 1541: -Vertex 1542: -Vertex 1543: -Vertex 1544: -Vertex 1545: -Vertex 1546: -Vertex 1547: -Vertex 1548: -Vertex 1549: -Vertex 1550: -Vertex 1551: -Vertex 1552: -Vertex 1553: -Vertex 1554: -Vertex 1555: -Vertex 1556: -Vertex 1557: -Vertex 1558: -Vertex 1559: -Vertex 1560: -Vertex 1561: -Vertex 1562: -Vertex 1563: -Vertex 1564: -Vertex 1565: -Vertex 1566: -Vertex 1567: -Vertex 1568: -Vertex 1569: -Vertex 1570: -Vertex 1571: -Vertex 1572: -Vertex 1573: -Vertex 1574: -Vertex 1575: -Vertex 1576: -Vertex 1577: -Vertex 1578: -Vertex 1579: -Vertex 1580: -Vertex 1581: -Vertex 1582: -Vertex 1583: -Vertex 1584: -Vertex 1585: -Vertex 1586: -Vertex 1587: -Vertex 1588: -Vertex 1589: -Vertex 1590: -Vertex 1591: -Vertex 1592: -Vertex 1593: -Vertex 1594: -Vertex 1595: -Vertex 1596: -Vertex 1597: -Vertex 1598: -Vertex 1599: -Vertex 1600: -Vertex 1601: -Vertex 1602: -Vertex 1603: -Vertex 1604: -Vertex 1605: -Vertex 1606: -Vertex 1607: -Vertex 1608: -Vertex 1609: -Vertex 1610: -Vertex 1611: -Vertex 1612: -Vertex 1613: -Vertex 1614: -Vertex 1615: -Vertex 1616: -Vertex 1617: -Vertex 1618: -Vertex 1619: -Vertex 1620: -Vertex 1621: -Vertex 1622: -Vertex 1623: -Vertex 1624: -Vertex 1625: -Vertex 1626: -Vertex 1627: -Vertex 1628: -Vertex 1629: -Vertex 1630: -Vertex 1631: -Vertex 1632: -Vertex 1633: -Vertex 1634: -Vertex 1635: -Vertex 1636: -Vertex 1637: -Vertex 1638: -Vertex 1639: -Vertex 1640: -Vertex 1641: -Vertex 1642: -Vertex 1643: -Vertex 1644: -Vertex 1645: -Vertex 1646: -Vertex 1647: -Vertex 1648: -Vertex 1649: -Vertex 1650: -Vertex 1651: -Vertex 1652: -Vertex 1653: -Vertex 1654: -Vertex 1655: -Vertex 1656: -Vertex 1657: -Vertex 1658: -Vertex 1659: -Vertex 1660: -Vertex 1661: -Vertex 1662: -Vertex 1663: -Vertex 1664: -Vertex 1665: -Vertex 1666: -Vertex 1667: -Vertex 1668: -Vertex 1669: -Vertex 1670: -Vertex 1671: -Vertex 1672: -Vertex 1673: -Vertex 1674: -Vertex 1675: -Vertex 1676: -Vertex 1677: -Vertex 1678: -Vertex 1679: -Vertex 1680: -Vertex 1681: -Vertex 1682: -Vertex 1683: -Vertex 1684: -Vertex 1685: -Vertex 1686: -Vertex 1687: -Vertex 1688: -Vertex 1689: -Vertex 1690: -Vertex 1691: -Vertex 1692: -Vertex 1693: -Vertex 1694: -Vertex 1695: -Vertex 1696: -Vertex 1697: -Vertex 1698: -Vertex 1699: -Vertex 1700: -Vertex 1701: -Vertex 1702: -Vertex 1703: -Vertex 1704: -Vertex 1705: -Vertex 1706: -Vertex 1707: -Vertex 1708: -Vertex 1709: -Vertex 1710: -Vertex 1711: -Vertex 1712: -Vertex 1713: -Vertex 1714: -Vertex 1715: -Vertex 1716: -Vertex 1717: -Vertex 1718: -Vertex 1719: -Vertex 1720: -Vertex 1721: -Vertex 1722: -Vertex 1723: -Vertex 1724: -Vertex 1725: -Vertex 1726: -Vertex 1727: -Vertex 1728: -Vertex 1729: -Vertex 1730: -Vertex 1731: -Vertex 1732: -Vertex 1733: -Vertex 1734: -Vertex 1735: -Vertex 1736: -Vertex 1737: -Vertex 1738: -Vertex 1739: -Vertex 1740: -Vertex 1741: -Vertex 1742: -Vertex 1743: -Vertex 1744: -Vertex 1745: -Vertex 1746: -Vertex 1747: -Vertex 1748: -Vertex 1749: -Vertex 1750: -Vertex 1751: -Vertex 1752: -Vertex 1753: -Vertex 1754: -Vertex 1755: -Vertex 1756: -Vertex 1757: -Vertex 1758: -Vertex 1759: -Vertex 1760: -Vertex 1761: -Vertex 1762: -Vertex 1763: -Vertex 1764: -Vertex 1765: -Vertex 1766: -Vertex 1767: -Vertex 1768: -Vertex 1769: -Vertex 1770: -Vertex 1771: -Vertex 1772: -Vertex 1773: -Vertex 1774: -Vertex 1775: -Vertex 1776: -Vertex 1777: -Vertex 1778: -Vertex 1779: -Vertex 1780: -Vertex 1781: -Vertex 1782: -Vertex 1783: -Vertex 1784: -Vertex 1785: -Vertex 1786: -Vertex 1787: -Vertex 1788: -Vertex 1789: -Vertex 1790: -Vertex 1791: -Vertex 1792: -Vertex 1793: -Vertex 1794: -Vertex 1795: -Vertex 1796: -Vertex 1797: -Vertex 1798: -Vertex 1799: -Vertex 1800: -Vertex 1801: -Vertex 1802: -Vertex 1803: -Vertex 1804: -Vertex 1805: -Vertex 1806: -Vertex 1807: -Vertex 1808: -Vertex 1809: -Vertex 1810: -Vertex 1811: -Vertex 1812: -Vertex 1813: -Vertex 1814: -Vertex 1815: -Vertex 1816: -Vertex 1817: -Vertex 1818: -Vertex 1819: -Vertex 1820: -Vertex 1821: -Vertex 1822: -Vertex 1823: -Vertex 1824: -Vertex 1825: -Vertex 1826: -Vertex 1827: -Vertex 1828: -Vertex 1829: -Vertex 1830: -Vertex 1831: -Vertex 1832: -Vertex 1833: -Vertex 1834: -Vertex 1835: -Vertex 1836: -Vertex 1837: -Vertex 1838: -Vertex 1839: -Vertex 1840: -Vertex 1841: -Vertex 1842: -Vertex 1843: -Vertex 1844: -Vertex 1845: -Vertex 1846: -Vertex 1847: -Vertex 1848: -Vertex 1849: -Vertex 1850: -Vertex 1851: -Vertex 1852: -Vertex 1853: -Vertex 1854: -Vertex 1855: -Vertex 1856: -Vertex 1857: -Vertex 1858: -Vertex 1859: -Vertex 1860: -Vertex 1861: -Vertex 1862: -Vertex 1863: -Vertex 1864: -Vertex 1865: -Vertex 1866: -Vertex 1867: -Vertex 1868: -Vertex 1869: -Vertex 1870: -Vertex 1871: -Vertex 1872: -Vertex 1873: -Vertex 1874: -Vertex 1875: -Vertex 1876: -Vertex 1877: -Vertex 1878: -Vertex 1879: -Vertex 1880: -Vertex 1881: -Vertex 1882: -Vertex 1883: -Vertex 1884: -Vertex 1885: -Vertex 1886: -Vertex 1887: -Vertex 1888: -Vertex 1889: -Vertex 1890: -Vertex 1891: -Vertex 1892: -Vertex 1893: -Vertex 1894: -Vertex 1895: -Vertex 1896: -Vertex 1897: -Vertex 1898: -Vertex 1899: -Vertex 1900: -Vertex 1901: -Vertex 1902: -Vertex 1903: -Vertex 1904: -Vertex 1905: -Vertex 1906: -Vertex 1907: -Vertex 1908: -Vertex 1909: -Vertex 1910: -Vertex 1911: -Vertex 1912: -Vertex 1913: -Vertex 1914: -Vertex 1915: -Vertex 1916: -Vertex 1917: -Vertex 1918: -Vertex 1919: -Vertex 1920: -Vertex 1921: -Vertex 1922: -Vertex 1923: -Vertex 1924: -Vertex 1925: -Vertex 1926: -Vertex 1927: -Vertex 1928: -Vertex 1929: -Vertex 1930: -Vertex 1931: -Vertex 1932: -Vertex 1933: -Vertex 1934: -Vertex 1935: -Vertex 1936: -Vertex 1937: -Vertex 1938: -Vertex 1939: -Vertex 1940: -Vertex 1941: -Vertex 1942: -Vertex 1943: -Vertex 1944: -Vertex 1945: -Vertex 1946: -Vertex 1947: -Vertex 1948: -Vertex 1949: -Vertex 1950: -Vertex 1951: -Vertex 1952: -Vertex 1953: -Vertex 1954: -Vertex 1955: -Vertex 1956: -Vertex 1957: -Vertex 1958: -Vertex 1959: -Vertex 1960: -Vertex 1961: -Vertex 1962: -Vertex 1963: -Vertex 1964: -Vertex 1965: -Vertex 1966: -Vertex 1967: -Vertex 1968: -Vertex 1969: -Vertex 1970: -Vertex 1971: -Vertex 1972: -Vertex 1973: -Vertex 1974: -Vertex 1975: -Vertex 1976: -Vertex 1977: -Vertex 1978: -Vertex 1979: -Vertex 1980: -Vertex 1981: -Vertex 1982: -Vertex 1983: -Vertex 1984: -Vertex 1985: -Vertex 1986: -Vertex 1987: -Vertex 1988: -Vertex 1989: -Vertex 1990: -Vertex 1991: -Vertex 1992: -Vertex 1993: -Vertex 1994: -Vertex 1995: -Vertex 1996: -Vertex 1997: -Vertex 1998: -Vertex 1999: -Vertex 2000: -Vertex 2001: -Vertex 2002: -Vertex 2003: -Vertex 2004: -Vertex 2005: -Vertex 2006: -Vertex 2007: -Vertex 2008: -Vertex 2009: -Vertex 2010: -Vertex 2011: -Vertex 2012: -Vertex 2013: -Vertex 2014: -Vertex 2015: -Vertex 2016: -Vertex 2017: -Vertex 2018: -Vertex 2019: -Vertex 2020: -Vertex 2021: -Vertex 2022: -Vertex 2023: -Vertex 2024: -Vertex 2025: -Vertex 2026: -Vertex 2027: -Vertex 2028: -Vertex 2029: -Vertex 2030: -Vertex 2031: -Vertex 2032: -Vertex 2033: -Vertex 2034: -Vertex 2035: -Vertex 2036: -Vertex 2037: -Vertex 2038: -Vertex 2039: -Vertex 2040: -Vertex 2041: -Vertex 2042: -Vertex 2043: -Vertex 2044: -Vertex 2045: -Vertex 2046: -Vertex 2047: -Vertex 2048: -Vertex 2049: -Vertex 2050: -Vertex 2051: -Vertex 2052: -Vertex 2053: -Vertex 2054: -Vertex 2055: -Vertex 2056: -Vertex 2057: -Vertex 2058: -Vertex 2059: -Vertex 2060: -Vertex 2061: -Vertex 2062: -Vertex 2063: -Vertex 2064: -Vertex 2065: -Vertex 2066: -Vertex 2067: -Vertex 2068: -Vertex 2069: -Vertex 2070: -Vertex 2071: -Vertex 2072: -Vertex 2073: -Vertex 2074: -Vertex 2075: -Vertex 2076: -Vertex 2077: -Vertex 2078: -Vertex 2079: -Vertex 2080: -Vertex 2081: -Vertex 2082: -Vertex 2083: -Vertex 2084: -Vertex 2085: -Vertex 2086: -Vertex 2087: -Vertex 2088: -Vertex 2089: -Vertex 2090: -Vertex 2091: -Vertex 2092: -Vertex 2093: -Vertex 2094: -Vertex 2095: -Vertex 2096: -Vertex 2097: -Vertex 2098: -Vertex 2099: -Vertex 2100: -Vertex 2101: -Vertex 2102: -Vertex 2103: -Vertex 2104: -Vertex 2105: -Vertex 2106: -Vertex 2107: -Vertex 2108: -Vertex 2109: -Vertex 2110: -Vertex 2111: -Vertex 2112: -Vertex 2113: -Vertex 2114: -Vertex 2115: -Vertex 2116: -Vertex 2117: -Vertex 2118: -Vertex 2119: -Vertex 2120: -Vertex 2121: -Vertex 2122: -Vertex 2123: -Vertex 2124: -Vertex 2125: -Vertex 2126: -Vertex 2127: -Vertex 2128: -Vertex 2129: -Vertex 2130: -Vertex 2131: -Vertex 2132: -Vertex 2133: -Vertex 2134: -Vertex 2135: -Vertex 2136: -Vertex 2137: -Vertex 2138: -Vertex 2139: -Vertex 2140: -Vertex 2141: -Vertex 2142: -Vertex 2143: -Vertex 2144: -Vertex 2145: -Vertex 2146: -Vertex 2147: -Vertex 2148: -Vertex 2149: -Vertex 2150: -Vertex 2151: -Vertex 2152: -Vertex 2153: -Vertex 2154: -Vertex 2155: -Vertex 2156: -Vertex 2157: -Vertex 2158: -Vertex 2159: -Vertex 2160: -Vertex 2161: -Vertex 2162: -Vertex 2163: -Vertex 2164: -Vertex 2165: -Vertex 2166: -Vertex 2167: -Vertex 2168: -Vertex 2169: -Vertex 2170: -Vertex 2171: -Vertex 2172: -Vertex 2173: -Vertex 2174: -Vertex 2175: -Vertex 2176: -Vertex 2177: -Vertex 2178: -Vertex 2179: -Vertex 2180: -Vertex 2181: -Vertex 2182: -Vertex 2183: -Vertex 2184: -Vertex 2185: -Vertex 2186: -Vertex 2187: -Vertex 2188: -Vertex 2189: -Vertex 2190: -Vertex 2191: -Vertex 2192: -Vertex 2193: -Vertex 2194: -Vertex 2195: -Vertex 2196: -Vertex 2197: -Vertex 2198: -Vertex 2199: -Vertex 2200: -Vertex 2201: -Vertex 2202: -Vertex 2203: -Vertex 2204: -Vertex 2205: -Vertex 2206: -Vertex 2207: -Vertex 2208: -Vertex 2209: -Vertex 2210: -Vertex 2211: -Vertex 2212: -Vertex 2213: -Vertex 2214: -Vertex 2215: -Vertex 2216: -Vertex 2217: -Vertex 2218: -Vertex 2219: -Vertex 2220: -Vertex 2221: -Vertex 2222: -Vertex 2223: -Vertex 2224: -Vertex 2225: -Vertex 2226: -Vertex 2227: -Vertex 2228: -Vertex 2229: -Vertex 2230: -Vertex 2231: -Vertex 2232: -Vertex 2233: -Vertex 2234: -Vertex 2235: -Vertex 2236: -Vertex 2237: -Vertex 2238: -Vertex 2239: -Vertex 2240: -Vertex 2241: -Vertex 2242: -Vertex 2243: -Vertex 2244: -Vertex 2245: -Vertex 2246: -Vertex 2247: -Vertex 2248: -Vertex 2249: -Vertex 2250: -Vertex 2251: -Vertex 2252: -Vertex 2253: -Vertex 2254: -Vertex 2255: -Vertex 2256: -Vertex 2257: -Vertex 2258: -Vertex 2259: -Vertex 2260: -Vertex 2261: -Vertex 2262: -Vertex 2263: -Vertex 2264: -Vertex 2265: -Vertex 2266: -Vertex 2267: -Vertex 2268: -Vertex 2269: -Vertex 2270: -Vertex 2271: -Vertex 2272: -Vertex 2273: -Vertex 2274: -Vertex 2275: -Vertex 2276: -Vertex 2277: -Vertex 2278: -Vertex 2279: -Vertex 2280: -Vertex 2281: -Vertex 2282: -Vertex 2283: -Vertex 2284: -Vertex 2285: -Vertex 2286: -Vertex 2287: -Vertex 2288: -Vertex 2289: -Vertex 2290: -Vertex 2291: -Vertex 2292: -Vertex 2293: -Vertex 2294: -Vertex 2295: -===Triangles: 4480 -Triangle: [15, 13, 18] -Triangle: [16, 18, 19] -Triangle: [17, 19, 20] -Triangle: [5, 20, 21] -Triangle: [4, 21, 22] -Triangle: [3, 22, 23] -Triangle: [3, 24, 2] -Triangle: [2, 25, 1] -Triangle: [6, 1, 25] -Triangle: [7, 25, 26] -Triangle: [26, 24, 27] -Triangle: [28, 24, 23] -Triangle: [29, 23, 22] -Triangle: [30, 22, 21] -Triangle: [30, 20, 31] -Triangle: [32, 20, 19] -Triangle: [32, 18, 33] -Triangle: [33, 13, 12] -Triangle: [34, 12, 11] -Triangle: [33, 35, 32] -Triangle: [31, 35, 36] -Triangle: [31, 37, 30] -Triangle: [29, 37, 38] -Triangle: [28, 38, 39] -Triangle: [27, 39, 40] -Triangle: [26, 40, 41] -Triangle: [8, 26, 41] -Triangle: [8, 42, 9] -Triangle: [9, 43, 10] -Triangle: [43, 11, 10] -Triangle: [34, 45, 35] -Triangle: [35, 46, 36] -Triangle: [37, 46, 47] -Triangle: [38, 47, 48] -Triangle: [38, 49, 39] -Triangle: [39, 50, 40] -Triangle: [40, 51, 41] -Triangle: [42, 51, 52] -Triangle: [43, 52, 53] -Triangle: [44, 43, 53] -Triangle: [49, 55, 50] -Triangle: [50, 56, 51] -Triangle: [51, 57, 52] -Triangle: [52, 58, 53] -Triangle: [53, 59, 44] -Triangle: [44, 60, 45] -Triangle: [45, 61, 46] -Triangle: [46, 62, 47] -Triangle: [47, 63, 48] -Triangle: [54, 48, 63] -Triangle: [13, 69, 72] -Triangle: [70, 72, 69] -Triangle: [71, 73, 70] -Triangle: [68, 74, 71] -Triangle: [67, 75, 68] -Triangle: [66, 76, 67] -Triangle: [78, 66, 65] -Triangle: [79, 65, 64] -Triangle: [6, 64, 0] -Triangle: [7, 79, 6] -Triangle: [78, 80, 81] -Triangle: [82, 78, 81] -Triangle: [83, 77, 82] -Triangle: [84, 76, 83] -Triangle: [74, 84, 85] -Triangle: [86, 74, 85] -Triangle: [72, 86, 87] -Triangle: [87, 13, 72] -Triangle: [88, 12, 87] -Triangle: [89, 87, 86] -Triangle: [85, 89, 86] -Triangle: [91, 85, 84] -Triangle: [83, 91, 84] -Triangle: [82, 92, 83] -Triangle: [81, 93, 82] -Triangle: [80, 94, 81] -Triangle: [8, 80, 7] -Triangle: [96, 8, 9] -Triangle: [97, 9, 10] -Triangle: [11, 97, 10] -Triangle: [99, 88, 89] -Triangle: [100, 89, 90] -Triangle: [91, 100, 90] -Triangle: [92, 101, 91] -Triangle: [103, 92, 93] -Triangle: [104, 93, 94] -Triangle: [105, 94, 95] -Triangle: [96, 105, 95] -Triangle: [97, 106, 96] -Triangle: [98, 97, 88] -Triangle: [109, 103, 104] -Triangle: [110, 104, 105] -Triangle: [111, 105, 106] -Triangle: [112, 106, 107] -Triangle: [113, 107, 98] -Triangle: [114, 98, 99] -Triangle: [115, 99, 100] -Triangle: [116, 100, 101] -Triangle: [117, 101, 102] -Triangle: [108, 102, 103] -Triangle: [118, 138, 126] -Triangle: [119, 138, 127] -Triangle: [138, 121, 129] -Triangle: [138, 120, 126] -Triangle: [120, 139, 130] -Triangle: [121, 139, 129] -Triangle: [139, 125, 132] -Triangle: [139, 124, 130] -Triangle: [124, 140, 133] -Triangle: [125, 140, 132] -Triangle: [140, 123, 135] -Triangle: [140, 122, 133] -Triangle: [122, 141, 136] -Triangle: [123, 141, 135] -Triangle: [141, 119, 127] -Triangle: [141, 118, 136] -Triangle: [120, 142, 126] -Triangle: [124, 142, 130] -Triangle: [142, 122, 136] -Triangle: [142, 118, 126] -Triangle: [125, 143, 134] -Triangle: [121, 143, 131] -Triangle: [143, 119, 137] -Triangle: [143, 123, 134] -Triangle: [144, 164, 153] -Triangle: [164, 145, 153] -Triangle: [164, 147, 154] -Triangle: [146, 164, 152] -Triangle: [146, 165, 155] -Triangle: [165, 147, 155] -Triangle: [165, 151, 157] -Triangle: [150, 165, 156] -Triangle: [150, 166, 158] -Triangle: [166, 151, 158] -Triangle: [166, 149, 160] -Triangle: [148, 166, 159] -Triangle: [148, 167, 161] -Triangle: [167, 149, 161] -Triangle: [167, 145, 163] -Triangle: [144, 167, 162] -Triangle: [146, 168, 156] -Triangle: [168, 150, 156] -Triangle: [168, 148, 159] -Triangle: [144, 168, 152] -Triangle: [151, 169, 157] -Triangle: [169, 147, 157] -Triangle: [169, 145, 154] -Triangle: [149, 169, 160] -Triangle: [173, 170, 172] -Triangle: [174, 171, 175] -Triangle: [173, 177, 171] -Triangle: [175, 177, 178] -Triangle: [176, 180, 177] -Triangle: [177, 181, 178] -Triangle: [179, 183, 180] -Triangle: [183, 184, 185] -Triangle: [185, 186, 187] -Triangle: [180, 188, 181] -Triangle: [189, 183, 185] -Triangle: [189, 187, 190] -Triangle: [194, 172, 170] -Triangle: [192, 194, 195] -Triangle: [193, 195, 196] -Triangle: [197, 170, 174] -Triangle: [195, 197, 196] -Triangle: [199, 193, 196] -Triangle: [199, 200, 201] -Triangle: [202, 196, 197] -Triangle: [203, 197, 174] -Triangle: [203, 175, 204] -Triangle: [204, 178, 205] -Triangle: [205, 181, 206] -Triangle: [206, 188, 207] -Triangle: [207, 189, 208] -Triangle: [208, 190, 209] -Triangle: [198, 213, 214] -Triangle: [213, 201, 212] -Triangle: [210, 201, 215] -Triangle: [211, 210, 215] -Triangle: [213, 211, 216] -Triangle: [213, 217, 214] -Triangle: [218, 201, 200] -Triangle: [219, 218, 220] -Triangle: [215, 221, 211] -Triangle: [211, 222, 216] -Triangle: [216, 223, 217] -Triangle: [224, 200, 202] -Triangle: [225, 202, 203] -Triangle: [220, 224, 226] -Triangle: [226, 225, 227] -Triangle: [225, 204, 228] -Triangle: [228, 205, 229] -Triangle: [230, 205, 206] -Triangle: [230, 207, 231] -Triangle: [232, 207, 208] -Triangle: [232, 209, 233] -Triangle: [227, 228, 234] -Triangle: [235, 228, 229] -Triangle: [236, 229, 230] -Triangle: [237, 230, 231] -Triangle: [238, 222, 239] -Triangle: [240, 222, 221] -Triangle: [240, 219, 241] -Triangle: [241, 220, 242] -Triangle: [242, 226, 243] -Triangle: [243, 227, 244] -Triangle: [244, 234, 245] -Triangle: [246, 234, 235] -Triangle: [246, 236, 247] -Triangle: [247, 237, 248] -Triangle: [237, 250, 248] -Triangle: [232, 237, 231] -Triangle: [249, 233, 251] -Triangle: [252, 239, 256] -Triangle: [253, 256, 257] -Triangle: [254, 257, 258] -Triangle: [255, 258, 259] -Triangle: [256, 240, 260] -Triangle: [257, 260, 261] -Triangle: [260, 241, 262] -Triangle: [262, 242, 263] -Triangle: [263, 243, 264] -Triangle: [264, 244, 265] -Triangle: [265, 245, 266] -Triangle: [267, 245, 246] -Triangle: [268, 246, 247] -Triangle: [269, 247, 248] -Triangle: [249, 270, 250] -Triangle: [270, 248, 250] -Triangle: [268, 272, 267] -Triangle: [272, 273, 274] -Triangle: [272, 275, 267] -Triangle: [266, 275, 276] -Triangle: [266, 277, 265] -Triangle: [265, 278, 264] -Triangle: [264, 279, 263] -Triangle: [263, 280, 262] -Triangle: [261, 262, 280] -Triangle: [258, 261, 281] -Triangle: [282, 268, 269] -Triangle: [187, 283, 284] -Triangle: [190, 284, 285] -Triangle: [209, 285, 286] -Triangle: [233, 286, 287] -Triangle: [251, 287, 288] -Triangle: [270, 288, 289] -Triangle: [270, 290, 269] -Triangle: [269, 291, 282] -Triangle: [293, 290, 289] -Triangle: [294, 289, 288] -Triangle: [296, 288, 287] -Triangle: [294, 295, 297] -Triangle: [298, 287, 286] -Triangle: [298, 285, 299] -Triangle: [299, 284, 300] -Triangle: [300, 283, 301] -Triangle: [300, 302, 303] -Triangle: [299, 303, 304] -Triangle: [298, 304, 305] -Triangle: [296, 305, 295] -Triangle: [295, 306, 297] -Triangle: [307, 305, 304] -Triangle: [308, 304, 303] -Triangle: [309, 303, 302] -Triangle: [308, 310, 311] -Triangle: [307, 311, 312] -Triangle: [306, 312, 313] -Triangle: [297, 313, 314] -Triangle: [294, 314, 315] -Triangle: [293, 315, 316] -Triangle: [311, 317, 318] -Triangle: [312, 318, 319] -Triangle: [313, 319, 320] -Triangle: [314, 320, 321] -Triangle: [315, 321, 322] -Triangle: [316, 322, 323] -Triangle: [292, 316, 323] -Triangle: [282, 324, 271] -Triangle: [291, 292, 325] -Triangle: [324, 325, 326] -Triangle: [273, 324, 326] -Triangle: [325, 323, 327] -Triangle: [326, 327, 328] -Triangle: [326, 330, 273] -Triangle: [329, 328, 425] -Triangle: [329, 332, 330] -Triangle: [333, 331, 334] -Triangle: [330, 336, 273] -Triangle: [335, 273, 336] -Triangle: [274, 338, 275] -Triangle: [275, 339, 276] -Triangle: [337, 332, 340] -Triangle: [341, 332, 333] -Triangle: [342, 335, 336] -Triangle: [338, 343, 339] -Triangle: [342, 337, 340] -Triangle: [342, 341, 343] -Triangle: [276, 344, 277] -Triangle: [345, 339, 343] -Triangle: [346, 343, 341] -Triangle: [346, 333, 347] -Triangle: [345, 347, 344] -Triangle: [344, 348, 277] -Triangle: [349, 333, 334] -Triangle: [278, 348, 350] -Triangle: [348, 349, 351] -Triangle: [350, 351, 352] -Triangle: [281, 280, 353] -Triangle: [353, 279, 354] -Triangle: [354, 278, 350] -Triangle: [355, 350, 352] -Triangle: [353, 355, 356] -Triangle: [353, 357, 281] -Triangle: [259, 281, 357] -Triangle: [358, 259, 362] -Triangle: [362, 357, 363] -Triangle: [363, 356, 364] -Triangle: [364, 365, 366] -Triangle: [366, 367, 368] -Triangle: [368, 369, 370] -Triangle: [370, 371, 372] -Triangle: [372, 373, 374] -Triangle: [374, 375, 376] -Triangle: [376, 377, 378] -Triangle: [378, 379, 380] -Triangle: [359, 362, 381] -Triangle: [382, 362, 363] -Triangle: [382, 364, 383] -Triangle: [383, 366, 384] -Triangle: [384, 368, 385] -Triangle: [385, 370, 386] -Triangle: [386, 372, 387] -Triangle: [387, 374, 388] -Triangle: [388, 376, 389] -Triangle: [389, 378, 390] -Triangle: [390, 380, 391] -Triangle: [365, 355, 352] -Triangle: [367, 352, 392] -Triangle: [369, 392, 393] -Triangle: [369, 394, 371] -Triangle: [371, 395, 373] -Triangle: [375, 395, 396] -Triangle: [375, 397, 377] -Triangle: [379, 397, 398] -Triangle: [392, 351, 399] -Triangle: [400, 351, 349] -Triangle: [393, 399, 401] -Triangle: [393, 402, 394] -Triangle: [394, 403, 395] -Triangle: [396, 403, 404] -Triangle: [396, 405, 397] -Triangle: [398, 405, 406] -Triangle: [401, 400, 407] -Triangle: [402, 407, 408] -Triangle: [403, 408, 409] -Triangle: [404, 409, 410] -Triangle: [405, 410, 411] -Triangle: [406, 411, 412] -Triangle: [407, 349, 334] -Triangle: [407, 413, 408] -Triangle: [408, 414, 409] -Triangle: [409, 415, 410] -Triangle: [411, 415, 416] -Triangle: [412, 416, 417] -Triangle: [419, 417, 416] -Triangle: [419, 415, 420] -Triangle: [420, 414, 421] -Triangle: [421, 413, 423] -Triangle: [424, 420, 421] -Triangle: [331, 425, 426] -Triangle: [427, 334, 331] -Triangle: [427, 426, 428] -Triangle: [430, 428, 426] -Triangle: [430, 425, 328] -Triangle: [431, 327, 432] -Triangle: [430, 431, 433] -Triangle: [429, 433, 434] -Triangle: [435, 327, 323] -Triangle: [435, 322, 436] -Triangle: [437, 322, 321] -Triangle: [438, 321, 320] -Triangle: [439, 320, 319] -Triangle: [440, 319, 318] -Triangle: [441, 318, 317] -Triangle: [444, 434, 433] -Triangle: [442, 445, 443] -Triangle: [422, 445, 446] -Triangle: [422, 419, 420] -Triangle: [419, 447, 418] -Triangle: [448, 446, 445] -Triangle: [448, 449, 450] -Triangle: [449, 444, 458] -Triangle: [459, 450, 449] -Triangle: [459, 458, 460] -Triangle: [461, 444, 433] -Triangle: [462, 433, 431] -Triangle: [460, 461, 462] -Triangle: [452, 459, 463] -Triangle: [463, 460, 464] -Triangle: [464, 462, 465] -Triangle: [465, 431, 432] -Triangle: [453, 463, 466] -Triangle: [466, 464, 467] -Triangle: [467, 465, 468] -Triangle: [468, 432, 435] -Triangle: [469, 435, 436] -Triangle: [468, 470, 467] -Triangle: [467, 471, 466] -Triangle: [454, 466, 471] -Triangle: [455, 471, 472] -Triangle: [456, 472, 473] -Triangle: [457, 478, 474] -Triangle: [440, 457, 474] -Triangle: [437, 475, 476] -Triangle: [436, 476, 469] -Triangle: [469, 477, 470] -Triangle: [472, 470, 477] -Triangle: [479, 476, 475] -Triangle: [473, 477, 479] -Triangle: [474, 479, 480] -Triangle: [439, 474, 480] -Triangle: [438, 480, 475] -Triangle: [475, 480, 479] -Triangle: [481, 434, 482] -Triangle: [428, 481, 483] -Triangle: [427, 483, 484] -Triangle: [443, 424, 485] -Triangle: [442, 485, 486] -Triangle: [482, 442, 486] -Triangle: [423, 427, 484] -Triangle: [487, 481, 488] -Triangle: [488, 482, 489] -Triangle: [489, 486, 490] -Triangle: [491, 486, 485] -Triangle: [492, 485, 424] -Triangle: [493, 424, 421] -Triangle: [494, 421, 423] -Triangle: [495, 423, 484] -Triangle: [484, 487, 495] -Triangle: [495, 496, 497] -Triangle: [498, 487, 488] -Triangle: [498, 489, 499] -Triangle: [499, 490, 500] -Triangle: [500, 491, 501] -Triangle: [501, 492, 502] -Triangle: [503, 492, 493] -Triangle: [504, 493, 494] -Triangle: [494, 497, 504] -Triangle: [498, 505, 508] -Triangle: [496, 508, 509] -Triangle: [497, 509, 510] -Triangle: [497, 511, 504] -Triangle: [504, 512, 503] -Triangle: [503, 513, 502] -Triangle: [502, 514, 501] -Triangle: [501, 515, 500] -Triangle: [505, 500, 515] -Triangle: [506, 515, 516] -Triangle: [516, 514, 517] -Triangle: [517, 513, 518] -Triangle: [518, 512, 519] -Triangle: [519, 511, 520] -Triangle: [521, 511, 510] -Triangle: [522, 510, 509] -Triangle: [523, 509, 508] -Triangle: [508, 506, 523] -Triangle: [524, 506, 507] -Triangle: [522, 524, 525] -Triangle: [521, 525, 526] -Triangle: [521, 527, 520] -Triangle: [520, 528, 519] -Triangle: [519, 529, 518] -Triangle: [518, 530, 517] -Triangle: [517, 531, 516] -Triangle: [507, 516, 531] -Triangle: [532, 530, 533] -Triangle: [533, 529, 534] -Triangle: [535, 529, 528] -Triangle: [535, 527, 536] -Triangle: [536, 526, 537] -Triangle: [538, 526, 525] -Triangle: [539, 525, 524] -Triangle: [539, 507, 540] -Triangle: [507, 532, 540] -Triangle: [541, 532, 533] -Triangle: [540, 542, 539] -Triangle: [538, 542, 537] -Triangle: [537, 543, 536] -Triangle: [543, 541, 544] -Triangle: [544, 533, 534] -Triangle: [535, 543, 544] -Triangle: [535, 544, 534] -Triangle: [360, 381, 545] -Triangle: [361, 545, 546] -Triangle: [547, 381, 382] -Triangle: [548, 382, 383] -Triangle: [548, 384, 549] -Triangle: [549, 385, 550] -Triangle: [550, 386, 551] -Triangle: [551, 387, 552] -Triangle: [552, 388, 553] -Triangle: [553, 389, 554] -Triangle: [554, 390, 555] -Triangle: [555, 391, 556] -Triangle: [545, 557, 546] -Triangle: [557, 548, 558] -Triangle: [558, 549, 559] -Triangle: [559, 550, 560] -Triangle: [560, 551, 561] -Triangle: [562, 551, 552] -Triangle: [563, 552, 553] -Triangle: [563, 554, 564] -Triangle: [564, 555, 565] -Triangle: [565, 556, 566] -Triangle: [568, 361, 546] -Triangle: [569, 546, 557] -Triangle: [569, 558, 570] -Triangle: [571, 558, 559] -Triangle: [571, 560, 572] -Triangle: [573, 560, 561] -Triangle: [573, 562, 574] -Triangle: [575, 562, 563] -Triangle: [576, 563, 564] -Triangle: [577, 564, 565] -Triangle: [578, 565, 566] -Triangle: [577, 579, 580] -Triangle: [576, 580, 581] -Triangle: [573, 595, 572] -Triangle: [582, 574, 603] -Triangle: [603, 602, 604] -Triangle: [604, 601, 605] -Triangle: [605, 600, 606] -Triangle: [607, 600, 599] -Triangle: [608, 599, 598] -Triangle: [609, 598, 597] -Triangle: [610, 597, 596] -Triangle: [595, 596, 572] -Triangle: [611, 582, 583] -Triangle: [611, 584, 612] -Triangle: [613, 584, 585] -Triangle: [614, 585, 586] -Triangle: [614, 587, 615] -Triangle: [615, 588, 616] -Triangle: [616, 589, 617] -Triangle: [617, 590, 618] -Triangle: [618, 591, 619] -Triangle: [620, 591, 592] -Triangle: [621, 592, 593] -Triangle: [621, 594, 622] -Triangle: [610, 611, 623] -Triangle: [609, 623, 624] -Triangle: [608, 624, 625] -Triangle: [607, 625, 626] -Triangle: [606, 626, 627] -Triangle: [606, 628, 605] -Triangle: [583, 603, 629] -Triangle: [584, 629, 630] -Triangle: [585, 630, 631] -Triangle: [586, 631, 632] -Triangle: [586, 633, 587] -Triangle: [587, 634, 588] -Triangle: [588, 635, 589] -Triangle: [590, 635, 636] -Triangle: [590, 637, 591] -Triangle: [591, 638, 592] -Triangle: [593, 638, 639] -Triangle: [593, 640, 594] -Triangle: [629, 604, 641] -Triangle: [630, 641, 642] -Triangle: [631, 642, 643] -Triangle: [632, 643, 644] -Triangle: [633, 644, 645] -Triangle: [634, 645, 646] -Triangle: [635, 646, 647] -Triangle: [636, 647, 648] -Triangle: [637, 648, 649] -Triangle: [638, 649, 650] -Triangle: [639, 650, 651] -Triangle: [640, 651, 828] -Triangle: [641, 605, 628] -Triangle: [642, 628, 652] -Triangle: [643, 652, 653] -Triangle: [644, 653, 654] -Triangle: [644, 655, 645] -Triangle: [646, 655, 656] -Triangle: [647, 656, 657] -Triangle: [648, 657, 658] -Triangle: [649, 658, 659] -Triangle: [650, 659, 660] -Triangle: [650, 661, 651] -Triangle: [652, 627, 662] -Triangle: [653, 662, 663] -Triangle: [654, 663, 664] -Triangle: [655, 664, 665] -Triangle: [656, 665, 666] -Triangle: [657, 666, 667] -Triangle: [658, 667, 668] -Triangle: [658, 669, 659] -Triangle: [659, 670, 660] -Triangle: [660, 671, 661] -Triangle: [828, 661, 671] -Triangle: [662, 626, 673] -Triangle: [662, 674, 663] -Triangle: [663, 675, 664] -Triangle: [664, 676, 665] -Triangle: [666, 676, 677] -Triangle: [667, 677, 678] -Triangle: [668, 678, 679] -Triangle: [668, 680, 669] -Triangle: [669, 681, 670] -Triangle: [670, 682, 671] -Triangle: [672, 682, 683] -Triangle: [684, 626, 625] -Triangle: [673, 685, 674] -Triangle: [674, 686, 675] -Triangle: [675, 687, 676] -Triangle: [676, 688, 677] -Triangle: [678, 688, 689] -Triangle: [679, 689, 690] -Triangle: [679, 691, 680] -Triangle: [680, 692, 681] -Triangle: [682, 692, 693] -Triangle: [683, 693, 694] -Triangle: [695, 625, 624] -Triangle: [696, 624, 623] -Triangle: [623, 612, 696] -Triangle: [697, 612, 613] -Triangle: [695, 697, 698] -Triangle: [684, 698, 685] -Triangle: [699, 613, 614] -Triangle: [698, 699, 700] -Triangle: [685, 700, 686] -Triangle: [701, 614, 615] -Triangle: [700, 701, 702] -Triangle: [686, 702, 687] -Triangle: [703, 615, 616] -Triangle: [701, 704, 702] -Triangle: [687, 704, 688] -Triangle: [703, 617, 705] -Triangle: [704, 705, 706] -Triangle: [688, 706, 689] -Triangle: [705, 618, 707] -Triangle: [705, 708, 706] -Triangle: [689, 708, 690] -Triangle: [707, 619, 709] -Triangle: [708, 709, 710] -Triangle: [690, 710, 691] -Triangle: [691, 711, 692] -Triangle: [712, 710, 709] -Triangle: [712, 619, 620] -Triangle: [712, 621, 713] -Triangle: [711, 713, 714] -Triangle: [692, 714, 693] -Triangle: [693, 715, 694] -Triangle: [716, 714, 713] -Triangle: [713, 622, 716] -Triangle: [570, 572, 596] -Triangle: [570, 717, 569] -Triangle: [568, 717, 718] -Triangle: [568, 719, 567] -Triangle: [717, 597, 720] -Triangle: [717, 721, 718] -Triangle: [718, 722, 719] -Triangle: [720, 723, 724] -Triangle: [721, 724, 725] -Triangle: [722, 725, 726] -Triangle: [728, 726, 725] -Triangle: [729, 725, 724] -Triangle: [729, 723, 730] -Triangle: [723, 598, 731] -Triangle: [731, 599, 732] -Triangle: [733, 599, 600] -Triangle: [730, 731, 734] -Triangle: [734, 732, 735] -Triangle: [736, 732, 733] -Triangle: [738, 727, 728] -Triangle: [739, 728, 729] -Triangle: [739, 730, 740] -Triangle: [740, 734, 741] -Triangle: [741, 735, 742] -Triangle: [743, 735, 736] -Triangle: [744, 738, 745] -Triangle: [745, 739, 746] -Triangle: [746, 740, 747] -Triangle: [747, 741, 748] -Triangle: [748, 742, 749] -Triangle: [750, 742, 743] -Triangle: [576, 751, 575] -Triangle: [602, 575, 751] -Triangle: [602, 752, 601] -Triangle: [753, 600, 601] -Triangle: [753, 752, 754] -Triangle: [733, 754, 736] -Triangle: [736, 755, 743] -Triangle: [743, 756, 750] -Triangle: [757, 745, 758] -Triangle: [758, 746, 759] -Triangle: [759, 747, 760] -Triangle: [760, 748, 761] -Triangle: [761, 749, 762] -Triangle: [763, 749, 750] -Triangle: [764, 750, 756] -Triangle: [765, 751, 581] -Triangle: [766, 581, 580] -Triangle: [766, 579, 767] -Triangle: [752, 768, 754] -Triangle: [768, 766, 767] -Triangle: [768, 769, 770] -Triangle: [754, 770, 755] -Triangle: [755, 771, 756] -Triangle: [771, 769, 772] -Triangle: [756, 773, 764] -Triangle: [774, 771, 772] -Triangle: [622, 775, 779] -Triangle: [779, 776, 780] -Triangle: [780, 777, 781] -Triangle: [782, 777, 778] -Triangle: [775, 640, 783] -Triangle: [775, 784, 776] -Triangle: [776, 785, 777] -Triangle: [777, 786, 778] -Triangle: [778, 788, 782] -Triangle: [787, 786, 789] -Triangle: [781, 788, 790] -Triangle: [781, 791, 780] -Triangle: [780, 792, 779] -Triangle: [716, 779, 793] -Triangle: [793, 792, 794] -Triangle: [715, 793, 795] -Triangle: [795, 794, 796] -Triangle: [694, 795, 797] -Triangle: [797, 796, 798] -Triangle: [794, 801, 803] -Triangle: [794, 804, 796] -Triangle: [798, 804, 805] -Triangle: [800, 805, 806] -Triangle: [800, 807, 825] -Triangle: [801, 825, 807] -Triangle: [808, 801, 802] -Triangle: [803, 809, 804] -Triangle: [805, 809, 810] -Triangle: [806, 810, 811] -Triangle: [806, 812, 807] -Triangle: [802, 807, 812] -Triangle: [815, 809, 808] -Triangle: [815, 802, 816] -Triangle: [812, 816, 802] -Triangle: [815, 813, 814] -Triangle: [809, 817, 810] -Triangle: [810, 818, 811] -Triangle: [812, 818, 813] -Triangle: [813, 817, 814] -Triangle: [783, 828, 819] -Triangle: [783, 820, 784] -Triangle: [785, 820, 821] -Triangle: [786, 821, 789] -Triangle: [820, 822, 823] -Triangle: [821, 823, 824] -Triangle: [789, 824, 787] -Triangle: [788, 824, 790] -Triangle: [791, 824, 823] -Triangle: [799, 823, 822] -Triangle: [799, 792, 791] -Triangle: [825, 826, 800] -Triangle: [798, 826, 797] -Triangle: [826, 822, 827] -Triangle: [828, 672, 819] -Triangle: [819, 827, 822] -Triangle: [827, 683, 826] -Triangle: [826, 694, 797] -Triangle: [829, 758, 830] -Triangle: [830, 759, 831] -Triangle: [831, 760, 832] -Triangle: [833, 760, 761] -Triangle: [833, 762, 834] -Triangle: [774, 844, 773] -Triangle: [773, 845, 764] -Triangle: [764, 846, 763] -Triangle: [834, 763, 846] -Triangle: [847, 843, 842] -Triangle: [845, 847, 848] -Triangle: [846, 848, 849] -Triangle: [846, 850, 834] -Triangle: [834, 851, 833] -Triangle: [832, 851, 852] -Triangle: [832, 853, 831] -Triangle: [831, 854, 830] -Triangle: [835, 830, 854] -Triangle: [836, 854, 855] -Triangle: [855, 853, 856] -Triangle: [856, 852, 857] -Triangle: [858, 852, 851] -Triangle: [858, 850, 859] -Triangle: [859, 849, 860] -Triangle: [861, 849, 848] -Triangle: [861, 847, 862] -Triangle: [862, 842, 841] -Triangle: [863, 841, 840] -Triangle: [861, 863, 864] -Triangle: [860, 864, 865] -Triangle: [859, 865, 866] -Triangle: [858, 866, 867] -Triangle: [857, 867, 868] -Triangle: [857, 869, 856] -Triangle: [856, 870, 855] -Triangle: [837, 855, 870] -Triangle: [837, 871, 838] -Triangle: [838, 872, 839] -Triangle: [872, 840, 839] -Triangle: [864, 873, 874] -Triangle: [864, 875, 865] -Triangle: [866, 875, 876] -Triangle: [867, 876, 877] -Triangle: [867, 878, 868] -Triangle: [868, 879, 869] -Triangle: [869, 880, 870] -Triangle: [871, 880, 881] -Triangle: [872, 881, 882] -Triangle: [873, 872, 882] -Triangle: [878, 884, 879] -Triangle: [879, 885, 880] -Triangle: [881, 885, 886] -Triangle: [882, 886, 887] -Triangle: [882, 888, 873] -Triangle: [873, 889, 874] -Triangle: [874, 890, 875] -Triangle: [876, 890, 891] -Triangle: [877, 891, 892] -Triangle: [883, 877, 892] -Triangle: [891, 893, 896] -Triangle: [892, 896, 897] -Triangle: [892, 898, 883] -Triangle: [883, 899, 884] -Triangle: [884, 900, 885] -Triangle: [886, 900, 901] -Triangle: [887, 901, 902] -Triangle: [887, 903, 888] -Triangle: [888, 904, 889] -Triangle: [893, 889, 904] -Triangle: [896, 894, 905] -Triangle: [897, 905, 906] -Triangle: [897, 907, 898] -Triangle: [898, 908, 899] -Triangle: [900, 908, 909] -Triangle: [901, 909, 910] -Triangle: [902, 910, 911] -Triangle: [902, 912, 903] -Triangle: [903, 913, 904] -Triangle: [894, 904, 913] -Triangle: [914, 894, 895] -Triangle: [905, 915, 906] -Triangle: [906, 916, 907] -Triangle: [907, 917, 908] -Triangle: [909, 917, 918] -Triangle: [910, 918, 919] -Triangle: [911, 919, 920] -Triangle: [911, 921, 912] -Triangle: [912, 922, 913] -Triangle: [895, 913, 922] -Triangle: [914, 923, 924] -Triangle: [915, 924, 925] -Triangle: [915, 926, 916] -Triangle: [916, 927, 917] -Triangle: [917, 928, 918] -Triangle: [919, 928, 929] -Triangle: [920, 929, 930] -Triangle: [920, 931, 921] -Triangle: [921, 932, 922] -Triangle: [923, 922, 932] -Triangle: [923, 934, 933] -Triangle: [924, 933, 935] -Triangle: [925, 935, 936] -Triangle: [926, 936, 937] -Triangle: [926, 938, 927] -Triangle: [927, 939, 928] -Triangle: [928, 940, 929] -Triangle: [929, 941, 930] -Triangle: [930, 942, 931] -Triangle: [934, 931, 942] -Triangle: [933, 943, 944] -Triangle: [935, 944, 945] -Triangle: [943, 942, 946] -Triangle: [946, 941, 947] -Triangle: [948, 941, 940] -Triangle: [949, 940, 939] -Triangle: [950, 939, 938] -Triangle: [950, 937, 951] -Triangle: [952, 937, 936] -Triangle: [936, 945, 952] -Triangle: [952, 954, 951] -Triangle: [951, 955, 950] -Triangle: [949, 955, 956] -Triangle: [949, 957, 948] -Triangle: [947, 957, 958] -Triangle: [947, 959, 946] -Triangle: [946, 960, 943] -Triangle: [944, 960, 961] -Triangle: [945, 961, 962] -Triangle: [952, 962, 953] -Triangle: [965, 955, 954] -Triangle: [965, 953, 966] -Triangle: [967, 953, 962] -Triangle: [968, 962, 961] -Triangle: [968, 960, 969] -Triangle: [970, 960, 959] -Triangle: [970, 958, 971] -Triangle: [971, 957, 972] -Triangle: [972, 956, 973] -Triangle: [973, 955, 963] -Triangle: [973, 964, 976] -Triangle: [973, 977, 972] -Triangle: [972, 978, 971] -Triangle: [971, 979, 970] -Triangle: [969, 979, 980] -Triangle: [969, 981, 968] -Triangle: [968, 982, 967] -Triangle: [967, 983, 966] -Triangle: [965, 983, 984] -Triangle: [963, 984, 964] -Triangle: [964, 985, 974] -Triangle: [974, 986, 975] -Triangle: [987, 964, 974] -Triangle: [988, 974, 975] -Triangle: [988, 990, 987] -Triangle: [987, 991, 976] -Triangle: [976, 992, 977] -Triangle: [978, 992, 993] -Triangle: [978, 994, 979] -Triangle: [980, 994, 995] -Triangle: [980, 996, 981] -Triangle: [981, 997, 982] -Triangle: [982, 998, 983] -Triangle: [984, 998, 999] -Triangle: [985, 999, 1000] -Triangle: [986, 1000, 1001] -Triangle: [975, 1001, 1002] -Triangle: [988, 1002, 989] -Triangle: [995, 1004, 996] -Triangle: [997, 1004, 1005] -Triangle: [998, 1005, 1006] -Triangle: [1006, 1004, 1007] -Triangle: [999, 1006, 1008] -Triangle: [1000, 1008, 1009] -Triangle: [1008, 1007, 1010] -Triangle: [1009, 1010, 1011] -Triangle: [1007, 1003, 1012] -Triangle: [1003, 994, 993] -Triangle: [1012, 993, 992] -Triangle: [1010, 1012, 1013] -Triangle: [1013, 992, 991] -Triangle: [1011, 1013, 1014] -Triangle: [1014, 991, 990] -Triangle: [1001, 1009, 1015] -Triangle: [1002, 1015, 1016] -Triangle: [1002, 1017, 989] -Triangle: [1015, 1011, 1018] -Triangle: [1016, 1018, 1017] -Triangle: [1018, 1014, 1017] -Triangle: [1017, 990, 989] -Triangle: [1019, 173, 172] -Triangle: [1021, 1020, 1019] -Triangle: [1023, 173, 1020] -Triangle: [1022, 1023, 1020] -Triangle: [1025, 176, 1023] -Triangle: [1026, 1023, 1024] -Triangle: [1027, 179, 1025] -Triangle: [1027, 184, 182] -Triangle: [1028, 186, 184] -Triangle: [1030, 1025, 1026] -Triangle: [1031, 1027, 1030] -Triangle: [1029, 1031, 1032] -Triangle: [1033, 172, 191] -Triangle: [192, 1033, 191] -Triangle: [193, 1034, 192] -Triangle: [1036, 1019, 1033] -Triangle: [1036, 1034, 1035] -Triangle: [1037, 193, 198] -Triangle: [1037, 1038, 1035] -Triangle: [1040, 1035, 1038] -Triangle: [1041, 1036, 1040] -Triangle: [1022, 1041, 1042] -Triangle: [1024, 1042, 1043] -Triangle: [1026, 1043, 1044] -Triangle: [1030, 1044, 1045] -Triangle: [1031, 1045, 1046] -Triangle: [1032, 1046, 1047] -Triangle: [198, 1051, 1037] -Triangle: [1039, 1051, 1050] -Triangle: [1048, 1039, 1050] -Triangle: [1048, 1049, 1052] -Triangle: [1051, 1049, 1050] -Triangle: [217, 1051, 214] -Triangle: [1054, 1039, 1052] -Triangle: [1054, 1055, 1056] -Triangle: [1057, 1052, 1049] -Triangle: [1058, 1049, 1053] -Triangle: [223, 1053, 217] -Triangle: [1059, 1038, 1054] -Triangle: [1060, 1040, 1059] -Triangle: [1056, 1059, 1054] -Triangle: [1060, 1061, 1062] -Triangle: [1042, 1060, 1063] -Triangle: [1043, 1063, 1064] -Triangle: [1065, 1043, 1064] -Triangle: [1045, 1065, 1066] -Triangle: [1067, 1045, 1066] -Triangle: [1047, 1067, 1068] -Triangle: [1062, 1063, 1060] -Triangle: [1070, 1063, 1069] -Triangle: [1071, 1064, 1070] -Triangle: [1072, 1065, 1071] -Triangle: [1058, 238, 1073] -Triangle: [1074, 1058, 1073] -Triangle: [1055, 1074, 1075] -Triangle: [1056, 1075, 1076] -Triangle: [1061, 1076, 1077] -Triangle: [1062, 1077, 1078] -Triangle: [1069, 1078, 1079] -Triangle: [1080, 1069, 1079] -Triangle: [1071, 1080, 1081] -Triangle: [1072, 1081, 1082] -Triangle: [1084, 1072, 1082] -Triangle: [1067, 1072, 1083] -Triangle: [1068, 1083, 1085] -Triangle: [1073, 252, 1086] -Triangle: [253, 1086, 252] -Triangle: [254, 1087, 253] -Triangle: [255, 1088, 254] -Triangle: [1074, 1086, 1090] -Triangle: [1087, 1090, 1086] -Triangle: [1075, 1090, 1092] -Triangle: [1076, 1092, 1093] -Triangle: [1077, 1093, 1094] -Triangle: [1078, 1094, 1095] -Triangle: [1079, 1095, 1096] -Triangle: [1097, 1079, 1096] -Triangle: [1098, 1080, 1097] -Triangle: [1099, 1081, 1098] -Triangle: [1100, 1083, 1084] -Triangle: [1082, 1100, 1084] -Triangle: [1102, 1098, 1097] -Triangle: [1102, 1103, 1101] -Triangle: [1105, 1102, 1097] -Triangle: [1096, 1105, 1097] -Triangle: [1107, 1096, 1095] -Triangle: [1108, 1095, 1094] -Triangle: [1109, 1094, 1093] -Triangle: [1110, 1093, 1092] -Triangle: [1091, 1092, 1090] -Triangle: [1088, 1091, 1087] -Triangle: [1112, 1098, 1101] -Triangle: [1029, 283, 186] -Triangle: [1032, 1113, 1029] -Triangle: [1047, 1114, 1032] -Triangle: [1068, 1115, 1047] -Triangle: [1085, 1116, 1068] -Triangle: [1100, 1117, 1085] -Triangle: [1119, 1100, 1099] -Triangle: [1120, 1099, 1112] -Triangle: [1122, 1119, 1121] -Triangle: [1123, 1118, 1122] -Triangle: [1125, 1117, 1124] -Triangle: [1123, 1124, 1117] -Triangle: [1127, 1116, 1125] -Triangle: [1114, 1127, 1128] -Triangle: [1113, 1128, 1129] -Triangle: [283, 1129, 301] -Triangle: [1129, 302, 301] -Triangle: [1128, 1130, 1129] -Triangle: [1127, 1131, 1128] -Triangle: [1132, 1125, 1124] -Triangle: [1133, 1124, 1126] -Triangle: [1134, 1132, 1133] -Triangle: [1135, 1131, 1134] -Triangle: [309, 1130, 1135] -Triangle: [1135, 310, 309] -Triangle: [1134, 1136, 1135] -Triangle: [1133, 1137, 1134] -Triangle: [1126, 1138, 1133] -Triangle: [1123, 1139, 1126] -Triangle: [1122, 1140, 1123] -Triangle: [1136, 317, 310] -Triangle: [1137, 1142, 1136] -Triangle: [1138, 1143, 1137] -Triangle: [1139, 1144, 1138] -Triangle: [1140, 1145, 1139] -Triangle: [1141, 1146, 1140] -Triangle: [1121, 1141, 1122] -Triangle: [1148, 1112, 1101] -Triangle: [1120, 1121, 1119] -Triangle: [1148, 1149, 1120] -Triangle: [1103, 1148, 1101] -Triangle: [1147, 1149, 1151] -Triangle: [1150, 1151, 1149] -Triangle: [1154, 1150, 1103] -Triangle: [1152, 1153, 1237] -Triangle: [1156, 1153, 1154] -Triangle: [1155, 1157, 1158] -Triangle: [1154, 1160, 1161] -Triangle: [1159, 1103, 1104] -Triangle: [1162, 1104, 1105] -Triangle: [1163, 1105, 1106] -Triangle: [1156, 1161, 1164] -Triangle: [1165, 1156, 1164] -Triangle: [1159, 1166, 1160] -Triangle: [1167, 1162, 1163] -Triangle: [1166, 1161, 1160] -Triangle: [1165, 1166, 1167] -Triangle: [1168, 1106, 1107] -Triangle: [1169, 1163, 1168] -Triangle: [1170, 1167, 1169] -Triangle: [1157, 1170, 1171] -Triangle: [1169, 1171, 1170] -Triangle: [1172, 1168, 1107] -Triangle: [1173, 1157, 1171] -Triangle: [1108, 1172, 1107] -Triangle: [1172, 1173, 1171] -Triangle: [1174, 1175, 1172] -Triangle: [1110, 1111, 1177] -Triangle: [1109, 1177, 1178] -Triangle: [1178, 1108, 1109] -Triangle: [1179, 1174, 1178] -Triangle: [1177, 1179, 1178] -Triangle: [1181, 1177, 1111] -Triangle: [1089, 1111, 1088] -Triangle: [1089, 358, 1182] -Triangle: [1181, 1182, 1183] -Triangle: [1180, 1183, 1184] -Triangle: [1184, 1185, 1180] -Triangle: [1186, 1187, 1185] -Triangle: [1188, 1189, 1187] -Triangle: [1191, 1190, 1192] -Triangle: [1192, 1193, 1191] -Triangle: [1194, 1195, 1193] -Triangle: [1196, 1197, 1195] -Triangle: [1198, 379, 1197] -Triangle: [359, 1182, 358] -Triangle: [1200, 1182, 1199] -Triangle: [1184, 1200, 1201] -Triangle: [1186, 1201, 1202] -Triangle: [1188, 1202, 1203] -Triangle: [1190, 1203, 1204] -Triangle: [1192, 1204, 1205] -Triangle: [1194, 1205, 1206] -Triangle: [1196, 1206, 1207] -Triangle: [1198, 1207, 1208] -Triangle: [380, 1208, 391] -Triangle: [1185, 1179, 1180] -Triangle: [1187, 1176, 1185] -Triangle: [1189, 1209, 1187] -Triangle: [1211, 1189, 1191] -Triangle: [1212, 1191, 1193] -Triangle: [1195, 1212, 1193] -Triangle: [1214, 1195, 1197] -Triangle: [379, 1214, 1197] -Triangle: [1175, 1209, 1215] -Triangle: [1216, 1175, 1215] -Triangle: [1210, 1215, 1209] -Triangle: [1218, 1210, 1211] -Triangle: [1219, 1211, 1212] -Triangle: [1213, 1219, 1212] -Triangle: [1221, 1213, 1214] -Triangle: [398, 1221, 1214] -Triangle: [1216, 1217, 1222] -Triangle: [1218, 1222, 1217] -Triangle: [1219, 1223, 1218] -Triangle: [1220, 1224, 1219] -Triangle: [1221, 1225, 1220] -Triangle: [406, 1226, 1221] -Triangle: [1222, 1173, 1216] -Triangle: [1227, 1222, 1223] -Triangle: [1228, 1223, 1224] -Triangle: [1229, 1224, 1225] -Triangle: [1226, 1229, 1225] -Triangle: [412, 1230, 1226] -Triangle: [1231, 417, 418] -Triangle: [1229, 1231, 1232] -Triangle: [1228, 1232, 1233] -Triangle: [1227, 1233, 1235] -Triangle: [1236, 1232, 1234] -Triangle: [1155, 1237, 1156] -Triangle: [1239, 1158, 1227] -Triangle: [1238, 1239, 1240] -Triangle: [1242, 1240, 1241] -Triangle: [1242, 1237, 1238] -Triangle: [1151, 1243, 1244] -Triangle: [1242, 1243, 1152] -Triangle: [1241, 1245, 1242] -Triangle: [1247, 1151, 1244] -Triangle: [1146, 1247, 1248] -Triangle: [1249, 1146, 1248] -Triangle: [1250, 1145, 1249] -Triangle: [1251, 1144, 1250] -Triangle: [1252, 1143, 1251] -Triangle: [441, 1142, 1252] -Triangle: [1255, 1246, 1253] -Triangle: [1256, 1253, 1254] -Triangle: [1234, 1256, 1254] -Triangle: [1231, 1234, 1232] -Triangle: [447, 1231, 418] -Triangle: [448, 1257, 447] -Triangle: [448, 1258, 1256] -Triangle: [1255, 1258, 1259] -Triangle: [1260, 450, 451] -Triangle: [1259, 1260, 1261] -Triangle: [1262, 1255, 1259] -Triangle: [1263, 1245, 1262] -Triangle: [1261, 1262, 1259] -Triangle: [452, 1260, 451] -Triangle: [1261, 1264, 1265] -Triangle: [1263, 1265, 1266] -Triangle: [1266, 1243, 1263] -Triangle: [453, 1264, 452] -Triangle: [1265, 1267, 1268] -Triangle: [1266, 1268, 1269] -Triangle: [1269, 1244, 1266] -Triangle: [1270, 1247, 1269] -Triangle: [1271, 1269, 1268] -Triangle: [1272, 1268, 1267] -Triangle: [454, 1267, 453] -Triangle: [455, 1272, 454] -Triangle: [456, 1273, 455] -Triangle: [457, 1279, 456] -Triangle: [1252, 457, 441] -Triangle: [1249, 1276, 1250] -Triangle: [1277, 1248, 1270] -Triangle: [1278, 1270, 1271] -Triangle: [1273, 1271, 1272] -Triangle: [1280, 1277, 1278] -Triangle: [1274, 1278, 1273] -Triangle: [1275, 1280, 1279] -Triangle: [1251, 1275, 1252] -Triangle: [1281, 1250, 1276] -Triangle: [1276, 1280, 1281] -Triangle: [1246, 1282, 1283] -Triangle: [1240, 1282, 1241] -Triangle: [1239, 1284, 1240] -Triangle: [1236, 1254, 1286] -Triangle: [1253, 1286, 1254] -Triangle: [1283, 1253, 1246] -Triangle: [1235, 1239, 1227] -Triangle: [1282, 1288, 1289] -Triangle: [1283, 1289, 1290] -Triangle: [1287, 1290, 1291] -Triangle: [1292, 1287, 1291] -Triangle: [1293, 1286, 1292] -Triangle: [1294, 1236, 1293] -Triangle: [1295, 1233, 1294] -Triangle: [1296, 1235, 1295] -Triangle: [1288, 1285, 1296] -Triangle: [1296, 1297, 1288] -Triangle: [1299, 1288, 1297] -Triangle: [1290, 1299, 1300] -Triangle: [1291, 1300, 1301] -Triangle: [1292, 1301, 1302] -Triangle: [1293, 1302, 1303] -Triangle: [1304, 1293, 1303] -Triangle: [1305, 1294, 1304] -Triangle: [1298, 1295, 1305] -Triangle: [1299, 1306, 1300] -Triangle: [1297, 1309, 1299] -Triangle: [1298, 1310, 1297] -Triangle: [1312, 1298, 1305] -Triangle: [1313, 1305, 1304] -Triangle: [1314, 1304, 1303] -Triangle: [1315, 1303, 1302] -Triangle: [1316, 1302, 1301] -Triangle: [1306, 1301, 1300] -Triangle: [1307, 1316, 1306] -Triangle: [1315, 1317, 1318] -Triangle: [1314, 1318, 1319] -Triangle: [1313, 1319, 1320] -Triangle: [1312, 1320, 1321] -Triangle: [1322, 1312, 1321] -Triangle: [1323, 1311, 1322] -Triangle: [1324, 1310, 1323] -Triangle: [1307, 1309, 1324] -Triangle: [1325, 1307, 1324] -Triangle: [1323, 1325, 1324] -Triangle: [1322, 1326, 1323] -Triangle: [1328, 1322, 1321] -Triangle: [1329, 1321, 1320] -Triangle: [1330, 1320, 1319] -Triangle: [1331, 1319, 1318] -Triangle: [1332, 1318, 1317] -Triangle: [1308, 1317, 1307] -Triangle: [1331, 1333, 1334] -Triangle: [1330, 1334, 1335] -Triangle: [1336, 1330, 1335] -Triangle: [1328, 1336, 1337] -Triangle: [1327, 1337, 1338] -Triangle: [1339, 1327, 1338] -Triangle: [1340, 1326, 1339] -Triangle: [1308, 1340, 1341] -Triangle: [1333, 1308, 1341] -Triangle: [1342, 1333, 1341] -Triangle: [1343, 1341, 1340] -Triangle: [1343, 1339, 1338] -Triangle: [1344, 1338, 1337] -Triangle: [1342, 1344, 1345] -Triangle: [1345, 1334, 1342] -Triangle: [1336, 1344, 1337] -Triangle: [1336, 1335, 1345] -Triangle: [360, 1199, 359] -Triangle: [361, 1346, 360] -Triangle: [1348, 1199, 1346] -Triangle: [1349, 1200, 1348] -Triangle: [1202, 1349, 1350] -Triangle: [1203, 1350, 1351] -Triangle: [1204, 1351, 1352] -Triangle: [1205, 1352, 1353] -Triangle: [1206, 1353, 1354] -Triangle: [1207, 1354, 1355] -Triangle: [1208, 1355, 1356] -Triangle: [391, 1356, 556] -Triangle: [1357, 1346, 1347] -Triangle: [1349, 1357, 1358] -Triangle: [1350, 1358, 1359] -Triangle: [1351, 1359, 1360] -Triangle: [1352, 1360, 1361] -Triangle: [1362, 1352, 1361] -Triangle: [1363, 1353, 1362] -Triangle: [1355, 1363, 1364] -Triangle: [1356, 1364, 1365] -Triangle: [556, 1365, 566] -Triangle: [1366, 361, 567] -Triangle: [1367, 1347, 1366] -Triangle: [1358, 1367, 1368] -Triangle: [1369, 1358, 1368] -Triangle: [1360, 1369, 1370] -Triangle: [1371, 1360, 1370] -Triangle: [1362, 1371, 1372] -Triangle: [1373, 1362, 1372] -Triangle: [1374, 1363, 1373] -Triangle: [1375, 1364, 1374] -Triangle: [578, 1365, 1375] -Triangle: [1375, 579, 578] -Triangle: [1374, 1376, 1375] -Triangle: [1391, 1371, 1370] -Triangle: [1372, 1378, 1399] -Triangle: [1398, 1399, 1400] -Triangle: [1397, 1400, 1401] -Triangle: [1396, 1401, 1402] -Triangle: [1403, 1396, 1402] -Triangle: [1404, 1395, 1403] -Triangle: [1405, 1394, 1404] -Triangle: [1406, 1393, 1405] -Triangle: [1391, 1392, 1406] -Triangle: [1407, 1378, 1391] -Triangle: [1380, 1407, 1408] -Triangle: [1409, 1380, 1408] -Triangle: [1410, 1381, 1409] -Triangle: [1383, 1410, 1411] -Triangle: [1384, 1411, 1412] -Triangle: [1385, 1412, 1413] -Triangle: [1386, 1413, 1414] -Triangle: [1387, 1414, 1415] -Triangle: [1416, 1387, 1415] -Triangle: [1417, 1388, 1416] -Triangle: [1390, 1417, 1418] -Triangle: [1406, 1407, 1391] -Triangle: [1405, 1419, 1406] -Triangle: [1404, 1420, 1405] -Triangle: [1403, 1421, 1404] -Triangle: [1402, 1422, 1403] -Triangle: [1424, 1402, 1401] -Triangle: [1379, 1399, 1378] -Triangle: [1380, 1425, 1379] -Triangle: [1381, 1426, 1380] -Triangle: [1382, 1427, 1381] -Triangle: [1429, 1382, 1383] -Triangle: [1430, 1383, 1384] -Triangle: [1431, 1384, 1385] -Triangle: [1386, 1431, 1385] -Triangle: [1433, 1386, 1387] -Triangle: [1434, 1387, 1388] -Triangle: [1389, 1434, 1388] -Triangle: [1436, 1389, 1390] -Triangle: [1400, 1425, 1437] -Triangle: [1426, 1437, 1425] -Triangle: [1427, 1438, 1426] -Triangle: [1428, 1439, 1427] -Triangle: [1429, 1440, 1428] -Triangle: [1430, 1441, 1429] -Triangle: [1431, 1442, 1430] -Triangle: [1432, 1443, 1431] -Triangle: [1433, 1444, 1432] -Triangle: [1434, 1445, 1433] -Triangle: [1435, 1446, 1434] -Triangle: [1436, 1447, 1435] -Triangle: [1437, 1401, 1400] -Triangle: [1438, 1424, 1437] -Triangle: [1439, 1448, 1438] -Triangle: [1440, 1449, 1439] -Triangle: [1451, 1440, 1441] -Triangle: [1442, 1451, 1441] -Triangle: [1443, 1452, 1442] -Triangle: [1444, 1453, 1443] -Triangle: [1445, 1454, 1444] -Triangle: [1446, 1455, 1445] -Triangle: [1457, 1446, 1447] -Triangle: [1423, 1448, 1458] -Triangle: [1449, 1458, 1448] -Triangle: [1450, 1459, 1449] -Triangle: [1451, 1460, 1450] -Triangle: [1452, 1461, 1451] -Triangle: [1453, 1462, 1452] -Triangle: [1454, 1463, 1453] -Triangle: [1465, 1454, 1455] -Triangle: [1466, 1455, 1456] -Triangle: [1467, 1456, 1457] -Triangle: [1613, 1457, 1447] -Triangle: [1422, 1458, 1469] -Triangle: [1470, 1458, 1459] -Triangle: [1471, 1459, 1460] -Triangle: [1472, 1460, 1461] -Triangle: [1462, 1472, 1461] -Triangle: [1463, 1473, 1462] -Triangle: [1464, 1474, 1463] -Triangle: [1476, 1464, 1465] -Triangle: [1477, 1465, 1466] -Triangle: [1478, 1466, 1467] -Triangle: [1468, 1478, 1467] -Triangle: [1480, 1422, 1469] -Triangle: [1481, 1469, 1470] -Triangle: [1482, 1470, 1471] -Triangle: [1483, 1471, 1472] -Triangle: [1484, 1472, 1473] -Triangle: [1474, 1484, 1473] -Triangle: [1475, 1485, 1474] -Triangle: [1487, 1475, 1476] -Triangle: [1488, 1476, 1477] -Triangle: [1478, 1488, 1477] -Triangle: [1479, 1489, 1478] -Triangle: [1491, 1421, 1480] -Triangle: [1492, 1420, 1491] -Triangle: [1408, 1419, 1492] -Triangle: [1493, 1408, 1492] -Triangle: [1491, 1493, 1492] -Triangle: [1494, 1480, 1481] -Triangle: [1495, 1409, 1493] -Triangle: [1494, 1495, 1493] -Triangle: [1496, 1481, 1482] -Triangle: [1497, 1410, 1495] -Triangle: [1496, 1497, 1495] -Triangle: [1498, 1482, 1483] -Triangle: [1499, 1411, 1497] -Triangle: [1500, 1497, 1498] -Triangle: [1500, 1483, 1484] -Triangle: [1413, 1499, 1501] -Triangle: [1500, 1501, 1499] -Triangle: [1502, 1484, 1485] -Triangle: [1414, 1501, 1503] -Triangle: [1504, 1501, 1502] -Triangle: [1504, 1485, 1486] -Triangle: [1415, 1503, 1505] -Triangle: [1504, 1505, 1503] -Triangle: [1506, 1486, 1487] -Triangle: [1507, 1487, 1488] -Triangle: [1508, 1506, 1507] -Triangle: [1508, 1415, 1505] -Triangle: [1417, 1508, 1509] -Triangle: [1507, 1509, 1508] -Triangle: [1510, 1488, 1489] -Triangle: [1511, 1489, 1490] -Triangle: [1512, 1510, 1511] -Triangle: [1418, 1509, 1512] -Triangle: [1368, 1370, 1369] -Triangle: [1513, 1368, 1367] -Triangle: [1366, 1513, 1367] -Triangle: [719, 1366, 567] -Triangle: [1393, 1513, 1515] -Triangle: [1516, 1513, 1514] -Triangle: [722, 1514, 719] -Triangle: [1515, 1517, 1393] -Triangle: [1516, 1518, 1515] -Triangle: [722, 1519, 1516] -Triangle: [1520, 726, 727] -Triangle: [1521, 1519, 1520] -Triangle: [1517, 1521, 1522] -Triangle: [1394, 1517, 1523] -Triangle: [1395, 1523, 1524] -Triangle: [1525, 1395, 1524] -Triangle: [1522, 1523, 1517] -Triangle: [1524, 1526, 1527] -Triangle: [1528, 1524, 1527] -Triangle: [1529, 727, 737] -Triangle: [1530, 1520, 1529] -Triangle: [1522, 1530, 1531] -Triangle: [1526, 1531, 1532] -Triangle: [1527, 1532, 1533] -Triangle: [1534, 1527, 1533] -Triangle: [1529, 744, 1535] -Triangle: [1530, 1535, 1536] -Triangle: [1531, 1536, 1537] -Triangle: [1532, 1537, 1538] -Triangle: [1533, 1538, 1539] -Triangle: [1540, 1533, 1539] -Triangle: [1541, 1374, 1373] -Triangle: [1398, 1373, 1372] -Triangle: [1542, 1398, 1397] -Triangle: [1396, 1543, 1397] -Triangle: [1542, 1543, 1544] -Triangle: [1544, 1525, 1528] -Triangle: [1545, 1528, 1534] -Triangle: [1546, 1534, 1540] -Triangle: [1535, 757, 1547] -Triangle: [1536, 1547, 1548] -Triangle: [1537, 1548, 1549] -Triangle: [1538, 1549, 1550] -Triangle: [1539, 1550, 1551] -Triangle: [1552, 1539, 1551] -Triangle: [1553, 1540, 1552] -Triangle: [1554, 1541, 1542] -Triangle: [1555, 1377, 1554] -Triangle: [579, 1555, 767] -Triangle: [1556, 1542, 1544] -Triangle: [1556, 1555, 1554] -Triangle: [1556, 769, 767] -Triangle: [1557, 1544, 1545] -Triangle: [1558, 1545, 1546] -Triangle: [769, 1558, 772] -Triangle: [1559, 1546, 1553] -Triangle: [774, 1558, 1559] -Triangle: [1418, 1560, 1390] -Triangle: [1561, 1564, 1565] -Triangle: [1562, 1565, 1566] -Triangle: [1567, 1562, 1566] -Triangle: [1436, 1560, 1568] -Triangle: [1569, 1560, 1561] -Triangle: [1570, 1561, 1562] -Triangle: [1571, 1562, 1563] -Triangle: [1573, 1563, 1567] -Triangle: [1571, 1572, 1574] -Triangle: [1566, 1573, 1567] -Triangle: [1576, 1566, 1565] -Triangle: [1577, 1565, 1564] -Triangle: [1512, 1564, 1418] -Triangle: [1577, 1578, 1579] -Triangle: [1511, 1578, 1512] -Triangle: [1579, 1580, 1581] -Triangle: [1490, 1580, 1511] -Triangle: [1581, 1582, 1583] -Triangle: [1579, 1586, 1577] -Triangle: [1589, 1579, 1581] -Triangle: [1583, 1589, 1581] -Triangle: [1585, 1590, 1583] -Triangle: [1592, 1585, 1610] -Triangle: [1586, 1610, 1577] -Triangle: [1593, 1586, 1588] -Triangle: [1594, 1588, 1589] -Triangle: [1590, 1594, 1589] -Triangle: [1591, 1595, 1590] -Triangle: [1597, 1591, 1592] -Triangle: [1587, 1592, 1586] -Triangle: [1600, 1594, 1599] -Triangle: [1600, 1587, 1593] -Triangle: [1601, 1597, 1587] -Triangle: [1598, 1600, 1599] -Triangle: [1602, 1594, 1595] -Triangle: [1603, 1595, 1596] -Triangle: [1603, 1597, 1598] -Triangle: [1598, 1602, 1603] -Triangle: [1613, 1568, 1604] -Triangle: [1605, 1568, 1569] -Triangle: [1570, 1605, 1569] -Triangle: [1606, 1571, 1574] -Triangle: [1605, 1607, 1604] -Triangle: [1606, 1608, 1605] -Triangle: [1609, 1574, 1572] -Triangle: [1609, 1573, 1575] -Triangle: [1576, 1609, 1575] -Triangle: [1584, 1608, 1576] -Triangle: [1577, 1584, 1576] -Triangle: [1611, 1610, 1585] -Triangle: [1611, 1583, 1582] -Triangle: [1607, 1611, 1612] -Triangle: [1468, 1613, 1604] -Triangle: [1604, 1612, 1468] -Triangle: [1479, 1612, 1611] -Triangle: [1611, 1490, 1479] -Triangle: [1547, 829, 1614] -Triangle: [1548, 1614, 1615] -Triangle: [1549, 1615, 1616] -Triangle: [1617, 1549, 1616] -Triangle: [1551, 1617, 1618] -Triangle: [1619, 774, 1559] -Triangle: [1620, 1559, 1553] -Triangle: [1621, 1553, 1552] -Triangle: [1618, 1552, 1551] -Triangle: [1622, 843, 1619] -Triangle: [1620, 1622, 1619] -Triangle: [1621, 1623, 1620] -Triangle: [1625, 1621, 1618] -Triangle: [1626, 1618, 1617] -Triangle: [1616, 1626, 1617] -Triangle: [1628, 1616, 1615] -Triangle: [1629, 1615, 1614] -Triangle: [835, 1614, 829] -Triangle: [836, 1629, 835] -Triangle: [1628, 1630, 1631] -Triangle: [1627, 1631, 1632] -Triangle: [1633, 1627, 1632] -Triangle: [1625, 1633, 1634] -Triangle: [1624, 1634, 1635] -Triangle: [1636, 1624, 1635] -Triangle: [1622, 1636, 1637] -Triangle: [1637, 842, 1622] -Triangle: [1638, 841, 1637] -Triangle: [1636, 1638, 1637] -Triangle: [1635, 1639, 1636] -Triangle: [1634, 1640, 1635] -Triangle: [1633, 1641, 1634] -Triangle: [1632, 1642, 1633] -Triangle: [1644, 1632, 1631] -Triangle: [1645, 1631, 1630] -Triangle: [837, 1630, 836] -Triangle: [1646, 837, 838] -Triangle: [1647, 838, 839] -Triangle: [840, 1647, 839] -Triangle: [1639, 1648, 1638] -Triangle: [1650, 1639, 1640] -Triangle: [1641, 1650, 1640] -Triangle: [1642, 1651, 1641] -Triangle: [1653, 1642, 1643] -Triangle: [1654, 1643, 1644] -Triangle: [1655, 1644, 1645] -Triangle: [1646, 1655, 1645] -Triangle: [1647, 1656, 1646] -Triangle: [1648, 1647, 1638] -Triangle: [1659, 1653, 1654] -Triangle: [1660, 1654, 1655] -Triangle: [1656, 1660, 1655] -Triangle: [1657, 1661, 1656] -Triangle: [1663, 1657, 1648] -Triangle: [1664, 1648, 1649] -Triangle: [1665, 1649, 1650] -Triangle: [1651, 1665, 1650] -Triangle: [1652, 1666, 1651] -Triangle: [1658, 1652, 1653] -Triangle: [1666, 1668, 1665] -Triangle: [1667, 1671, 1666] -Triangle: [1673, 1667, 1658] -Triangle: [1674, 1658, 1659] -Triangle: [1675, 1659, 1660] -Triangle: [1661, 1675, 1660] -Triangle: [1662, 1676, 1661] -Triangle: [1678, 1662, 1663] -Triangle: [1679, 1663, 1664] -Triangle: [1668, 1664, 1665] -Triangle: [1669, 1671, 1680] -Triangle: [1672, 1680, 1671] -Triangle: [1682, 1672, 1673] -Triangle: [1683, 1673, 1674] -Triangle: [1675, 1683, 1674] -Triangle: [1676, 1684, 1675] -Triangle: [1677, 1685, 1676] -Triangle: [1687, 1677, 1678] -Triangle: [1688, 1678, 1679] -Triangle: [1669, 1679, 1668] -Triangle: [1689, 1669, 1680] -Triangle: [1690, 1680, 1681] -Triangle: [1691, 1681, 1682] -Triangle: [1692, 1682, 1683] -Triangle: [1684, 1692, 1683] -Triangle: [1685, 1693, 1684] -Triangle: [1686, 1694, 1685] -Triangle: [1696, 1686, 1687] -Triangle: [1697, 1687, 1688] -Triangle: [1670, 1688, 1669] -Triangle: [1689, 1698, 1670] -Triangle: [1690, 1699, 1689] -Triangle: [1701, 1690, 1691] -Triangle: [1702, 1691, 1692] -Triangle: [1703, 1692, 1693] -Triangle: [1694, 1703, 1693] -Triangle: [1695, 1704, 1694] -Triangle: [1706, 1695, 1696] -Triangle: [1707, 1696, 1697] -Triangle: [1698, 1697, 1670] -Triangle: [1698, 1709, 1707] -Triangle: [1699, 1708, 1698] -Triangle: [1700, 1710, 1699] -Triangle: [1701, 1711, 1700] -Triangle: [1713, 1701, 1702] -Triangle: [1714, 1702, 1703] -Triangle: [1715, 1703, 1704] -Triangle: [1716, 1704, 1705] -Triangle: [1717, 1705, 1706] -Triangle: [1709, 1706, 1707] -Triangle: [1708, 1718, 1709] -Triangle: [1710, 1719, 1708] -Triangle: [1717, 1718, 1721] -Triangle: [1716, 1721, 1722] -Triangle: [1723, 1716, 1722] -Triangle: [1724, 1715, 1723] -Triangle: [1725, 1714, 1724] -Triangle: [1712, 1725, 1726] -Triangle: [1727, 1712, 1726] -Triangle: [1720, 1711, 1727] -Triangle: [1729, 1727, 1726] -Triangle: [1730, 1726, 1725] -Triangle: [1724, 1730, 1725] -Triangle: [1732, 1724, 1723] -Triangle: [1722, 1732, 1723] -Triangle: [1734, 1722, 1721] -Triangle: [1735, 1721, 1718] -Triangle: [1719, 1735, 1718] -Triangle: [1720, 1736, 1719] -Triangle: [1737, 1727, 1728] -Triangle: [1740, 1730, 1738] -Triangle: [1728, 1740, 1741] -Triangle: [1742, 1728, 1741] -Triangle: [1743, 1737, 1742] -Triangle: [1735, 1743, 1744] -Triangle: [1745, 1735, 1744] -Triangle: [1733, 1745, 1746] -Triangle: [1732, 1746, 1747] -Triangle: [1731, 1747, 1748] -Triangle: [1748, 1730, 1731] -Triangle: [1739, 1748, 1751] -Triangle: [1752, 1748, 1747] -Triangle: [1753, 1747, 1746] -Triangle: [1754, 1746, 1745] -Triangle: [1744, 1754, 1745] -Triangle: [1756, 1744, 1743] -Triangle: [1757, 1743, 1742] -Triangle: [1758, 1742, 1741] -Triangle: [1740, 1758, 1741] -Triangle: [1759, 1738, 1739] -Triangle: [1760, 1739, 1749] -Triangle: [1761, 1749, 1750] -Triangle: [1762, 1739, 1751] -Triangle: [1763, 1749, 1762] -Triangle: [1765, 1763, 1762] -Triangle: [1766, 1762, 1751] -Triangle: [1767, 1751, 1752] -Triangle: [1753, 1767, 1752] -Triangle: [1769, 1753, 1754] -Triangle: [1755, 1769, 1754] -Triangle: [1771, 1755, 1756] -Triangle: [1772, 1756, 1757] -Triangle: [1773, 1757, 1758] -Triangle: [1759, 1773, 1758] -Triangle: [1760, 1774, 1759] -Triangle: [1761, 1775, 1760] -Triangle: [1750, 1776, 1761] -Triangle: [1777, 1763, 1764] -Triangle: [1779, 1770, 1771] -Triangle: [1772, 1779, 1771] -Triangle: [1773, 1780, 1772] -Triangle: [1779, 1781, 1782] -Triangle: [1774, 1781, 1773] -Triangle: [1775, 1783, 1774] -Triangle: [1782, 1783, 1785] -Triangle: [1784, 1785, 1783] -Triangle: [1778, 1782, 1787] -Triangle: [1778, 1769, 1770] -Triangle: [1787, 1768, 1778] -Triangle: [1785, 1787, 1782] -Triangle: [1788, 1767, 1787] -Triangle: [1786, 1788, 1785] -Triangle: [1789, 1766, 1788] -Triangle: [1776, 1784, 1775] -Triangle: [1777, 1790, 1776] -Triangle: [1792, 1777, 1764] -Triangle: [1786, 1790, 1793] -Triangle: [1793, 1791, 1792] -Triangle: [1789, 1793, 1792] -Triangle: [1765, 1792, 1764] -Triangle: [1806, 1795, 1807] -Triangle: [1807, 1796, 1808] -Triangle: [1808, 1797, 1809] -Triangle: [1810, 1797, 1798] -Triangle: [1811, 1798, 1799] -Triangle: [1812, 1799, 1800] -Triangle: [1812, 1801, 1813] -Triangle: [1814, 1801, 1802] -Triangle: [1814, 1803, 1815] -Triangle: [1816, 1803, 1804] -Triangle: [1816, 1805, 1817] -Triangle: [1817, 1819, 1816] -Triangle: [1815, 1819, 1820] -Triangle: [1812, 1832, 1811] -Triangle: [1821, 1813, 1840] -Triangle: [1840, 1839, 1841] -Triangle: [1841, 1838, 1842] -Triangle: [1843, 2044, 1837] -Triangle: [1844, 1837, 1836] -Triangle: [1845, 1836, 1835] -Triangle: [1845, 1834, 1846] -Triangle: [1846, 1833, 1847] -Triangle: [1832, 1833, 1811] -Triangle: [1848, 1821, 1822] -Triangle: [1849, 1822, 1823] -Triangle: [1850, 1823, 1824] -Triangle: [1851, 1824, 1825] -Triangle: [1851, 1826, 1852] -Triangle: [1852, 1827, 1853] -Triangle: [1853, 1828, 1854] -Triangle: [1854, 1829, 1855] -Triangle: [1855, 1830, 1856] -Triangle: [1856, 1831, 1857] -Triangle: [1847, 1848, 1858] -Triangle: [1847, 1859, 1846] -Triangle: [1845, 1859, 1860] -Triangle: [1844, 1860, 1861] -Triangle: [1844, 1862, 1843] -Triangle: [2039, 1863, 1842] -Triangle: [1822, 1840, 1864] -Triangle: [1823, 1864, 1865] -Triangle: [1824, 1865, 1866] -Triangle: [1825, 1866, 1867] -Triangle: [1826, 1867, 1868] -Triangle: [1826, 1869, 1827] -Triangle: [1827, 1870, 1828] -Triangle: [1829, 1870, 1871] -Triangle: [1830, 1871, 1872] -Triangle: [1830, 1873, 1831] -Triangle: [1864, 1841, 1874] -Triangle: [1865, 1874, 1875] -Triangle: [1866, 1875, 1876] -Triangle: [1867, 1876, 1877] -Triangle: [1868, 1877, 1878] -Triangle: [1869, 1878, 1879] -Triangle: [1870, 1879, 1880] -Triangle: [1871, 1880, 1881] -Triangle: [1872, 1881, 1882] -Triangle: [1873, 1882, 1883] -Triangle: [1874, 1842, 1863] -Triangle: [1875, 1863, 1884] -Triangle: [1876, 1884, 1885] -Triangle: [1877, 1885, 1886] -Triangle: [1878, 1886, 1887] -Triangle: [1879, 1887, 1888] -Triangle: [1880, 1888, 1889] -Triangle: [1881, 1889, 1890] -Triangle: [1882, 1890, 1891] -Triangle: [1883, 1891, 1892] -Triangle: [2037, 1862, 1893] -Triangle: [1885, 2037, 2040] -Triangle: [1885, 2045, 1886] -Triangle: [1886, 2046, 1887] -Triangle: [1888, 2046, 2050] -Triangle: [1889, 2050, 2053] -Triangle: [1890, 2053, 2047] -Triangle: [1891, 2047, 2038] -Triangle: [1891, 2041, 1892] -Triangle: [1902, 1862, 1861] -Triangle: [1893, 1903, 1894] -Triangle: [1894, 1904, 1895] -Triangle: [1895, 1905, 1896] -Triangle: [1896, 1906, 1897] -Triangle: [1898, 1906, 1907] -Triangle: [1899, 1907, 1908] -Triangle: [1899, 1909, 1900] -Triangle: [1901, 1909, 1910] -Triangle: [1911, 1861, 1860] -Triangle: [1902, 1912, 1903] -Triangle: [1903, 1913, 1904] -Triangle: [1904, 1914, 1905] -Triangle: [1905, 1915, 1906] -Triangle: [1906, 1916, 1907] -Triangle: [1908, 1916, 1917] -Triangle: [1908, 1918, 1909] -Triangle: [1910, 1918, 1919] -Triangle: [1920, 1860, 1859] -Triangle: [1921, 1859, 1858] -Triangle: [1921, 1848, 1849] -Triangle: [1922, 1849, 1850] -Triangle: [1920, 1922, 1923] -Triangle: [1911, 1923, 1912] -Triangle: [1924, 1850, 1851] -Triangle: [1923, 1924, 1925] -Triangle: [1912, 1925, 1913] -Triangle: [1926, 1851, 1852] -Triangle: [1925, 1926, 1927] -Triangle: [1913, 1927, 1914] -Triangle: [1926, 1853, 1928] -Triangle: [1927, 1928, 1929] -Triangle: [1914, 1929, 1915] -Triangle: [1928, 1854, 1930] -Triangle: [1929, 1930, 1931] -Triangle: [1915, 1931, 1916] -Triangle: [1930, 1855, 1932] -Triangle: [1931, 1932, 1933] -Triangle: [1917, 1931, 1933] -Triangle: [1932, 1856, 1934] -Triangle: [1933, 1934, 1935] -Triangle: [1918, 1933, 1935] -Triangle: [1919, 1935, 1936] -Triangle: [1937, 1935, 1934] -Triangle: [1934, 1857, 1937] -Triangle: [1809, 1811, 1833] -Triangle: [1808, 1833, 1938] -Triangle: [1808, 1939, 1807] -Triangle: [1806, 1939, 1940] -Triangle: [1941, 1833, 1834] -Triangle: [1938, 1942, 1939] -Triangle: [1940, 1942, 1943] -Triangle: [1834, 1945, 1941] -Triangle: [1941, 1946, 1942] -Triangle: [1943, 1946, 1947] -Triangle: [1948, 1946, 1949] -Triangle: [1950, 1946, 1945] -Triangle: [1950, 1944, 1951] -Triangle: [1944, 1835, 1952] -Triangle: [1952, 1836, 1953] -Triangle: [1953, 1837, 1954] -Triangle: [1951, 1952, 1955] -Triangle: [1955, 1953, 1956] -Triangle: [1956, 1954, 1957] -Triangle: [1958, 1949, 1959] -Triangle: [1960, 1949, 1950] -Triangle: [1960, 1951, 1961] -Triangle: [1961, 1955, 1962] -Triangle: [1962, 1956, 1963] -Triangle: [1963, 1957, 1964] -Triangle: [1966, 1958, 1959] -Triangle: [1967, 1959, 1960] -Triangle: [1967, 1961, 1968] -Triangle: [1968, 1962, 1969] -Triangle: [1969, 1963, 1970] -Triangle: [1970, 1964, 1971] -Triangle: [1815, 1972, 1814] -Triangle: [1839, 1814, 1972] -Triangle: [1839, 1973, 1838] -Triangle: [1974, 2044, 1838] -Triangle: [1974, 1973, 1975] -Triangle: [1954, 2048, 1957] -Triangle: [1964, 2048, 2049] -Triangle: [1964, 2052, 1971] -Triangle: [1978, 1966, 1979] -Triangle: [1980, 1966, 1967] -Triangle: [1980, 1968, 1981] -Triangle: [1981, 1969, 1982] -Triangle: [1983, 1969, 1970] -Triangle: [1984, 1970, 1971] -Triangle: [1985, 2052, 1977] -Triangle: [1986, 1972, 1820] -Triangle: [1987, 1820, 1819] -Triangle: [1987, 1818, 1988] -Triangle: [1973, 1989, 1975] -Triangle: [1989, 1987, 1988] -Triangle: [1989, 1990, 1991] -Triangle: [1975, 1991, 1976] -Triangle: [1976, 1992, 1977] -Triangle: [1993, 1991, 1990] -Triangle: [1977, 1994, 1985] -Triangle: [1995, 1992, 1993] -Triangle: [1996, 1979, 1997] -Triangle: [1997, 1980, 1998] -Triangle: [1999, 1980, 1981] -Triangle: [1999, 1982, 2000] -Triangle: [2000, 1983, 2001] -Triangle: [1995, 2009, 1994] -Triangle: [1985, 2009, 2010] -Triangle: [2055, 2011, 1984] -Triangle: [2001, 1984, 2011] -Triangle: [2012, 2008, 2007] -Triangle: [2009, 2013, 2010] -Triangle: [2011, 2036, 2014] -Triangle: [2001, 2014, 2015] -Triangle: [2001, 2016, 2000] -Triangle: [1999, 2016, 2017] -Triangle: [1998, 2017, 2018] -Triangle: [1997, 2018, 2019] -Triangle: [2002, 1997, 2019] -Triangle: [2002, 2020, 2003] -Triangle: [2021, 2019, 2018] -Triangle: [2022, 2018, 2017] -Triangle: [2022, 2016, 2023] -Triangle: [2023, 2015, 2024] -Triangle: [2024, 2014, 2025] -Triangle: [2026, 2036, 2013] -Triangle: [2027, 2013, 2012] -Triangle: [2012, 2006, 2027] -Triangle: [2027, 2005, 2028] -Triangle: [2026, 2028, 2029] -Triangle: [2025, 2051, 2030] -Triangle: [2024, 2030, 2031] -Triangle: [2023, 2031, 2032] -Triangle: [2022, 2032, 2033] -Triangle: [2021, 2033, 2034] -Triangle: [2020, 2034, 2035] -Triangle: [2003, 2035, 2004] -Triangle: [2047, 1900, 2038] -Triangle: [2043, 1843, 1862] -Triangle: [2047, 1898, 1899] -Triangle: [2056, 2014, 2036] -Triangle: [2052, 1984, 1971] -Triangle: [2038, 1901, 2041] -Triangle: [2054, 1985, 2010] -Triangle: [2056, 2029, 2051] -Triangle: [2054, 2013, 2036] -Triangle: [2053, 1897, 1898] -Triangle: [2042, 1837, 2044] -Triangle: [2042, 1975, 2048] -Triangle: [2048, 1976, 2049] -Triangle: [2043, 1884, 1863] -Triangle: [2049, 1977, 2052] -Triangle: [2037, 1894, 2040] -Triangle: [2040, 1895, 2045] -Triangle: [2044, 1842, 1838] -Triangle: [2045, 1896, 2046] -Triangle: [2046, 1897, 2050] -Triangle: [2057, 1806, 2067] -Triangle: [2058, 2067, 2068] -Triangle: [2059, 2068, 2069] -Triangle: [2070, 2059, 2069] -Triangle: [2071, 2060, 2070] -Triangle: [2072, 2061, 2071] -Triangle: [2063, 2072, 2073] -Triangle: [2074, 2063, 2073] -Triangle: [2065, 2074, 2075] -Triangle: [2076, 2065, 2075] -Triangle: [1805, 2076, 1817] -Triangle: [2077, 1817, 2076] -Triangle: [2075, 2077, 2076] -Triangle: [2090, 2072, 2071] -Triangle: [2073, 2079, 2098] -Triangle: [2097, 2098, 2099] -Triangle: [2096, 2099, 2100] -Triangle: [2101, 2283, 2278] -Triangle: [2102, 2095, 2101] -Triangle: [2103, 2094, 2102] -Triangle: [2092, 2103, 2104] -Triangle: [2091, 2104, 2105] -Triangle: [2090, 2091, 2105] -Triangle: [2106, 2079, 2090] -Triangle: [2107, 2080, 2106] -Triangle: [2108, 2081, 2107] -Triangle: [2109, 2082, 2108] -Triangle: [2084, 2109, 2110] -Triangle: [2085, 2110, 2111] -Triangle: [2086, 2111, 2112] -Triangle: [2087, 2112, 2113] -Triangle: [2088, 2113, 2114] -Triangle: [2089, 2114, 2115] -Triangle: [2105, 2106, 2090] -Triangle: [2117, 2105, 2104] -Triangle: [2103, 2117, 2104] -Triangle: [2102, 2118, 2103] -Triangle: [2120, 2102, 2101] -Triangle: [2121, 2278, 2100] -Triangle: [2080, 2098, 2079] -Triangle: [2081, 2122, 2080] -Triangle: [2082, 2123, 2081] -Triangle: [2083, 2124, 2082] -Triangle: [2084, 2125, 2083] -Triangle: [2127, 2084, 2085] -Triangle: [2128, 2085, 2086] -Triangle: [2087, 2128, 2086] -Triangle: [2088, 2129, 2087] -Triangle: [2131, 2088, 2089] -Triangle: [2099, 2122, 2132] -Triangle: [2123, 2132, 2122] -Triangle: [2124, 2133, 2123] -Triangle: [2125, 2134, 2124] -Triangle: [2126, 2135, 2125] -Triangle: [2127, 2136, 2126] -Triangle: [2128, 2137, 2127] -Triangle: [2129, 2138, 2128] -Triangle: [2130, 2139, 2129] -Triangle: [2131, 2140, 2130] -Triangle: [2132, 2100, 2099] -Triangle: [2133, 2121, 2132] -Triangle: [2134, 2142, 2133] -Triangle: [2135, 2143, 2134] -Triangle: [2136, 2144, 2135] -Triangle: [2137, 2145, 2136] -Triangle: [2138, 2146, 2137] -Triangle: [2139, 2147, 2138] -Triangle: [2140, 2148, 2139] -Triangle: [2141, 2149, 2140] -Triangle: [2120, 2276, 2151] -Triangle: [2143, 2276, 2142] -Triangle: [2284, 2143, 2144] -Triangle: [2285, 2144, 2145] -Triangle: [2146, 2285, 2145] -Triangle: [2147, 2289, 2146] -Triangle: [2148, 2292, 2147] -Triangle: [2149, 2286, 2148] -Triangle: [2280, 2149, 2150] -Triangle: [2160, 2120, 2151] -Triangle: [2161, 2151, 2152] -Triangle: [2162, 2152, 2153] -Triangle: [2163, 2153, 2154] -Triangle: [2164, 2154, 2155] -Triangle: [2156, 2164, 2155] -Triangle: [2157, 2165, 2156] -Triangle: [2167, 2157, 2158] -Triangle: [2159, 2167, 2158] -Triangle: [2169, 2119, 2160] -Triangle: [2170, 2160, 2161] -Triangle: [2171, 2161, 2162] -Triangle: [2172, 2162, 2163] -Triangle: [2173, 2163, 2164] -Triangle: [2174, 2164, 2165] -Triangle: [2166, 2174, 2165] -Triangle: [2176, 2166, 2167] -Triangle: [2168, 2176, 2167] -Triangle: [2178, 2118, 2169] -Triangle: [2179, 2117, 2178] -Triangle: [2179, 2106, 2116] -Triangle: [2180, 2107, 2179] -Triangle: [2178, 2180, 2179] -Triangle: [2181, 2169, 2170] -Triangle: [2182, 2108, 2180] -Triangle: [2181, 2182, 2180] -Triangle: [2183, 2170, 2171] -Triangle: [2184, 2109, 2182] -Triangle: [2183, 2184, 2182] -Triangle: [2185, 2171, 2172] -Triangle: [2111, 2184, 2186] -Triangle: [2185, 2186, 2184] -Triangle: [2187, 2172, 2173] -Triangle: [2112, 2186, 2188] -Triangle: [2187, 2188, 2186] -Triangle: [2189, 2173, 2174] -Triangle: [2113, 2188, 2190] -Triangle: [2189, 2190, 2188] -Triangle: [2175, 2189, 2174] -Triangle: [2114, 2190, 2192] -Triangle: [2191, 2192, 2190] -Triangle: [2176, 2191, 2175] -Triangle: [2177, 2193, 2176] -Triangle: [2195, 2193, 2194] -Triangle: [2115, 2192, 2195] -Triangle: [2069, 2071, 2070] -Triangle: [2068, 2091, 2069] -Triangle: [2197, 2068, 2067] -Triangle: [1806, 2197, 2067] -Triangle: [2198, 2091, 2196] -Triangle: [2199, 2196, 2197] -Triangle: [1940, 2199, 2197] -Triangle: [2201, 2092, 2198] -Triangle: [2202, 2198, 2199] -Triangle: [1943, 2202, 2199] -Triangle: [2202, 1948, 2203] -Triangle: [2204, 2202, 2203] -Triangle: [2200, 2204, 2205] -Triangle: [2093, 2200, 2206] -Triangle: [2094, 2206, 2207] -Triangle: [2095, 2207, 2208] -Triangle: [2205, 2206, 2200] -Triangle: [2207, 2209, 2210] -Triangle: [2208, 2210, 2211] -Triangle: [2203, 1958, 2212] -Triangle: [2213, 2203, 2212] -Triangle: [2205, 2213, 2214] -Triangle: [2209, 2214, 2215] -Triangle: [2210, 2215, 2216] -Triangle: [2211, 2216, 2217] -Triangle: [2218, 1958, 1965] -Triangle: [2219, 2212, 2218] -Triangle: [2214, 2219, 2220] -Triangle: [2215, 2220, 2221] -Triangle: [2216, 2221, 2222] -Triangle: [2217, 2222, 2223] -Triangle: [2224, 2075, 2074] -Triangle: [2097, 2074, 2073] -Triangle: [2225, 2097, 2096] -Triangle: [2283, 2226, 2096] -Triangle: [2225, 2226, 2227] -Triangle: [2287, 2208, 2211] -Triangle: [2217, 2287, 2211] -Triangle: [2291, 2217, 2223] -Triangle: [2218, 1978, 2230] -Triangle: [2231, 2218, 2230] -Triangle: [2220, 2231, 2232] -Triangle: [2221, 2232, 2233] -Triangle: [2234, 2221, 2233] -Triangle: [2235, 2222, 2234] -Triangle: [2236, 2291, 2294] -Triangle: [2237, 2224, 2225] -Triangle: [2238, 2078, 2237] -Triangle: [1818, 2238, 1988] -Triangle: [2239, 2225, 2227] -Triangle: [2239, 2238, 2237] -Triangle: [2239, 1990, 1988] -Triangle: [2240, 2227, 2228] -Triangle: [2241, 2228, 2229] -Triangle: [1993, 2240, 2241] -Triangle: [2242, 2229, 2236] -Triangle: [1995, 2241, 2242] -Triangle: [2230, 1996, 2243] -Triangle: [2231, 2243, 2244] -Triangle: [2245, 2231, 2244] -Triangle: [2233, 2245, 2246] -Triangle: [2234, 2246, 2247] -Triangle: [2248, 1995, 2242] -Triangle: [2236, 2248, 2242] -Triangle: [2250, 2294, 2235] -Triangle: [2247, 2235, 2234] -Triangle: [2251, 2008, 2248] -Triangle: [2252, 2248, 2249] -Triangle: [2250, 2275, 2293] -Triangle: [2247, 2253, 2250] -Triangle: [2255, 2247, 2246] -Triangle: [2245, 2255, 2246] -Triangle: [2244, 2256, 2245] -Triangle: [2243, 2257, 2244] -Triangle: [2002, 2243, 1996] -Triangle: [2259, 2002, 2003] -Triangle: [2260, 2258, 2259] -Triangle: [2261, 2257, 2260] -Triangle: [2255, 2261, 2262] -Triangle: [2254, 2262, 2263] -Triangle: [2253, 2263, 2264] -Triangle: [2265, 2275, 2295] -Triangle: [2266, 2252, 2265] -Triangle: [2006, 2251, 2266] -Triangle: [2005, 2266, 2267] -Triangle: [2265, 2267, 2266] -Triangle: [2264, 2290, 2295] -Triangle: [2263, 2269, 2264] -Triangle: [2262, 2270, 2263] -Triangle: [2261, 2271, 2262] -Triangle: [2260, 2272, 2261] -Triangle: [2259, 2273, 2260] -Triangle: [2274, 2003, 2004] -Triangle: [2158, 2286, 2277] -Triangle: [2282, 2101, 2278] -Triangle: [2286, 2156, 2292] -Triangle: [2253, 2295, 2275] -Triangle: [2291, 2235, 2294] -Triangle: [2159, 2277, 2280] -Triangle: [2293, 2236, 2294] -Triangle: [2268, 2295, 2290] -Triangle: [2252, 2293, 2275] -Triangle: [2292, 2155, 2289] -Triangle: [2095, 2281, 2283] -Triangle: [2227, 2281, 2287] -Triangle: [2228, 2287, 2288] -Triangle: [2282, 2142, 2276] -Triangle: [2229, 2288, 2291] -Triangle: [2152, 2276, 2279] -Triangle: [2153, 2279, 2284] -Triangle: [2283, 2100, 2278] -Triangle: [2154, 2284, 2285] -Triangle: [2155, 2285, 2289] -Triangle: [15, 14, 13] -Triangle: [16, 15, 18] -Triangle: [17, 16, 19] -Triangle: [5, 17, 20] -Triangle: [4, 5, 21] -Triangle: [3, 4, 22] -Triangle: [3, 23, 24] -Triangle: [2, 24, 25] -Triangle: [6, 0, 1] -Triangle: [7, 6, 25] -Triangle: [26, 25, 24] -Triangle: [28, 27, 24] -Triangle: [29, 28, 23] -Triangle: [30, 29, 22] -Triangle: [30, 21, 20] -Triangle: [32, 31, 20] -Triangle: [32, 19, 18] -Triangle: [33, 18, 13] -Triangle: [34, 33, 12] -Triangle: [33, 34, 35] -Triangle: [31, 32, 35] -Triangle: [31, 36, 37] -Triangle: [29, 30, 37] -Triangle: [28, 29, 38] -Triangle: [27, 28, 39] -Triangle: [26, 27, 40] -Triangle: [8, 7, 26] -Triangle: [8, 41, 42] -Triangle: [9, 42, 43] -Triangle: [43, 34, 11] -Triangle: [34, 44, 45] -Triangle: [35, 45, 46] -Triangle: [37, 36, 46] -Triangle: [38, 37, 47] -Triangle: [38, 48, 49] -Triangle: [39, 49, 50] -Triangle: [40, 50, 51] -Triangle: [42, 41, 51] -Triangle: [43, 42, 52] -Triangle: [44, 34, 43] -Triangle: [49, 54, 55] -Triangle: [50, 55, 56] -Triangle: [51, 56, 57] -Triangle: [52, 57, 58] -Triangle: [53, 58, 59] -Triangle: [44, 59, 60] -Triangle: [45, 60, 61] -Triangle: [46, 61, 62] -Triangle: [47, 62, 63] -Triangle: [54, 49, 48] -Triangle: [13, 14, 69] -Triangle: [70, 73, 72] -Triangle: [71, 74, 73] -Triangle: [68, 75, 74] -Triangle: [67, 76, 75] -Triangle: [66, 77, 76] -Triangle: [78, 77, 66] -Triangle: [79, 78, 65] -Triangle: [6, 79, 64] -Triangle: [7, 80, 79] -Triangle: [78, 79, 80] -Triangle: [82, 77, 78] -Triangle: [83, 76, 77] -Triangle: [84, 75, 76] -Triangle: [74, 75, 84] -Triangle: [86, 73, 74] -Triangle: [72, 73, 86] -Triangle: [87, 12, 13] -Triangle: [88, 11, 12] -Triangle: [89, 88, 87] -Triangle: [85, 90, 89] -Triangle: [91, 90, 85] -Triangle: [83, 92, 91] -Triangle: [82, 93, 92] -Triangle: [81, 94, 93] -Triangle: [80, 95, 94] -Triangle: [8, 95, 80] -Triangle: [96, 95, 8] -Triangle: [97, 96, 9] -Triangle: [11, 88, 97] -Triangle: [99, 98, 88] -Triangle: [100, 99, 89] -Triangle: [91, 101, 100] -Triangle: [92, 102, 101] -Triangle: [103, 102, 92] -Triangle: [104, 103, 93] -Triangle: [105, 104, 94] -Triangle: [96, 106, 105] -Triangle: [97, 107, 106] -Triangle: [98, 107, 97] -Triangle: [109, 108, 103] -Triangle: [110, 109, 104] -Triangle: [111, 110, 105] -Triangle: [112, 111, 106] -Triangle: [113, 112, 107] -Triangle: [114, 113, 98] -Triangle: [115, 114, 99] -Triangle: [116, 115, 100] -Triangle: [117, 116, 101] -Triangle: [108, 117, 102] -Triangle: [118, 127, 138] -Triangle: [119, 128, 138] -Triangle: [138, 128, 121] -Triangle: [138, 129, 120] -Triangle: [120, 129, 139] -Triangle: [121, 131, 139] -Triangle: [139, 131, 125] -Triangle: [139, 132, 124] -Triangle: [124, 132, 140] -Triangle: [125, 134, 140] -Triangle: [140, 134, 123] -Triangle: [140, 135, 122] -Triangle: [122, 135, 141] -Triangle: [123, 137, 141] -Triangle: [141, 137, 119] -Triangle: [141, 127, 118] -Triangle: [120, 130, 142] -Triangle: [124, 133, 142] -Triangle: [142, 133, 122] -Triangle: [142, 136, 118] -Triangle: [125, 131, 143] -Triangle: [121, 128, 143] -Triangle: [143, 128, 119] -Triangle: [143, 137, 123] -Triangle: [144, 152, 164] -Triangle: [164, 154, 145] -Triangle: [164, 155, 147] -Triangle: [146, 155, 164] -Triangle: [146, 156, 165] -Triangle: [165, 157, 147] -Triangle: [165, 158, 151] -Triangle: [150, 158, 165] -Triangle: [150, 159, 166] -Triangle: [166, 160, 151] -Triangle: [166, 161, 149] -Triangle: [148, 161, 166] -Triangle: [148, 162, 167] -Triangle: [167, 163, 149] -Triangle: [167, 153, 145] -Triangle: [144, 153, 167] -Triangle: [146, 152, 168] -Triangle: [168, 159, 150] -Triangle: [168, 162, 148] -Triangle: [144, 162, 168] -Triangle: [151, 160, 169] -Triangle: [169, 154, 147] -Triangle: [169, 163, 145] -Triangle: [149, 163, 169] -Triangle: [173, 171, 170] -Triangle: [174, 170, 171] -Triangle: [173, 176, 177] -Triangle: [175, 171, 177] -Triangle: [176, 179, 180] -Triangle: [177, 180, 181] -Triangle: [179, 182, 183] -Triangle: [183, 182, 184] -Triangle: [185, 184, 186] -Triangle: [180, 183, 188] -Triangle: [189, 188, 183] -Triangle: [189, 185, 187] -Triangle: [194, 191, 172] -Triangle: [192, 191, 194] -Triangle: [193, 192, 195] -Triangle: [197, 194, 170] -Triangle: [195, 194, 197] -Triangle: [199, 198, 193] -Triangle: [199, 196, 200] -Triangle: [202, 200, 196] -Triangle: [203, 202, 197] -Triangle: [203, 174, 175] -Triangle: [204, 175, 178] -Triangle: [205, 178, 181] -Triangle: [206, 181, 188] -Triangle: [207, 188, 189] -Triangle: [208, 189, 190] -Triangle: [198, 199, 213] -Triangle: [213, 199, 201] -Triangle: [210, 212, 201] -Triangle: [211, 212, 210] -Triangle: [213, 212, 211] -Triangle: [213, 216, 217] -Triangle: [218, 215, 201] -Triangle: [219, 215, 218] -Triangle: [215, 219, 221] -Triangle: [211, 221, 222] -Triangle: [216, 222, 223] -Triangle: [224, 218, 200] -Triangle: [225, 224, 202] -Triangle: [220, 218, 224] -Triangle: [226, 224, 225] -Triangle: [225, 203, 204] -Triangle: [228, 204, 205] -Triangle: [230, 229, 205] -Triangle: [230, 206, 207] -Triangle: [232, 231, 207] -Triangle: [232, 208, 209] -Triangle: [227, 225, 228] -Triangle: [235, 234, 228] -Triangle: [236, 235, 229] -Triangle: [237, 236, 230] -Triangle: [238, 223, 222] -Triangle: [240, 239, 222] -Triangle: [240, 221, 219] -Triangle: [241, 219, 220] -Triangle: [242, 220, 226] -Triangle: [243, 226, 227] -Triangle: [244, 227, 234] -Triangle: [246, 245, 234] -Triangle: [246, 235, 236] -Triangle: [247, 236, 237] -Triangle: [237, 249, 250] -Triangle: [232, 249, 237] -Triangle: [249, 232, 233] -Triangle: [252, 238, 239] -Triangle: [253, 252, 256] -Triangle: [254, 253, 257] -Triangle: [255, 254, 258] -Triangle: [256, 239, 240] -Triangle: [257, 256, 260] -Triangle: [260, 240, 241] -Triangle: [262, 241, 242] -Triangle: [263, 242, 243] -Triangle: [264, 243, 244] -Triangle: [265, 244, 245] -Triangle: [267, 266, 245] -Triangle: [268, 267, 246] -Triangle: [269, 268, 247] -Triangle: [249, 251, 270] -Triangle: [270, 269, 248] -Triangle: [268, 271, 272] -Triangle: [272, 271, 273] -Triangle: [272, 274, 275] -Triangle: [266, 267, 275] -Triangle: [266, 276, 277] -Triangle: [265, 277, 278] -Triangle: [264, 278, 279] -Triangle: [263, 279, 280] -Triangle: [261, 260, 262] -Triangle: [258, 257, 261] -Triangle: [282, 271, 268] -Triangle: [187, 186, 283] -Triangle: [190, 187, 284] -Triangle: [209, 190, 285] -Triangle: [233, 209, 286] -Triangle: [251, 233, 287] -Triangle: [270, 251, 288] -Triangle: [270, 289, 290] -Triangle: [269, 290, 291] -Triangle: [293, 292, 290] -Triangle: [294, 293, 289] -Triangle: [296, 295, 288] -Triangle: [294, 288, 295] -Triangle: [298, 296, 287] -Triangle: [298, 286, 285] -Triangle: [299, 285, 284] -Triangle: [300, 284, 283] -Triangle: [300, 301, 302] -Triangle: [299, 300, 303] -Triangle: [298, 299, 304] -Triangle: [296, 298, 305] -Triangle: [295, 305, 306] -Triangle: [307, 306, 305] -Triangle: [308, 307, 304] -Triangle: [309, 308, 303] -Triangle: [308, 309, 310] -Triangle: [307, 308, 311] -Triangle: [306, 307, 312] -Triangle: [297, 306, 313] -Triangle: [294, 297, 314] -Triangle: [293, 294, 315] -Triangle: [311, 310, 317] -Triangle: [312, 311, 318] -Triangle: [313, 312, 319] -Triangle: [314, 313, 320] -Triangle: [315, 314, 321] -Triangle: [316, 315, 322] -Triangle: [292, 293, 316] -Triangle: [282, 291, 324] -Triangle: [291, 290, 292] -Triangle: [324, 291, 325] -Triangle: [273, 271, 324] -Triangle: [325, 292, 323] -Triangle: [326, 325, 327] -Triangle: [326, 329, 330] -Triangle: [329, 326, 328] -Triangle: [329, 425, 332] -Triangle: [333, 332, 331] -Triangle: [330, 337, 336] -Triangle: [335, 274, 273] -Triangle: [274, 335, 338] -Triangle: [275, 338, 339] -Triangle: [337, 330, 332] -Triangle: [341, 340, 332] -Triangle: [342, 338, 335] -Triangle: [338, 342, 343] -Triangle: [342, 336, 337] -Triangle: [342, 340, 341] -Triangle: [276, 339, 344] -Triangle: [345, 344, 339] -Triangle: [346, 345, 343] -Triangle: [346, 341, 333] -Triangle: [345, 346, 347] -Triangle: [344, 347, 348] -Triangle: [349, 347, 333] -Triangle: [278, 277, 348] -Triangle: [348, 347, 349] -Triangle: [350, 348, 351] -Triangle: [281, 261, 280] -Triangle: [353, 280, 279] -Triangle: [354, 279, 278] -Triangle: [355, 354, 350] -Triangle: [353, 354, 355] -Triangle: [353, 356, 357] -Triangle: [259, 258, 281] -Triangle: [358, 255, 259] -Triangle: [362, 259, 357] -Triangle: [363, 357, 356] -Triangle: [364, 356, 365] -Triangle: [366, 365, 367] -Triangle: [368, 367, 369] -Triangle: [370, 369, 371] -Triangle: [372, 371, 373] -Triangle: [374, 373, 375] -Triangle: [376, 375, 377] -Triangle: [378, 377, 379] -Triangle: [359, 358, 362] -Triangle: [382, 381, 362] -Triangle: [382, 363, 364] -Triangle: [383, 364, 366] -Triangle: [384, 366, 368] -Triangle: [385, 368, 370] -Triangle: [386, 370, 372] -Triangle: [387, 372, 374] -Triangle: [388, 374, 376] -Triangle: [389, 376, 378] -Triangle: [390, 378, 380] -Triangle: [365, 356, 355] -Triangle: [367, 365, 352] -Triangle: [369, 367, 392] -Triangle: [369, 393, 394] -Triangle: [371, 394, 395] -Triangle: [375, 373, 395] -Triangle: [375, 396, 397] -Triangle: [379, 377, 397] -Triangle: [392, 352, 351] -Triangle: [400, 399, 351] -Triangle: [393, 392, 399] -Triangle: [393, 401, 402] -Triangle: [394, 402, 403] -Triangle: [396, 395, 403] -Triangle: [396, 404, 405] -Triangle: [398, 397, 405] -Triangle: [401, 399, 400] -Triangle: [402, 401, 407] -Triangle: [403, 402, 408] -Triangle: [404, 403, 409] -Triangle: [405, 404, 410] -Triangle: [406, 405, 411] -Triangle: [407, 400, 349] -Triangle: [407, 334, 413] -Triangle: [408, 413, 414] -Triangle: [409, 414, 415] -Triangle: [411, 410, 415] -Triangle: [412, 411, 416] -Triangle: [419, 418, 417] -Triangle: [419, 416, 415] -Triangle: [420, 415, 414] -Triangle: [421, 414, 413] -Triangle: [424, 422, 420] -Triangle: [331, 332, 425] -Triangle: [427, 413, 334] -Triangle: [427, 331, 426] -Triangle: [430, 429, 428] -Triangle: [430, 426, 425] -Triangle: [431, 328, 327] -Triangle: [430, 328, 431] -Triangle: [429, 430, 433] -Triangle: [435, 432, 327] -Triangle: [435, 323, 322] -Triangle: [437, 436, 322] -Triangle: [438, 437, 321] -Triangle: [439, 438, 320] -Triangle: [440, 439, 319] -Triangle: [441, 440, 318] -Triangle: [444, 442, 434] -Triangle: [442, 444, 445] -Triangle: [422, 443, 445] -Triangle: [422, 446, 419] -Triangle: [419, 446, 447] -Triangle: [448, 447, 446] -Triangle: [448, 445, 449] -Triangle: [449, 445, 444] -Triangle: [459, 451, 450] -Triangle: [459, 449, 458] -Triangle: [461, 458, 444] -Triangle: [462, 461, 433] -Triangle: [460, 458, 461] -Triangle: [452, 451, 459] -Triangle: [463, 459, 460] -Triangle: [464, 460, 462] -Triangle: [465, 462, 431] -Triangle: [453, 452, 463] -Triangle: [466, 463, 464] -Triangle: [467, 464, 465] -Triangle: [468, 465, 432] -Triangle: [469, 468, 435] -Triangle: [468, 469, 470] -Triangle: [467, 470, 471] -Triangle: [454, 453, 466] -Triangle: [455, 454, 471] -Triangle: [456, 455, 472] -Triangle: [457, 456, 478] -Triangle: [440, 441, 457] -Triangle: [437, 438, 475] -Triangle: [436, 437, 476] -Triangle: [469, 476, 477] -Triangle: [472, 471, 470] -Triangle: [479, 477, 476] -Triangle: [473, 472, 477] -Triangle: [474, 478, 479] -Triangle: [439, 440, 474] -Triangle: [438, 439, 480] -Triangle: [481, 429, 434] -Triangle: [428, 429, 481] -Triangle: [427, 428, 483] -Triangle: [443, 422, 424] -Triangle: [442, 443, 485] -Triangle: [482, 434, 442] -Triangle: [423, 413, 427] -Triangle: [487, 483, 481] -Triangle: [488, 481, 482] -Triangle: [489, 482, 486] -Triangle: [491, 490, 486] -Triangle: [492, 491, 485] -Triangle: [493, 492, 424] -Triangle: [494, 493, 421] -Triangle: [495, 494, 423] -Triangle: [484, 483, 487] -Triangle: [495, 487, 496] -Triangle: [498, 496, 487] -Triangle: [498, 488, 489] -Triangle: [499, 489, 490] -Triangle: [500, 490, 491] -Triangle: [501, 491, 492] -Triangle: [503, 502, 492] -Triangle: [504, 503, 493] -Triangle: [494, 495, 497] -Triangle: [498, 499, 505] -Triangle: [496, 498, 508] -Triangle: [497, 496, 509] -Triangle: [497, 510, 511] -Triangle: [504, 511, 512] -Triangle: [503, 512, 513] -Triangle: [502, 513, 514] -Triangle: [501, 514, 515] -Triangle: [505, 499, 500] -Triangle: [506, 505, 515] -Triangle: [516, 515, 514] -Triangle: [517, 514, 513] -Triangle: [518, 513, 512] -Triangle: [519, 512, 511] -Triangle: [521, 520, 511] -Triangle: [522, 521, 510] -Triangle: [523, 522, 509] -Triangle: [508, 505, 506] -Triangle: [524, 523, 506] -Triangle: [522, 523, 524] -Triangle: [521, 522, 525] -Triangle: [521, 526, 527] -Triangle: [520, 527, 528] -Triangle: [519, 528, 529] -Triangle: [518, 529, 530] -Triangle: [517, 530, 531] -Triangle: [507, 506, 516] -Triangle: [532, 531, 530] -Triangle: [533, 530, 529] -Triangle: [535, 534, 529] -Triangle: [535, 528, 527] -Triangle: [536, 527, 526] -Triangle: [538, 537, 526] -Triangle: [539, 538, 525] -Triangle: [539, 524, 507] -Triangle: [507, 531, 532] -Triangle: [541, 540, 532] -Triangle: [540, 541, 542] -Triangle: [538, 539, 542] -Triangle: [537, 542, 543] -Triangle: [543, 542, 541] -Triangle: [544, 541, 533] -Triangle: [535, 536, 543] -Triangle: [360, 359, 381] -Triangle: [361, 360, 545] -Triangle: [547, 545, 381] -Triangle: [548, 547, 382] -Triangle: [548, 383, 384] -Triangle: [549, 384, 385] -Triangle: [550, 385, 386] -Triangle: [551, 386, 387] -Triangle: [552, 387, 388] -Triangle: [553, 388, 389] -Triangle: [554, 389, 390] -Triangle: [555, 390, 391] -Triangle: [545, 547, 557] -Triangle: [557, 547, 548] -Triangle: [558, 548, 549] -Triangle: [559, 549, 550] -Triangle: [560, 550, 551] -Triangle: [562, 561, 551] -Triangle: [563, 562, 552] -Triangle: [563, 553, 554] -Triangle: [564, 554, 555] -Triangle: [565, 555, 556] -Triangle: [568, 567, 361] -Triangle: [569, 568, 546] -Triangle: [569, 557, 558] -Triangle: [571, 570, 558] -Triangle: [571, 559, 560] -Triangle: [573, 572, 560] -Triangle: [573, 561, 562] -Triangle: [575, 574, 562] -Triangle: [576, 575, 563] -Triangle: [577, 576, 564] -Triangle: [578, 577, 565] -Triangle: [577, 578, 579] -Triangle: [576, 577, 580] -Triangle: [573, 582, 595] -Triangle: [582, 573, 574] -Triangle: [603, 574, 602] -Triangle: [604, 602, 601] -Triangle: [605, 601, 600] -Triangle: [607, 606, 600] -Triangle: [608, 607, 599] -Triangle: [609, 608, 598] -Triangle: [610, 609, 597] -Triangle: [595, 610, 596] -Triangle: [611, 595, 582] -Triangle: [611, 583, 584] -Triangle: [613, 612, 584] -Triangle: [614, 613, 585] -Triangle: [614, 586, 587] -Triangle: [615, 587, 588] -Triangle: [616, 588, 589] -Triangle: [617, 589, 590] -Triangle: [618, 590, 591] -Triangle: [620, 619, 591] -Triangle: [621, 620, 592] -Triangle: [621, 593, 594] -Triangle: [610, 595, 611] -Triangle: [609, 610, 623] -Triangle: [608, 609, 624] -Triangle: [607, 608, 625] -Triangle: [606, 607, 626] -Triangle: [606, 627, 628] -Triangle: [583, 582, 603] -Triangle: [584, 583, 629] -Triangle: [585, 584, 630] -Triangle: [586, 585, 631] -Triangle: [586, 632, 633] -Triangle: [587, 633, 634] -Triangle: [588, 634, 635] -Triangle: [590, 589, 635] -Triangle: [590, 636, 637] -Triangle: [591, 637, 638] -Triangle: [593, 592, 638] -Triangle: [593, 639, 640] -Triangle: [629, 603, 604] -Triangle: [630, 629, 641] -Triangle: [631, 630, 642] -Triangle: [632, 631, 643] -Triangle: [633, 632, 644] -Triangle: [634, 633, 645] -Triangle: [635, 634, 646] -Triangle: [636, 635, 647] -Triangle: [637, 636, 648] -Triangle: [638, 637, 649] -Triangle: [639, 638, 650] -Triangle: [640, 639, 651] -Triangle: [641, 604, 605] -Triangle: [642, 641, 628] -Triangle: [643, 642, 652] -Triangle: [644, 643, 653] -Triangle: [644, 654, 655] -Triangle: [646, 645, 655] -Triangle: [647, 646, 656] -Triangle: [648, 647, 657] -Triangle: [649, 648, 658] -Triangle: [650, 649, 659] -Triangle: [650, 660, 661] -Triangle: [652, 628, 627] -Triangle: [653, 652, 662] -Triangle: [654, 653, 663] -Triangle: [655, 654, 664] -Triangle: [656, 655, 665] -Triangle: [657, 656, 666] -Triangle: [658, 657, 667] -Triangle: [658, 668, 669] -Triangle: [659, 669, 670] -Triangle: [660, 670, 671] -Triangle: [828, 651, 661] -Triangle: [662, 627, 626] -Triangle: [662, 673, 674] -Triangle: [663, 674, 675] -Triangle: [664, 675, 676] -Triangle: [666, 665, 676] -Triangle: [667, 666, 677] -Triangle: [668, 667, 678] -Triangle: [668, 679, 680] -Triangle: [669, 680, 681] -Triangle: [670, 681, 682] -Triangle: [672, 671, 682] -Triangle: [684, 673, 626] -Triangle: [673, 684, 685] -Triangle: [674, 685, 686] -Triangle: [675, 686, 687] -Triangle: [676, 687, 688] -Triangle: [678, 677, 688] -Triangle: [679, 678, 689] -Triangle: [679, 690, 691] -Triangle: [680, 691, 692] -Triangle: [682, 681, 692] -Triangle: [683, 682, 693] -Triangle: [695, 684, 625] -Triangle: [696, 695, 624] -Triangle: [623, 611, 612] -Triangle: [697, 696, 612] -Triangle: [695, 696, 697] -Triangle: [684, 695, 698] -Triangle: [699, 697, 613] -Triangle: [698, 697, 699] -Triangle: [685, 698, 700] -Triangle: [701, 699, 614] -Triangle: [700, 699, 701] -Triangle: [686, 700, 702] -Triangle: [703, 701, 615] -Triangle: [701, 703, 704] -Triangle: [687, 702, 704] -Triangle: [703, 616, 617] -Triangle: [704, 703, 705] -Triangle: [688, 704, 706] -Triangle: [705, 617, 618] -Triangle: [705, 707, 708] -Triangle: [689, 706, 708] -Triangle: [707, 618, 619] -Triangle: [708, 707, 709] -Triangle: [690, 708, 710] -Triangle: [691, 710, 711] -Triangle: [712, 711, 710] -Triangle: [712, 709, 619] -Triangle: [712, 620, 621] -Triangle: [711, 712, 713] -Triangle: [692, 711, 714] -Triangle: [693, 714, 715] -Triangle: [716, 715, 714] -Triangle: [713, 621, 622] -Triangle: [570, 571, 572] -Triangle: [570, 596, 717] -Triangle: [568, 569, 717] -Triangle: [568, 718, 719] -Triangle: [717, 596, 597] -Triangle: [717, 720, 721] -Triangle: [718, 721, 722] -Triangle: [720, 597, 723] -Triangle: [721, 720, 724] -Triangle: [722, 721, 725] -Triangle: [728, 727, 726] -Triangle: [729, 728, 725] -Triangle: [729, 724, 723] -Triangle: [723, 597, 598] -Triangle: [731, 598, 599] -Triangle: [733, 732, 599] -Triangle: [730, 723, 731] -Triangle: [734, 731, 732] -Triangle: [736, 735, 732] -Triangle: [738, 737, 727] -Triangle: [739, 738, 728] -Triangle: [739, 729, 730] -Triangle: [740, 730, 734] -Triangle: [741, 734, 735] -Triangle: [743, 742, 735] -Triangle: [744, 737, 738] -Triangle: [745, 738, 739] -Triangle: [746, 739, 740] -Triangle: [747, 740, 741] -Triangle: [748, 741, 742] -Triangle: [750, 749, 742] -Triangle: [576, 581, 751] -Triangle: [602, 574, 575] -Triangle: [602, 751, 752] -Triangle: [753, 733, 600] -Triangle: [753, 601, 752] -Triangle: [733, 753, 754] -Triangle: [736, 754, 755] -Triangle: [743, 755, 756] -Triangle: [757, 744, 745] -Triangle: [758, 745, 746] -Triangle: [759, 746, 747] -Triangle: [760, 747, 748] -Triangle: [761, 748, 749] -Triangle: [763, 762, 749] -Triangle: [764, 763, 750] -Triangle: [765, 752, 751] -Triangle: [766, 765, 581] -Triangle: [766, 580, 579] -Triangle: [752, 765, 768] -Triangle: [768, 765, 766] -Triangle: [768, 767, 769] -Triangle: [754, 768, 770] -Triangle: [755, 770, 771] -Triangle: [771, 770, 769] -Triangle: [756, 771, 773] -Triangle: [774, 773, 771] -Triangle: [622, 594, 775] -Triangle: [779, 775, 776] -Triangle: [780, 776, 777] -Triangle: [782, 781, 777] -Triangle: [775, 594, 640] -Triangle: [775, 783, 784] -Triangle: [776, 784, 785] -Triangle: [777, 785, 786] -Triangle: [778, 787, 788] -Triangle: [787, 778, 786] -Triangle: [781, 782, 788] -Triangle: [781, 790, 791] -Triangle: [780, 791, 792] -Triangle: [716, 622, 779] -Triangle: [793, 779, 792] -Triangle: [715, 716, 793] -Triangle: [795, 793, 794] -Triangle: [694, 715, 795] -Triangle: [797, 795, 796] -Triangle: [794, 792, 801] -Triangle: [794, 803, 804] -Triangle: [798, 796, 804] -Triangle: [800, 798, 805] -Triangle: [800, 806, 807] -Triangle: [801, 792, 825] -Triangle: [808, 803, 801] -Triangle: [803, 808, 809] -Triangle: [805, 804, 809] -Triangle: [806, 805, 810] -Triangle: [806, 811, 812] -Triangle: [802, 801, 807] -Triangle: [815, 814, 809] -Triangle: [815, 808, 802] -Triangle: [812, 813, 816] -Triangle: [815, 816, 813] -Triangle: [809, 814, 817] -Triangle: [810, 817, 818] -Triangle: [812, 811, 818] -Triangle: [813, 818, 817] -Triangle: [783, 640, 828] -Triangle: [783, 819, 820] -Triangle: [785, 784, 820] -Triangle: [786, 785, 821] -Triangle: [820, 819, 822] -Triangle: [821, 820, 823] -Triangle: [789, 821, 824] -Triangle: [788, 787, 824] -Triangle: [791, 790, 824] -Triangle: [799, 791, 823] -Triangle: [799, 825, 792] -Triangle: [825, 799, 826] -Triangle: [798, 800, 826] -Triangle: [826, 799, 822] -Triangle: [828, 671, 672] -Triangle: [819, 672, 827] -Triangle: [827, 672, 683] -Triangle: [826, 683, 694] -Triangle: [829, 757, 758] -Triangle: [830, 758, 759] -Triangle: [831, 759, 760] -Triangle: [833, 832, 760] -Triangle: [833, 761, 762] -Triangle: [774, 843, 844] -Triangle: [773, 844, 845] -Triangle: [764, 845, 846] -Triangle: [834, 762, 763] -Triangle: [847, 844, 843] -Triangle: [845, 844, 847] -Triangle: [846, 845, 848] -Triangle: [846, 849, 850] -Triangle: [834, 850, 851] -Triangle: [832, 833, 851] -Triangle: [832, 852, 853] -Triangle: [831, 853, 854] -Triangle: [835, 829, 830] -Triangle: [836, 835, 854] -Triangle: [855, 854, 853] -Triangle: [856, 853, 852] -Triangle: [858, 857, 852] -Triangle: [858, 851, 850] -Triangle: [859, 850, 849] -Triangle: [861, 860, 849] -Triangle: [861, 848, 847] -Triangle: [862, 847, 842] -Triangle: [863, 862, 841] -Triangle: [861, 862, 863] -Triangle: [860, 861, 864] -Triangle: [859, 860, 865] -Triangle: [858, 859, 866] -Triangle: [857, 858, 867] -Triangle: [857, 868, 869] -Triangle: [856, 869, 870] -Triangle: [837, 836, 855] -Triangle: [837, 870, 871] -Triangle: [838, 871, 872] -Triangle: [872, 863, 840] -Triangle: [864, 863, 873] -Triangle: [864, 874, 875] -Triangle: [866, 865, 875] -Triangle: [867, 866, 876] -Triangle: [867, 877, 878] -Triangle: [868, 878, 879] -Triangle: [869, 879, 880] -Triangle: [871, 870, 880] -Triangle: [872, 871, 881] -Triangle: [873, 863, 872] -Triangle: [878, 883, 884] -Triangle: [879, 884, 885] -Triangle: [881, 880, 885] -Triangle: [882, 881, 886] -Triangle: [882, 887, 888] -Triangle: [873, 888, 889] -Triangle: [874, 889, 890] -Triangle: [876, 875, 890] -Triangle: [877, 876, 891] -Triangle: [883, 878, 877] -Triangle: [891, 890, 893] -Triangle: [892, 891, 896] -Triangle: [892, 897, 898] -Triangle: [883, 898, 899] -Triangle: [884, 899, 900] -Triangle: [886, 885, 900] -Triangle: [887, 886, 901] -Triangle: [887, 902, 903] -Triangle: [888, 903, 904] -Triangle: [893, 890, 889] -Triangle: [896, 893, 894] -Triangle: [897, 896, 905] -Triangle: [897, 906, 907] -Triangle: [898, 907, 908] -Triangle: [900, 899, 908] -Triangle: [901, 900, 909] -Triangle: [902, 901, 910] -Triangle: [902, 911, 912] -Triangle: [903, 912, 913] -Triangle: [894, 893, 904] -Triangle: [914, 905, 894] -Triangle: [905, 914, 915] -Triangle: [906, 915, 916] -Triangle: [907, 916, 917] -Triangle: [909, 908, 917] -Triangle: [910, 909, 918] -Triangle: [911, 910, 919] -Triangle: [911, 920, 921] -Triangle: [912, 921, 922] -Triangle: [895, 894, 913] -Triangle: [914, 895, 923] -Triangle: [915, 914, 924] -Triangle: [915, 925, 926] -Triangle: [916, 926, 927] -Triangle: [917, 927, 928] -Triangle: [919, 918, 928] -Triangle: [920, 919, 929] -Triangle: [920, 930, 931] -Triangle: [921, 931, 932] -Triangle: [923, 895, 922] -Triangle: [923, 932, 934] -Triangle: [924, 923, 933] -Triangle: [925, 924, 935] -Triangle: [926, 925, 936] -Triangle: [926, 937, 938] -Triangle: [927, 938, 939] -Triangle: [928, 939, 940] -Triangle: [929, 940, 941] -Triangle: [930, 941, 942] -Triangle: [934, 932, 931] -Triangle: [933, 934, 943] -Triangle: [935, 933, 944] -Triangle: [943, 934, 942] -Triangle: [946, 942, 941] -Triangle: [948, 947, 941] -Triangle: [949, 948, 940] -Triangle: [950, 949, 939] -Triangle: [950, 938, 937] -Triangle: [952, 951, 937] -Triangle: [936, 935, 945] -Triangle: [952, 953, 954] -Triangle: [951, 954, 955] -Triangle: [949, 950, 955] -Triangle: [949, 956, 957] -Triangle: [947, 948, 957] -Triangle: [947, 958, 959] -Triangle: [946, 959, 960] -Triangle: [944, 943, 960] -Triangle: [945, 944, 961] -Triangle: [952, 945, 962] -Triangle: [965, 963, 955] -Triangle: [965, 954, 953] -Triangle: [967, 966, 953] -Triangle: [968, 967, 962] -Triangle: [968, 961, 960] -Triangle: [970, 969, 960] -Triangle: [970, 959, 958] -Triangle: [971, 958, 957] -Triangle: [972, 957, 956] -Triangle: [973, 956, 955] -Triangle: [973, 963, 964] -Triangle: [973, 976, 977] -Triangle: [972, 977, 978] -Triangle: [971, 978, 979] -Triangle: [969, 970, 979] -Triangle: [969, 980, 981] -Triangle: [968, 981, 982] -Triangle: [967, 982, 983] -Triangle: [965, 966, 983] -Triangle: [963, 965, 984] -Triangle: [964, 984, 985] -Triangle: [974, 985, 986] -Triangle: [987, 976, 964] -Triangle: [988, 987, 974] -Triangle: [988, 989, 990] -Triangle: [987, 990, 991] -Triangle: [976, 991, 992] -Triangle: [978, 977, 992] -Triangle: [978, 993, 994] -Triangle: [980, 979, 994] -Triangle: [980, 995, 996] -Triangle: [981, 996, 997] -Triangle: [982, 997, 998] -Triangle: [984, 983, 998] -Triangle: [985, 984, 999] -Triangle: [986, 985, 1000] -Triangle: [975, 986, 1001] -Triangle: [988, 975, 1002] -Triangle: [995, 1003, 1004] -Triangle: [997, 996, 1004] -Triangle: [998, 997, 1005] -Triangle: [1006, 1005, 1004] -Triangle: [999, 998, 1006] -Triangle: [1000, 999, 1008] -Triangle: [1008, 1006, 1007] -Triangle: [1009, 1008, 1010] -Triangle: [1007, 1004, 1003] -Triangle: [1003, 995, 994] -Triangle: [1012, 1003, 993] -Triangle: [1010, 1007, 1012] -Triangle: [1013, 1012, 992] -Triangle: [1011, 1010, 1013] -Triangle: [1014, 1013, 991] -Triangle: [1001, 1000, 1009] -Triangle: [1002, 1001, 1015] -Triangle: [1002, 1016, 1017] -Triangle: [1015, 1009, 1011] -Triangle: [1016, 1015, 1018] -Triangle: [1018, 1011, 1014] -Triangle: [1017, 1014, 990] -Triangle: [1019, 1020, 173] -Triangle: [1021, 1022, 1020] -Triangle: [1023, 176, 173] -Triangle: [1022, 1024, 1023] -Triangle: [1025, 179, 176] -Triangle: [1026, 1025, 1023] -Triangle: [1027, 182, 179] -Triangle: [1027, 1028, 184] -Triangle: [1028, 1029, 186] -Triangle: [1030, 1027, 1025] -Triangle: [1031, 1028, 1027] -Triangle: [1029, 1028, 1031] -Triangle: [1033, 1019, 172] -Triangle: [192, 1034, 1033] -Triangle: [193, 1035, 1034] -Triangle: [1036, 1021, 1019] -Triangle: [1036, 1033, 1034] -Triangle: [1037, 1035, 193] -Triangle: [1037, 1039, 1038] -Triangle: [1040, 1036, 1035] -Triangle: [1041, 1021, 1036] -Triangle: [1022, 1021, 1041] -Triangle: [1024, 1022, 1042] -Triangle: [1026, 1024, 1043] -Triangle: [1030, 1026, 1044] -Triangle: [1031, 1030, 1045] -Triangle: [1032, 1031, 1046] -Triangle: [198, 214, 1051] -Triangle: [1039, 1037, 1051] -Triangle: [1048, 1052, 1039] -Triangle: [1048, 1050, 1049] -Triangle: [1051, 1053, 1049] -Triangle: [217, 1053, 1051] -Triangle: [1054, 1038, 1039] -Triangle: [1054, 1052, 1055] -Triangle: [1057, 1055, 1052] -Triangle: [1058, 1057, 1049] -Triangle: [223, 1058, 1053] -Triangle: [1059, 1040, 1038] -Triangle: [1060, 1041, 1040] -Triangle: [1056, 1061, 1059] -Triangle: [1060, 1059, 1061] -Triangle: [1042, 1041, 1060] -Triangle: [1043, 1042, 1063] -Triangle: [1065, 1044, 1043] -Triangle: [1045, 1044, 1065] -Triangle: [1067, 1046, 1045] -Triangle: [1047, 1046, 1067] -Triangle: [1062, 1069, 1063] -Triangle: [1070, 1064, 1063] -Triangle: [1071, 1065, 1064] -Triangle: [1072, 1066, 1065] -Triangle: [1058, 223, 238] -Triangle: [1074, 1057, 1058] -Triangle: [1055, 1057, 1074] -Triangle: [1056, 1055, 1075] -Triangle: [1061, 1056, 1076] -Triangle: [1062, 1061, 1077] -Triangle: [1069, 1062, 1078] -Triangle: [1080, 1070, 1069] -Triangle: [1071, 1070, 1080] -Triangle: [1072, 1071, 1081] -Triangle: [1084, 1083, 1072] -Triangle: [1067, 1066, 1072] -Triangle: [1068, 1067, 1083] -Triangle: [1073, 238, 252] -Triangle: [253, 1087, 1086] -Triangle: [254, 1088, 1087] -Triangle: [255, 1089, 1088] -Triangle: [1074, 1073, 1086] -Triangle: [1087, 1091, 1090] -Triangle: [1075, 1074, 1090] -Triangle: [1076, 1075, 1092] -Triangle: [1077, 1076, 1093] -Triangle: [1078, 1077, 1094] -Triangle: [1079, 1078, 1095] -Triangle: [1097, 1080, 1079] -Triangle: [1098, 1081, 1080] -Triangle: [1099, 1082, 1081] -Triangle: [1100, 1085, 1083] -Triangle: [1082, 1099, 1100] -Triangle: [1102, 1101, 1098] -Triangle: [1102, 1104, 1103] -Triangle: [1105, 1104, 1102] -Triangle: [1096, 1106, 1105] -Triangle: [1107, 1106, 1096] -Triangle: [1108, 1107, 1095] -Triangle: [1109, 1108, 1094] -Triangle: [1110, 1109, 1093] -Triangle: [1091, 1110, 1092] -Triangle: [1088, 1111, 1091] -Triangle: [1112, 1099, 1098] -Triangle: [1029, 1113, 283] -Triangle: [1032, 1114, 1113] -Triangle: [1047, 1115, 1114] -Triangle: [1068, 1116, 1115] -Triangle: [1085, 1117, 1116] -Triangle: [1100, 1118, 1117] -Triangle: [1119, 1118, 1100] -Triangle: [1120, 1119, 1099] -Triangle: [1122, 1118, 1119] -Triangle: [1123, 1117, 1118] -Triangle: [1125, 1116, 1117] -Triangle: [1123, 1126, 1124] -Triangle: [1127, 1115, 1116] -Triangle: [1114, 1115, 1127] -Triangle: [1113, 1114, 1128] -Triangle: [283, 1113, 1129] -Triangle: [1129, 1130, 302] -Triangle: [1128, 1131, 1130] -Triangle: [1127, 1132, 1131] -Triangle: [1132, 1127, 1125] -Triangle: [1133, 1132, 1124] -Triangle: [1134, 1131, 1132] -Triangle: [1135, 1130, 1131] -Triangle: [309, 302, 1130] -Triangle: [1135, 1136, 310] -Triangle: [1134, 1137, 1136] -Triangle: [1133, 1138, 1137] -Triangle: [1126, 1139, 1138] -Triangle: [1123, 1140, 1139] -Triangle: [1122, 1141, 1140] -Triangle: [1136, 1142, 317] -Triangle: [1137, 1143, 1142] -Triangle: [1138, 1144, 1143] -Triangle: [1139, 1145, 1144] -Triangle: [1140, 1146, 1145] -Triangle: [1141, 1147, 1146] -Triangle: [1121, 1147, 1141] -Triangle: [1148, 1120, 1112] -Triangle: [1120, 1149, 1121] -Triangle: [1148, 1150, 1149] -Triangle: [1103, 1150, 1148] -Triangle: [1147, 1121, 1149] -Triangle: [1150, 1152, 1151] -Triangle: [1154, 1153, 1150] -Triangle: [1152, 1150, 1153] -Triangle: [1156, 1237, 1153] -Triangle: [1155, 1156, 1157] -Triangle: [1154, 1103, 1160] -Triangle: [1159, 1160, 1103] -Triangle: [1162, 1159, 1104] -Triangle: [1163, 1162, 1105] -Triangle: [1156, 1154, 1161] -Triangle: [1165, 1157, 1156] -Triangle: [1159, 1162, 1166] -Triangle: [1167, 1166, 1162] -Triangle: [1166, 1164, 1161] -Triangle: [1165, 1164, 1166] -Triangle: [1168, 1163, 1106] -Triangle: [1169, 1167, 1163] -Triangle: [1170, 1165, 1167] -Triangle: [1157, 1165, 1170] -Triangle: [1169, 1168, 1171] -Triangle: [1172, 1171, 1168] -Triangle: [1173, 1158, 1157] -Triangle: [1108, 1174, 1172] -Triangle: [1172, 1175, 1173] -Triangle: [1174, 1176, 1175] -Triangle: [1110, 1091, 1111] -Triangle: [1109, 1110, 1177] -Triangle: [1178, 1174, 1108] -Triangle: [1179, 1176, 1174] -Triangle: [1177, 1180, 1179] -Triangle: [1181, 1180, 1177] -Triangle: [1089, 1181, 1111] -Triangle: [1089, 255, 358] -Triangle: [1181, 1089, 1182] -Triangle: [1180, 1181, 1183] -Triangle: [1184, 1186, 1185] -Triangle: [1186, 1188, 1187] -Triangle: [1188, 1190, 1189] -Triangle: [1191, 1189, 1190] -Triangle: [1192, 1194, 1193] -Triangle: [1194, 1196, 1195] -Triangle: [1196, 1198, 1197] -Triangle: [1198, 380, 379] -Triangle: [359, 1199, 1182] -Triangle: [1200, 1183, 1182] -Triangle: [1184, 1183, 1200] -Triangle: [1186, 1184, 1201] -Triangle: [1188, 1186, 1202] -Triangle: [1190, 1188, 1203] -Triangle: [1192, 1190, 1204] -Triangle: [1194, 1192, 1205] -Triangle: [1196, 1194, 1206] -Triangle: [1198, 1196, 1207] -Triangle: [380, 1198, 1208] -Triangle: [1185, 1176, 1179] -Triangle: [1187, 1209, 1176] -Triangle: [1189, 1210, 1209] -Triangle: [1211, 1210, 1189] -Triangle: [1212, 1211, 1191] -Triangle: [1195, 1213, 1212] -Triangle: [1214, 1213, 1195] -Triangle: [379, 398, 1214] -Triangle: [1175, 1176, 1209] -Triangle: [1216, 1173, 1175] -Triangle: [1210, 1217, 1215] -Triangle: [1218, 1217, 1210] -Triangle: [1219, 1218, 1211] -Triangle: [1213, 1220, 1219] -Triangle: [1221, 1220, 1213] -Triangle: [398, 406, 1221] -Triangle: [1216, 1215, 1217] -Triangle: [1218, 1223, 1222] -Triangle: [1219, 1224, 1223] -Triangle: [1220, 1225, 1224] -Triangle: [1221, 1226, 1225] -Triangle: [406, 412, 1226] -Triangle: [1222, 1158, 1173] -Triangle: [1227, 1158, 1222] -Triangle: [1228, 1227, 1223] -Triangle: [1229, 1228, 1224] -Triangle: [1226, 1230, 1229] -Triangle: [412, 417, 1230] -Triangle: [1231, 1230, 417] -Triangle: [1229, 1230, 1231] -Triangle: [1228, 1229, 1232] -Triangle: [1227, 1228, 1233] -Triangle: [1236, 1233, 1232] -Triangle: [1155, 1238, 1237] -Triangle: [1239, 1155, 1158] -Triangle: [1238, 1155, 1239] -Triangle: [1242, 1238, 1240] -Triangle: [1242, 1152, 1237] -Triangle: [1151, 1152, 1243] -Triangle: [1242, 1245, 1243] -Triangle: [1241, 1246, 1245] -Triangle: [1247, 1147, 1151] -Triangle: [1146, 1147, 1247] -Triangle: [1249, 1145, 1146] -Triangle: [1250, 1144, 1145] -Triangle: [1251, 1143, 1144] -Triangle: [1252, 1142, 1143] -Triangle: [441, 317, 1142] -Triangle: [1255, 1245, 1246] -Triangle: [1256, 1255, 1253] -Triangle: [1234, 1257, 1256] -Triangle: [1231, 1257, 1234] -Triangle: [447, 1257, 1231] -Triangle: [448, 1256, 1257] -Triangle: [448, 450, 1258] -Triangle: [1255, 1256, 1258] -Triangle: [1260, 1258, 450] -Triangle: [1259, 1258, 1260] -Triangle: [1262, 1245, 1255] -Triangle: [1263, 1243, 1245] -Triangle: [1261, 1263, 1262] -Triangle: [452, 1264, 1260] -Triangle: [1261, 1260, 1264] -Triangle: [1263, 1261, 1265] -Triangle: [1266, 1244, 1243] -Triangle: [453, 1267, 1264] -Triangle: [1265, 1264, 1267] -Triangle: [1266, 1265, 1268] -Triangle: [1269, 1247, 1244] -Triangle: [1270, 1248, 1247] -Triangle: [1271, 1270, 1269] -Triangle: [1272, 1271, 1268] -Triangle: [454, 1272, 1267] -Triangle: [455, 1273, 1272] -Triangle: [456, 1274, 1273] -Triangle: [457, 1275, 1279] -Triangle: [1252, 1275, 457] -Triangle: [1249, 1277, 1276] -Triangle: [1277, 1249, 1248] -Triangle: [1278, 1277, 1270] -Triangle: [1273, 1278, 1271] -Triangle: [1280, 1276, 1277] -Triangle: [1274, 1280, 1278] -Triangle: [1275, 1281, 1280] -Triangle: [1251, 1281, 1275] -Triangle: [1281, 1251, 1250] -Triangle: [1246, 1241, 1282] -Triangle: [1240, 1284, 1282] -Triangle: [1239, 1285, 1284] -Triangle: [1236, 1234, 1254] -Triangle: [1253, 1287, 1286] -Triangle: [1283, 1287, 1253] -Triangle: [1235, 1285, 1239] -Triangle: [1282, 1284, 1288] -Triangle: [1283, 1282, 1289] -Triangle: [1287, 1283, 1290] -Triangle: [1292, 1286, 1287] -Triangle: [1293, 1236, 1286] -Triangle: [1294, 1233, 1236] -Triangle: [1295, 1235, 1233] -Triangle: [1296, 1285, 1235] -Triangle: [1288, 1284, 1285] -Triangle: [1296, 1298, 1297] -Triangle: [1299, 1289, 1288] -Triangle: [1290, 1289, 1299] -Triangle: [1291, 1290, 1300] -Triangle: [1292, 1291, 1301] -Triangle: [1293, 1292, 1302] -Triangle: [1304, 1294, 1293] -Triangle: [1305, 1295, 1294] -Triangle: [1298, 1296, 1295] -Triangle: [1299, 1309, 1306] -Triangle: [1297, 1310, 1309] -Triangle: [1298, 1311, 1310] -Triangle: [1312, 1311, 1298] -Triangle: [1313, 1312, 1305] -Triangle: [1314, 1313, 1304] -Triangle: [1315, 1314, 1303] -Triangle: [1316, 1315, 1302] -Triangle: [1306, 1316, 1301] -Triangle: [1307, 1317, 1316] -Triangle: [1315, 1316, 1317] -Triangle: [1314, 1315, 1318] -Triangle: [1313, 1314, 1319] -Triangle: [1312, 1313, 1320] -Triangle: [1322, 1311, 1312] -Triangle: [1323, 1310, 1311] -Triangle: [1324, 1309, 1310] -Triangle: [1307, 1306, 1309] -Triangle: [1325, 1308, 1307] -Triangle: [1323, 1326, 1325] -Triangle: [1322, 1327, 1326] -Triangle: [1328, 1327, 1322] -Triangle: [1329, 1328, 1321] -Triangle: [1330, 1329, 1320] -Triangle: [1331, 1330, 1319] -Triangle: [1332, 1331, 1318] -Triangle: [1308, 1332, 1317] -Triangle: [1331, 1332, 1333] -Triangle: [1330, 1331, 1334] -Triangle: [1336, 1329, 1330] -Triangle: [1328, 1329, 1336] -Triangle: [1327, 1328, 1337] -Triangle: [1339, 1326, 1327] -Triangle: [1340, 1325, 1326] -Triangle: [1308, 1325, 1340] -Triangle: [1333, 1332, 1308] -Triangle: [1342, 1334, 1333] -Triangle: [1343, 1342, 1341] -Triangle: [1343, 1340, 1339] -Triangle: [1344, 1343, 1338] -Triangle: [1342, 1343, 1344] -Triangle: [1345, 1335, 1334] -Triangle: [1336, 1345, 1344] -Triangle: [360, 1346, 1199] -Triangle: [361, 1347, 1346] -Triangle: [1348, 1200, 1199] -Triangle: [1349, 1201, 1200] -Triangle: [1202, 1201, 1349] -Triangle: [1203, 1202, 1350] -Triangle: [1204, 1203, 1351] -Triangle: [1205, 1204, 1352] -Triangle: [1206, 1205, 1353] -Triangle: [1207, 1206, 1354] -Triangle: [1208, 1207, 1355] -Triangle: [391, 1208, 1356] -Triangle: [1357, 1348, 1346] -Triangle: [1349, 1348, 1357] -Triangle: [1350, 1349, 1358] -Triangle: [1351, 1350, 1359] -Triangle: [1352, 1351, 1360] -Triangle: [1362, 1353, 1352] -Triangle: [1363, 1354, 1353] -Triangle: [1355, 1354, 1363] -Triangle: [1356, 1355, 1364] -Triangle: [556, 1356, 1365] -Triangle: [1366, 1347, 361] -Triangle: [1367, 1357, 1347] -Triangle: [1358, 1357, 1367] -Triangle: [1369, 1359, 1358] -Triangle: [1360, 1359, 1369] -Triangle: [1371, 1361, 1360] -Triangle: [1362, 1361, 1371] -Triangle: [1373, 1363, 1362] -Triangle: [1374, 1364, 1363] -Triangle: [1375, 1365, 1364] -Triangle: [578, 566, 1365] -Triangle: [1375, 1376, 579] -Triangle: [1374, 1377, 1376] -Triangle: [1391, 1378, 1371] -Triangle: [1372, 1371, 1378] -Triangle: [1398, 1372, 1399] -Triangle: [1397, 1398, 1400] -Triangle: [1396, 1397, 1401] -Triangle: [1403, 1395, 1396] -Triangle: [1404, 1394, 1395] -Triangle: [1405, 1393, 1394] -Triangle: [1406, 1392, 1393] -Triangle: [1391, 1370, 1392] -Triangle: [1407, 1379, 1378] -Triangle: [1380, 1379, 1407] -Triangle: [1409, 1381, 1380] -Triangle: [1410, 1382, 1381] -Triangle: [1383, 1382, 1410] -Triangle: [1384, 1383, 1411] -Triangle: [1385, 1384, 1412] -Triangle: [1386, 1385, 1413] -Triangle: [1387, 1386, 1414] -Triangle: [1416, 1388, 1387] -Triangle: [1417, 1389, 1388] -Triangle: [1390, 1389, 1417] -Triangle: [1406, 1419, 1407] -Triangle: [1405, 1420, 1419] -Triangle: [1404, 1421, 1420] -Triangle: [1403, 1422, 1421] -Triangle: [1402, 1423, 1422] -Triangle: [1424, 1423, 1402] -Triangle: [1379, 1425, 1399] -Triangle: [1380, 1426, 1425] -Triangle: [1381, 1427, 1426] -Triangle: [1382, 1428, 1427] -Triangle: [1429, 1428, 1382] -Triangle: [1430, 1429, 1383] -Triangle: [1431, 1430, 1384] -Triangle: [1386, 1432, 1431] -Triangle: [1433, 1432, 1386] -Triangle: [1434, 1433, 1387] -Triangle: [1389, 1435, 1434] -Triangle: [1436, 1435, 1389] -Triangle: [1400, 1399, 1425] -Triangle: [1426, 1438, 1437] -Triangle: [1427, 1439, 1438] -Triangle: [1428, 1440, 1439] -Triangle: [1429, 1441, 1440] -Triangle: [1430, 1442, 1441] -Triangle: [1431, 1443, 1442] -Triangle: [1432, 1444, 1443] -Triangle: [1433, 1445, 1444] -Triangle: [1434, 1446, 1445] -Triangle: [1435, 1447, 1446] -Triangle: [1436, 1613, 1447] -Triangle: [1437, 1424, 1401] -Triangle: [1438, 1448, 1424] -Triangle: [1439, 1449, 1448] -Triangle: [1440, 1450, 1449] -Triangle: [1451, 1450, 1440] -Triangle: [1442, 1452, 1451] -Triangle: [1443, 1453, 1452] -Triangle: [1444, 1454, 1453] -Triangle: [1445, 1455, 1454] -Triangle: [1446, 1456, 1455] -Triangle: [1457, 1456, 1446] -Triangle: [1423, 1424, 1448] -Triangle: [1449, 1459, 1458] -Triangle: [1450, 1460, 1459] -Triangle: [1451, 1461, 1460] -Triangle: [1452, 1462, 1461] -Triangle: [1453, 1463, 1462] -Triangle: [1454, 1464, 1463] -Triangle: [1465, 1464, 1454] -Triangle: [1466, 1465, 1455] -Triangle: [1467, 1466, 1456] -Triangle: [1613, 1467, 1457] -Triangle: [1422, 1423, 1458] -Triangle: [1470, 1469, 1458] -Triangle: [1471, 1470, 1459] -Triangle: [1472, 1471, 1460] -Triangle: [1462, 1473, 1472] -Triangle: [1463, 1474, 1473] -Triangle: [1464, 1475, 1474] -Triangle: [1476, 1475, 1464] -Triangle: [1477, 1476, 1465] -Triangle: [1478, 1477, 1466] -Triangle: [1468, 1479, 1478] -Triangle: [1480, 1421, 1422] -Triangle: [1481, 1480, 1469] -Triangle: [1482, 1481, 1470] -Triangle: [1483, 1482, 1471] -Triangle: [1484, 1483, 1472] -Triangle: [1474, 1485, 1484] -Triangle: [1475, 1486, 1485] -Triangle: [1487, 1486, 1475] -Triangle: [1488, 1487, 1476] -Triangle: [1478, 1489, 1488] -Triangle: [1479, 1490, 1489] -Triangle: [1491, 1420, 1421] -Triangle: [1492, 1419, 1420] -Triangle: [1408, 1407, 1419] -Triangle: [1493, 1409, 1408] -Triangle: [1491, 1494, 1493] -Triangle: [1494, 1491, 1480] -Triangle: [1495, 1410, 1409] -Triangle: [1494, 1496, 1495] -Triangle: [1496, 1494, 1481] -Triangle: [1497, 1411, 1410] -Triangle: [1496, 1498, 1497] -Triangle: [1498, 1496, 1482] -Triangle: [1499, 1412, 1411] -Triangle: [1500, 1499, 1497] -Triangle: [1500, 1498, 1483] -Triangle: [1413, 1412, 1499] -Triangle: [1500, 1502, 1501] -Triangle: [1502, 1500, 1484] -Triangle: [1414, 1413, 1501] -Triangle: [1504, 1503, 1501] -Triangle: [1504, 1502, 1485] -Triangle: [1415, 1414, 1503] -Triangle: [1504, 1506, 1505] -Triangle: [1506, 1504, 1486] -Triangle: [1507, 1506, 1487] -Triangle: [1508, 1505, 1506] -Triangle: [1508, 1416, 1415] -Triangle: [1417, 1416, 1508] -Triangle: [1507, 1510, 1509] -Triangle: [1510, 1507, 1488] -Triangle: [1511, 1510, 1489] -Triangle: [1512, 1509, 1510] -Triangle: [1418, 1417, 1509] -Triangle: [1368, 1392, 1370] -Triangle: [1513, 1392, 1368] -Triangle: [1366, 1514, 1513] -Triangle: [719, 1514, 1366] -Triangle: [1393, 1392, 1513] -Triangle: [1516, 1515, 1513] -Triangle: [722, 1516, 1514] -Triangle: [1515, 1518, 1517] -Triangle: [1516, 1519, 1518] -Triangle: [722, 726, 1519] -Triangle: [1520, 1519, 726] -Triangle: [1521, 1518, 1519] -Triangle: [1517, 1518, 1521] -Triangle: [1394, 1393, 1517] -Triangle: [1395, 1394, 1523] -Triangle: [1525, 1396, 1395] -Triangle: [1522, 1526, 1523] -Triangle: [1524, 1523, 1526] -Triangle: [1528, 1525, 1524] -Triangle: [1529, 1520, 727] -Triangle: [1530, 1521, 1520] -Triangle: [1522, 1521, 1530] -Triangle: [1526, 1522, 1531] -Triangle: [1527, 1526, 1532] -Triangle: [1534, 1528, 1527] -Triangle: [1529, 737, 744] -Triangle: [1530, 1529, 1535] -Triangle: [1531, 1530, 1536] -Triangle: [1532, 1531, 1537] -Triangle: [1533, 1532, 1538] -Triangle: [1540, 1534, 1533] -Triangle: [1541, 1377, 1374] -Triangle: [1398, 1541, 1373] -Triangle: [1542, 1541, 1398] -Triangle: [1396, 1525, 1543] -Triangle: [1542, 1397, 1543] -Triangle: [1544, 1543, 1525] -Triangle: [1545, 1544, 1528] -Triangle: [1546, 1545, 1534] -Triangle: [1535, 744, 757] -Triangle: [1536, 1535, 1547] -Triangle: [1537, 1536, 1548] -Triangle: [1538, 1537, 1549] -Triangle: [1539, 1538, 1550] -Triangle: [1552, 1540, 1539] -Triangle: [1553, 1546, 1540] -Triangle: [1554, 1377, 1541] -Triangle: [1555, 1376, 1377] -Triangle: [579, 1376, 1555] -Triangle: [1556, 1554, 1542] -Triangle: [1556, 767, 1555] -Triangle: [1556, 1557, 769] -Triangle: [1557, 1556, 1544] -Triangle: [1558, 1557, 1545] -Triangle: [769, 1557, 1558] -Triangle: [1559, 1558, 1546] -Triangle: [774, 772, 1558] -Triangle: [1418, 1564, 1560] -Triangle: [1561, 1560, 1564] -Triangle: [1562, 1561, 1565] -Triangle: [1567, 1563, 1562] -Triangle: [1436, 1390, 1560] -Triangle: [1569, 1568, 1560] -Triangle: [1570, 1569, 1561] -Triangle: [1571, 1570, 1562] -Triangle: [1573, 1572, 1563] -Triangle: [1571, 1563, 1572] -Triangle: [1566, 1575, 1573] -Triangle: [1576, 1575, 1566] -Triangle: [1577, 1576, 1565] -Triangle: [1512, 1578, 1564] -Triangle: [1577, 1564, 1578] -Triangle: [1511, 1580, 1578] -Triangle: [1579, 1578, 1580] -Triangle: [1490, 1582, 1580] -Triangle: [1581, 1580, 1582] -Triangle: [1579, 1588, 1586] -Triangle: [1589, 1588, 1579] -Triangle: [1583, 1590, 1589] -Triangle: [1585, 1591, 1590] -Triangle: [1592, 1591, 1585] -Triangle: [1586, 1592, 1610] -Triangle: [1593, 1587, 1586] -Triangle: [1594, 1593, 1588] -Triangle: [1590, 1595, 1594] -Triangle: [1591, 1596, 1595] -Triangle: [1597, 1596, 1591] -Triangle: [1587, 1597, 1592] -Triangle: [1600, 1593, 1594] -Triangle: [1600, 1601, 1587] -Triangle: [1601, 1598, 1597] -Triangle: [1598, 1601, 1600] -Triangle: [1602, 1599, 1594] -Triangle: [1603, 1602, 1595] -Triangle: [1603, 1596, 1597] -Triangle: [1598, 1599, 1602] -Triangle: [1613, 1436, 1568] -Triangle: [1605, 1604, 1568] -Triangle: [1570, 1606, 1605] -Triangle: [1606, 1570, 1571] -Triangle: [1605, 1608, 1607] -Triangle: [1606, 1609, 1608] -Triangle: [1609, 1606, 1574] -Triangle: [1609, 1572, 1573] -Triangle: [1576, 1608, 1609] -Triangle: [1584, 1607, 1608] -Triangle: [1577, 1610, 1584] -Triangle: [1611, 1584, 1610] -Triangle: [1611, 1585, 1583] -Triangle: [1607, 1584, 1611] -Triangle: [1468, 1467, 1613] -Triangle: [1604, 1607, 1612] -Triangle: [1479, 1468, 1612] -Triangle: [1611, 1582, 1490] -Triangle: [1547, 757, 829] -Triangle: [1548, 1547, 1614] -Triangle: [1549, 1548, 1615] -Triangle: [1617, 1550, 1549] -Triangle: [1551, 1550, 1617] -Triangle: [1619, 843, 774] -Triangle: [1620, 1619, 1559] -Triangle: [1621, 1620, 1553] -Triangle: [1618, 1621, 1552] -Triangle: [1622, 842, 843] -Triangle: [1620, 1623, 1622] -Triangle: [1621, 1624, 1623] -Triangle: [1625, 1624, 1621] -Triangle: [1626, 1625, 1618] -Triangle: [1616, 1627, 1626] -Triangle: [1628, 1627, 1616] -Triangle: [1629, 1628, 1615] -Triangle: [835, 1629, 1614] -Triangle: [836, 1630, 1629] -Triangle: [1628, 1629, 1630] -Triangle: [1627, 1628, 1631] -Triangle: [1633, 1626, 1627] -Triangle: [1625, 1626, 1633] -Triangle: [1624, 1625, 1634] -Triangle: [1636, 1623, 1624] -Triangle: [1622, 1623, 1636] -Triangle: [1637, 841, 842] -Triangle: [1638, 840, 841] -Triangle: [1636, 1639, 1638] -Triangle: [1635, 1640, 1639] -Triangle: [1634, 1641, 1640] -Triangle: [1633, 1642, 1641] -Triangle: [1632, 1643, 1642] -Triangle: [1644, 1643, 1632] -Triangle: [1645, 1644, 1631] -Triangle: [837, 1645, 1630] -Triangle: [1646, 1645, 837] -Triangle: [1647, 1646, 838] -Triangle: [840, 1638, 1647] -Triangle: [1639, 1649, 1648] -Triangle: [1650, 1649, 1639] -Triangle: [1641, 1651, 1650] -Triangle: [1642, 1652, 1651] -Triangle: [1653, 1652, 1642] -Triangle: [1654, 1653, 1643] -Triangle: [1655, 1654, 1644] -Triangle: [1646, 1656, 1655] -Triangle: [1647, 1657, 1656] -Triangle: [1648, 1657, 1647] -Triangle: [1659, 1658, 1653] -Triangle: [1660, 1659, 1654] -Triangle: [1656, 1661, 1660] -Triangle: [1657, 1662, 1661] -Triangle: [1663, 1662, 1657] -Triangle: [1664, 1663, 1648] -Triangle: [1665, 1664, 1649] -Triangle: [1651, 1666, 1665] -Triangle: [1652, 1667, 1666] -Triangle: [1658, 1667, 1652] -Triangle: [1666, 1671, 1668] -Triangle: [1667, 1672, 1671] -Triangle: [1673, 1672, 1667] -Triangle: [1674, 1673, 1658] -Triangle: [1675, 1674, 1659] -Triangle: [1661, 1676, 1675] -Triangle: [1662, 1677, 1676] -Triangle: [1678, 1677, 1662] -Triangle: [1679, 1678, 1663] -Triangle: [1668, 1679, 1664] -Triangle: [1669, 1668, 1671] -Triangle: [1672, 1681, 1680] -Triangle: [1682, 1681, 1672] -Triangle: [1683, 1682, 1673] -Triangle: [1675, 1684, 1683] -Triangle: [1676, 1685, 1684] -Triangle: [1677, 1686, 1685] -Triangle: [1687, 1686, 1677] -Triangle: [1688, 1687, 1678] -Triangle: [1669, 1688, 1679] -Triangle: [1689, 1670, 1669] -Triangle: [1690, 1689, 1680] -Triangle: [1691, 1690, 1681] -Triangle: [1692, 1691, 1682] -Triangle: [1684, 1693, 1692] -Triangle: [1685, 1694, 1693] -Triangle: [1686, 1695, 1694] -Triangle: [1696, 1695, 1686] -Triangle: [1697, 1696, 1687] -Triangle: [1670, 1697, 1688] -Triangle: [1689, 1699, 1698] -Triangle: [1690, 1700, 1699] -Triangle: [1701, 1700, 1690] -Triangle: [1702, 1701, 1691] -Triangle: [1703, 1702, 1692] -Triangle: [1694, 1704, 1703] -Triangle: [1695, 1705, 1704] -Triangle: [1706, 1705, 1695] -Triangle: [1707, 1706, 1696] -Triangle: [1698, 1707, 1697] -Triangle: [1698, 1708, 1709] -Triangle: [1699, 1710, 1708] -Triangle: [1700, 1711, 1710] -Triangle: [1701, 1712, 1711] -Triangle: [1713, 1712, 1701] -Triangle: [1714, 1713, 1702] -Triangle: [1715, 1714, 1703] -Triangle: [1716, 1715, 1704] -Triangle: [1717, 1716, 1705] -Triangle: [1709, 1717, 1706] -Triangle: [1708, 1719, 1718] -Triangle: [1710, 1720, 1719] -Triangle: [1717, 1709, 1718] -Triangle: [1716, 1717, 1721] -Triangle: [1723, 1715, 1716] -Triangle: [1724, 1714, 1715] -Triangle: [1725, 1713, 1714] -Triangle: [1712, 1713, 1725] -Triangle: [1727, 1711, 1712] -Triangle: [1720, 1710, 1711] -Triangle: [1729, 1728, 1727] -Triangle: [1730, 1729, 1726] -Triangle: [1724, 1731, 1730] -Triangle: [1732, 1731, 1724] -Triangle: [1722, 1733, 1732] -Triangle: [1734, 1733, 1722] -Triangle: [1735, 1734, 1721] -Triangle: [1719, 1736, 1735] -Triangle: [1720, 1737, 1736] -Triangle: [1737, 1720, 1727] -Triangle: [1740, 1729, 1730] -Triangle: [1728, 1729, 1740] -Triangle: [1742, 1737, 1728] -Triangle: [1743, 1736, 1737] -Triangle: [1735, 1736, 1743] -Triangle: [1745, 1734, 1735] -Triangle: [1733, 1734, 1745] -Triangle: [1732, 1733, 1746] -Triangle: [1731, 1732, 1747] -Triangle: [1748, 1738, 1730] -Triangle: [1739, 1738, 1748] -Triangle: [1752, 1751, 1748] -Triangle: [1753, 1752, 1747] -Triangle: [1754, 1753, 1746] -Triangle: [1744, 1755, 1754] -Triangle: [1756, 1755, 1744] -Triangle: [1757, 1756, 1743] -Triangle: [1758, 1757, 1742] -Triangle: [1740, 1759, 1758] -Triangle: [1759, 1740, 1738] -Triangle: [1760, 1759, 1739] -Triangle: [1761, 1760, 1749] -Triangle: [1762, 1749, 1739] -Triangle: [1763, 1750, 1749] -Triangle: [1765, 1764, 1763] -Triangle: [1766, 1765, 1762] -Triangle: [1767, 1766, 1751] -Triangle: [1753, 1768, 1767] -Triangle: [1769, 1768, 1753] -Triangle: [1755, 1770, 1769] -Triangle: [1771, 1770, 1755] -Triangle: [1772, 1771, 1756] -Triangle: [1773, 1772, 1757] -Triangle: [1759, 1774, 1773] -Triangle: [1760, 1775, 1774] -Triangle: [1761, 1776, 1775] -Triangle: [1750, 1777, 1776] -Triangle: [1777, 1750, 1763] -Triangle: [1779, 1778, 1770] -Triangle: [1772, 1780, 1779] -Triangle: [1773, 1781, 1780] -Triangle: [1779, 1780, 1781] -Triangle: [1774, 1783, 1781] -Triangle: [1775, 1784, 1783] -Triangle: [1782, 1781, 1783] -Triangle: [1784, 1786, 1785] -Triangle: [1778, 1779, 1782] -Triangle: [1778, 1768, 1769] -Triangle: [1787, 1767, 1768] -Triangle: [1785, 1788, 1787] -Triangle: [1788, 1766, 1767] -Triangle: [1786, 1789, 1788] -Triangle: [1789, 1765, 1766] -Triangle: [1776, 1790, 1784] -Triangle: [1777, 1791, 1790] -Triangle: [1792, 1791, 1777] -Triangle: [1786, 1784, 1790] -Triangle: [1793, 1790, 1791] -Triangle: [1789, 1786, 1793] -Triangle: [1765, 1789, 1792] -Triangle: [1806, 1794, 1795] -Triangle: [1807, 1795, 1796] -Triangle: [1808, 1796, 1797] -Triangle: [1810, 1809, 1797] -Triangle: [1811, 1810, 1798] -Triangle: [1812, 1811, 1799] -Triangle: [1812, 1800, 1801] -Triangle: [1814, 1813, 1801] -Triangle: [1814, 1802, 1803] -Triangle: [1816, 1815, 1803] -Triangle: [1816, 1804, 1805] -Triangle: [1817, 1818, 1819] -Triangle: [1815, 1816, 1819] -Triangle: [1812, 1821, 1832] -Triangle: [1821, 1812, 1813] -Triangle: [1840, 1813, 1839] -Triangle: [1841, 1839, 1838] -Triangle: [1843, 2039, 2044] -Triangle: [1844, 1843, 1837] -Triangle: [1845, 1844, 1836] -Triangle: [1845, 1835, 1834] -Triangle: [1846, 1834, 1833] -Triangle: [1832, 1847, 1833] -Triangle: [1848, 1832, 1821] -Triangle: [1849, 1848, 1822] -Triangle: [1850, 1849, 1823] -Triangle: [1851, 1850, 1824] -Triangle: [1851, 1825, 1826] -Triangle: [1852, 1826, 1827] -Triangle: [1853, 1827, 1828] -Triangle: [1854, 1828, 1829] -Triangle: [1855, 1829, 1830] -Triangle: [1856, 1830, 1831] -Triangle: [1847, 1832, 1848] -Triangle: [1847, 1858, 1859] -Triangle: [1845, 1846, 1859] -Triangle: [1844, 1845, 1860] -Triangle: [1844, 1861, 1862] -Triangle: [2039, 2043, 1863] -Triangle: [1822, 1821, 1840] -Triangle: [1823, 1822, 1864] -Triangle: [1824, 1823, 1865] -Triangle: [1825, 1824, 1866] -Triangle: [1826, 1825, 1867] -Triangle: [1826, 1868, 1869] -Triangle: [1827, 1869, 1870] -Triangle: [1829, 1828, 1870] -Triangle: [1830, 1829, 1871] -Triangle: [1830, 1872, 1873] -Triangle: [1864, 1840, 1841] -Triangle: [1865, 1864, 1874] -Triangle: [1866, 1865, 1875] -Triangle: [1867, 1866, 1876] -Triangle: [1868, 1867, 1877] -Triangle: [1869, 1868, 1878] -Triangle: [1870, 1869, 1879] -Triangle: [1871, 1870, 1880] -Triangle: [1872, 1871, 1881] -Triangle: [1873, 1872, 1882] -Triangle: [1874, 1841, 1842] -Triangle: [1875, 1874, 1863] -Triangle: [1876, 1875, 1884] -Triangle: [1877, 1876, 1885] -Triangle: [1878, 1877, 1886] -Triangle: [1879, 1878, 1887] -Triangle: [1880, 1879, 1888] -Triangle: [1881, 1880, 1889] -Triangle: [1882, 1881, 1890] -Triangle: [1883, 1882, 1891] -Triangle: [2037, 2043, 1862] -Triangle: [1885, 1884, 2037] -Triangle: [1885, 2040, 2045] -Triangle: [1886, 2045, 2046] -Triangle: [1888, 1887, 2046] -Triangle: [1889, 1888, 2050] -Triangle: [1890, 1889, 2053] -Triangle: [1891, 1890, 2047] -Triangle: [1891, 2038, 2041] -Triangle: [1902, 1893, 1862] -Triangle: [1893, 1902, 1903] -Triangle: [1894, 1903, 1904] -Triangle: [1895, 1904, 1905] -Triangle: [1896, 1905, 1906] -Triangle: [1898, 1897, 1906] -Triangle: [1899, 1898, 1907] -Triangle: [1899, 1908, 1909] -Triangle: [1901, 1900, 1909] -Triangle: [1911, 1902, 1861] -Triangle: [1902, 1911, 1912] -Triangle: [1903, 1912, 1913] -Triangle: [1904, 1913, 1914] -Triangle: [1905, 1914, 1915] -Triangle: [1906, 1915, 1916] -Triangle: [1908, 1907, 1916] -Triangle: [1908, 1917, 1918] -Triangle: [1910, 1909, 1918] -Triangle: [1920, 1911, 1860] -Triangle: [1921, 1920, 1859] -Triangle: [1921, 1858, 1848] -Triangle: [1922, 1921, 1849] -Triangle: [1920, 1921, 1922] -Triangle: [1911, 1920, 1923] -Triangle: [1924, 1922, 1850] -Triangle: [1923, 1922, 1924] -Triangle: [1912, 1923, 1925] -Triangle: [1926, 1924, 1851] -Triangle: [1925, 1924, 1926] -Triangle: [1913, 1925, 1927] -Triangle: [1926, 1852, 1853] -Triangle: [1927, 1926, 1928] -Triangle: [1914, 1927, 1929] -Triangle: [1928, 1853, 1854] -Triangle: [1929, 1928, 1930] -Triangle: [1915, 1929, 1931] -Triangle: [1930, 1854, 1855] -Triangle: [1931, 1930, 1932] -Triangle: [1917, 1916, 1931] -Triangle: [1932, 1855, 1856] -Triangle: [1933, 1932, 1934] -Triangle: [1918, 1917, 1933] -Triangle: [1919, 1918, 1935] -Triangle: [1937, 1936, 1935] -Triangle: [1934, 1856, 1857] -Triangle: [1809, 1810, 1811] -Triangle: [1808, 1809, 1833] -Triangle: [1808, 1938, 1939] -Triangle: [1806, 1807, 1939] -Triangle: [1941, 1938, 1833] -Triangle: [1938, 1941, 1942] -Triangle: [1940, 1939, 1942] -Triangle: [1834, 1944, 1945] -Triangle: [1941, 1945, 1946] -Triangle: [1943, 1942, 1946] -Triangle: [1948, 1947, 1946] -Triangle: [1950, 1949, 1946] -Triangle: [1950, 1945, 1944] -Triangle: [1944, 1834, 1835] -Triangle: [1952, 1835, 1836] -Triangle: [1953, 1836, 1837] -Triangle: [1951, 1944, 1952] -Triangle: [1955, 1952, 1953] -Triangle: [1956, 1953, 1954] -Triangle: [1958, 1948, 1949] -Triangle: [1960, 1959, 1949] -Triangle: [1960, 1950, 1951] -Triangle: [1961, 1951, 1955] -Triangle: [1962, 1955, 1956] -Triangle: [1963, 1956, 1957] -Triangle: [1966, 1965, 1958] -Triangle: [1967, 1966, 1959] -Triangle: [1967, 1960, 1961] -Triangle: [1968, 1961, 1962] -Triangle: [1969, 1962, 1963] -Triangle: [1970, 1963, 1964] -Triangle: [1815, 1820, 1972] -Triangle: [1839, 1813, 1814] -Triangle: [1839, 1972, 1973] -Triangle: [1974, 2042, 2044] -Triangle: [1974, 1838, 1973] -Triangle: [1954, 2042, 2048] -Triangle: [1964, 1957, 2048] -Triangle: [1964, 2049, 2052] -Triangle: [1978, 1965, 1966] -Triangle: [1980, 1979, 1966] -Triangle: [1980, 1967, 1968] -Triangle: [1981, 1968, 1969] -Triangle: [1983, 1982, 1969] -Triangle: [1984, 1983, 1970] -Triangle: [1985, 2055, 2052] -Triangle: [1986, 1973, 1972] -Triangle: [1987, 1986, 1820] -Triangle: [1987, 1819, 1818] -Triangle: [1973, 1986, 1989] -Triangle: [1989, 1986, 1987] -Triangle: [1989, 1988, 1990] -Triangle: [1975, 1989, 1991] -Triangle: [1976, 1991, 1992] -Triangle: [1993, 1992, 1991] -Triangle: [1977, 1992, 1994] -Triangle: [1995, 1994, 1992] -Triangle: [1996, 1978, 1979] -Triangle: [1997, 1979, 1980] -Triangle: [1999, 1998, 1980] -Triangle: [1999, 1981, 1982] -Triangle: [2000, 1982, 1983] -Triangle: [1995, 2008, 2009] -Triangle: [1985, 1994, 2009] -Triangle: [2055, 2054, 2011] -Triangle: [2001, 1983, 1984] -Triangle: [2012, 2009, 2008] -Triangle: [2009, 2012, 2013] -Triangle: [2011, 2054, 2036] -Triangle: [2001, 2011, 2014] -Triangle: [2001, 2015, 2016] -Triangle: [1999, 2000, 2016] -Triangle: [1998, 1999, 2017] -Triangle: [1997, 1998, 2018] -Triangle: [2002, 1996, 1997] -Triangle: [2002, 2019, 2020] -Triangle: [2021, 2020, 2019] -Triangle: [2022, 2021, 2018] -Triangle: [2022, 2017, 2016] -Triangle: [2023, 2016, 2015] -Triangle: [2024, 2015, 2014] -Triangle: [2026, 2056, 2036] -Triangle: [2027, 2026, 2013] -Triangle: [2012, 2007, 2006] -Triangle: [2027, 2006, 2005] -Triangle: [2026, 2027, 2028] -Triangle: [2025, 2056, 2051] -Triangle: [2024, 2025, 2030] -Triangle: [2023, 2024, 2031] -Triangle: [2022, 2023, 2032] -Triangle: [2021, 2022, 2033] -Triangle: [2020, 2021, 2034] -Triangle: [2003, 2020, 2035] -Triangle: [2047, 1899, 1900] -Triangle: [2043, 2039, 1843] -Triangle: [2047, 2053, 1898] -Triangle: [2056, 2025, 2014] -Triangle: [2052, 2055, 1984] -Triangle: [2038, 1900, 1901] -Triangle: [2054, 2055, 1985] -Triangle: [2056, 2026, 2029] -Triangle: [2054, 2010, 2013] -Triangle: [2053, 2050, 1897] -Triangle: [2042, 1954, 1837] -Triangle: [2042, 1974, 1975] -Triangle: [2048, 1975, 1976] -Triangle: [2043, 2037, 1884] -Triangle: [2049, 1976, 1977] -Triangle: [2037, 1893, 1894] -Triangle: [2040, 1894, 1895] -Triangle: [2044, 2039, 1842] -Triangle: [2045, 1895, 1896] -Triangle: [2046, 1896, 1897] -Triangle: [2057, 1794, 1806] -Triangle: [2058, 2057, 2067] -Triangle: [2059, 2058, 2068] -Triangle: [2070, 2060, 2059] -Triangle: [2071, 2061, 2060] -Triangle: [2072, 2062, 2061] -Triangle: [2063, 2062, 2072] -Triangle: [2074, 2064, 2063] -Triangle: [2065, 2064, 2074] -Triangle: [2076, 2066, 2065] -Triangle: [1805, 2066, 2076] -Triangle: [2077, 1818, 1817] -Triangle: [2075, 2078, 2077] -Triangle: [2090, 2079, 2072] -Triangle: [2073, 2072, 2079] -Triangle: [2097, 2073, 2098] -Triangle: [2096, 2097, 2099] -Triangle: [2101, 2095, 2283] -Triangle: [2102, 2094, 2095] -Triangle: [2103, 2093, 2094] -Triangle: [2092, 2093, 2103] -Triangle: [2091, 2092, 2104] -Triangle: [2090, 2071, 2091] -Triangle: [2106, 2080, 2079] -Triangle: [2107, 2081, 2080] -Triangle: [2108, 2082, 2081] -Triangle: [2109, 2083, 2082] -Triangle: [2084, 2083, 2109] -Triangle: [2085, 2084, 2110] -Triangle: [2086, 2085, 2111] -Triangle: [2087, 2086, 2112] -Triangle: [2088, 2087, 2113] -Triangle: [2089, 2088, 2114] -Triangle: [2105, 2116, 2106] -Triangle: [2117, 2116, 2105] -Triangle: [2103, 2118, 2117] -Triangle: [2102, 2119, 2118] -Triangle: [2120, 2119, 2102] -Triangle: [2121, 2282, 2278] -Triangle: [2080, 2122, 2098] -Triangle: [2081, 2123, 2122] -Triangle: [2082, 2124, 2123] -Triangle: [2083, 2125, 2124] -Triangle: [2084, 2126, 2125] -Triangle: [2127, 2126, 2084] -Triangle: [2128, 2127, 2085] -Triangle: [2087, 2129, 2128] -Triangle: [2088, 2130, 2129] -Triangle: [2131, 2130, 2088] -Triangle: [2099, 2098, 2122] -Triangle: [2123, 2133, 2132] -Triangle: [2124, 2134, 2133] -Triangle: [2125, 2135, 2134] -Triangle: [2126, 2136, 2135] -Triangle: [2127, 2137, 2136] -Triangle: [2128, 2138, 2137] -Triangle: [2129, 2139, 2138] -Triangle: [2130, 2140, 2139] -Triangle: [2131, 2141, 2140] -Triangle: [2132, 2121, 2100] -Triangle: [2133, 2142, 2121] -Triangle: [2134, 2143, 2142] -Triangle: [2135, 2144, 2143] -Triangle: [2136, 2145, 2144] -Triangle: [2137, 2146, 2145] -Triangle: [2138, 2147, 2146] -Triangle: [2139, 2148, 2147] -Triangle: [2140, 2149, 2148] -Triangle: [2141, 2150, 2149] -Triangle: [2120, 2282, 2276] -Triangle: [2143, 2279, 2276] -Triangle: [2284, 2279, 2143] -Triangle: [2285, 2284, 2144] -Triangle: [2146, 2289, 2285] -Triangle: [2147, 2292, 2289] -Triangle: [2148, 2286, 2292] -Triangle: [2149, 2277, 2286] -Triangle: [2280, 2277, 2149] -Triangle: [2160, 2119, 2120] -Triangle: [2161, 2160, 2151] -Triangle: [2162, 2161, 2152] -Triangle: [2163, 2162, 2153] -Triangle: [2164, 2163, 2154] -Triangle: [2156, 2165, 2164] -Triangle: [2157, 2166, 2165] -Triangle: [2167, 2166, 2157] -Triangle: [2159, 2168, 2167] -Triangle: [2169, 2118, 2119] -Triangle: [2170, 2169, 2160] -Triangle: [2171, 2170, 2161] -Triangle: [2172, 2171, 2162] -Triangle: [2173, 2172, 2163] -Triangle: [2174, 2173, 2164] -Triangle: [2166, 2175, 2174] -Triangle: [2176, 2175, 2166] -Triangle: [2168, 2177, 2176] -Triangle: [2178, 2117, 2118] -Triangle: [2179, 2116, 2117] -Triangle: [2179, 2107, 2106] -Triangle: [2180, 2108, 2107] -Triangle: [2178, 2181, 2180] -Triangle: [2181, 2178, 2169] -Triangle: [2182, 2109, 2108] -Triangle: [2181, 2183, 2182] -Triangle: [2183, 2181, 2170] -Triangle: [2184, 2110, 2109] -Triangle: [2183, 2185, 2184] -Triangle: [2185, 2183, 2171] -Triangle: [2111, 2110, 2184] -Triangle: [2185, 2187, 2186] -Triangle: [2187, 2185, 2172] -Triangle: [2112, 2111, 2186] -Triangle: [2187, 2189, 2188] -Triangle: [2189, 2187, 2173] -Triangle: [2113, 2112, 2188] -Triangle: [2189, 2191, 2190] -Triangle: [2175, 2191, 2189] -Triangle: [2114, 2113, 2190] -Triangle: [2191, 2193, 2192] -Triangle: [2176, 2193, 2191] -Triangle: [2177, 2194, 2193] -Triangle: [2195, 2192, 2193] -Triangle: [2115, 2114, 2192] -Triangle: [2069, 2091, 2071] -Triangle: [2068, 2196, 2091] -Triangle: [2197, 2196, 2068] -Triangle: [1806, 1940, 2197] -Triangle: [2198, 2092, 2091] -Triangle: [2199, 2198, 2196] -Triangle: [1940, 1943, 2199] -Triangle: [2201, 2200, 2092] -Triangle: [2202, 2201, 2198] -Triangle: [1943, 1947, 2202] -Triangle: [2202, 1947, 1948] -Triangle: [2204, 2201, 2202] -Triangle: [2200, 2201, 2204] -Triangle: [2093, 2092, 2200] -Triangle: [2094, 2093, 2206] -Triangle: [2095, 2094, 2207] -Triangle: [2205, 2209, 2206] -Triangle: [2207, 2206, 2209] -Triangle: [2208, 2207, 2210] -Triangle: [2203, 1948, 1958] -Triangle: [2213, 2204, 2203] -Triangle: [2205, 2204, 2213] -Triangle: [2209, 2205, 2214] -Triangle: [2210, 2209, 2215] -Triangle: [2211, 2210, 2216] -Triangle: [2218, 2212, 1958] -Triangle: [2219, 2213, 2212] -Triangle: [2214, 2213, 2219] -Triangle: [2215, 2214, 2220] -Triangle: [2216, 2215, 2221] -Triangle: [2217, 2216, 2222] -Triangle: [2224, 2078, 2075] -Triangle: [2097, 2224, 2074] -Triangle: [2225, 2224, 2097] -Triangle: [2283, 2281, 2226] -Triangle: [2225, 2096, 2226] -Triangle: [2287, 2281, 2208] -Triangle: [2217, 2288, 2287] -Triangle: [2291, 2288, 2217] -Triangle: [2218, 1965, 1978] -Triangle: [2231, 2219, 2218] -Triangle: [2220, 2219, 2231] -Triangle: [2221, 2220, 2232] -Triangle: [2234, 2222, 2221] -Triangle: [2235, 2223, 2222] -Triangle: [2236, 2229, 2291] -Triangle: [2237, 2078, 2224] -Triangle: [2238, 2077, 2078] -Triangle: [1818, 2077, 2238] -Triangle: [2239, 2237, 2225] -Triangle: [2239, 1988, 2238] -Triangle: [2239, 2240, 1990] -Triangle: [2240, 2239, 2227] -Triangle: [2241, 2240, 2228] -Triangle: [1993, 1990, 2240] -Triangle: [2242, 2241, 2229] -Triangle: [1995, 1993, 2241] -Triangle: [2230, 1978, 1996] -Triangle: [2231, 2230, 2243] -Triangle: [2245, 2232, 2231] -Triangle: [2233, 2232, 2245] -Triangle: [2234, 2233, 2246] -Triangle: [2248, 2008, 1995] -Triangle: [2236, 2249, 2248] -Triangle: [2250, 2293, 2294] -Triangle: [2247, 2250, 2235] -Triangle: [2251, 2007, 2008] -Triangle: [2252, 2251, 2248] -Triangle: [2250, 2253, 2275] -Triangle: [2247, 2254, 2253] -Triangle: [2255, 2254, 2247] -Triangle: [2245, 2256, 2255] -Triangle: [2244, 2257, 2256] -Triangle: [2243, 2258, 2257] -Triangle: [2002, 2258, 2243] -Triangle: [2259, 2258, 2002] -Triangle: [2260, 2257, 2258] -Triangle: [2261, 2256, 2257] -Triangle: [2255, 2256, 2261] -Triangle: [2254, 2255, 2262] -Triangle: [2253, 2254, 2263] -Triangle: [2265, 2252, 2275] -Triangle: [2266, 2251, 2252] -Triangle: [2006, 2007, 2251] -Triangle: [2005, 2006, 2266] -Triangle: [2265, 2268, 2267] -Triangle: [2264, 2269, 2290] -Triangle: [2263, 2270, 2269] -Triangle: [2262, 2271, 2270] -Triangle: [2261, 2272, 2271] -Triangle: [2260, 2273, 2272] -Triangle: [2259, 2274, 2273] -Triangle: [2274, 2259, 2003] -Triangle: [2158, 2157, 2286] -Triangle: [2282, 2120, 2101] -Triangle: [2286, 2157, 2156] -Triangle: [2253, 2264, 2295] -Triangle: [2291, 2223, 2235] -Triangle: [2159, 2158, 2277] -Triangle: [2293, 2249, 2236] -Triangle: [2268, 2265, 2295] -Triangle: [2252, 2249, 2293] -Triangle: [2292, 2156, 2155] -Triangle: [2095, 2208, 2281] -Triangle: [2227, 2226, 2281] -Triangle: [2228, 2227, 2287] -Triangle: [2282, 2121, 2142] -Triangle: [2229, 2228, 2288] -Triangle: [2152, 2151, 2276] -Triangle: [2153, 2152, 2279] -Triangle: [2283, 2096, 2100] -Triangle: [2154, 2153, 2284] -Triangle: [2155, 2154, 2285] -=== Vertex Weights === -Vertex 0: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8315397500991821 -Vertex 1: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8143476247787476 - Group: 'Bone.009', Weight: 0.0033244614023715258 - Group: 'Bone.008', Weight: 0.0 -Vertex 2: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8450585603713989 - Group: 'Bone.008', Weight: 0.07752390950918198 - Group: 'Bone.009', Weight: 0.008560506626963615 -Vertex 3: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8302177786827087 - Group: 'Bone.008', Weight: 0.08387085050344467 - Group: 'Bone.009', Weight: 0.11073724180459976 -Vertex 4: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8389293551445007 - Group: 'Bone.009', Weight: 0.07985740154981613 -Vertex 5: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8412657380104065 - Group: 'Bone.009', Weight: 0.012456611730158329 -Vertex 6: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7005561590194702 - Group: 'Bone.009', Weight: 0.0003061115276068449 - Group: 'Bone.008', Weight: 0.0 -Vertex 7: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3067469894886017 - Group: 'Bone.008', Weight: 0.01581425592303276 - Group: 'Bone.009', Weight: 0.0037508239038288593 -Vertex 8: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1308002918958664 - Group: 'Bone.008', Weight: 0.0032931258901953697 - Group: 'Bone.009', Weight: 0.04014693945646286 -Vertex 9: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1828787475824356 - Group: 'Bone.008', Weight: 0.0075554256327450275 - Group: 'Bone.009', Weight: 0.0164619293063879 -Vertex 10: -Vertex groups: 0 -Vertex 11: -Vertex groups: 4 - Group: 'Bone', Weight: 0.034587327390909195 - Group: 'Bone.010', Weight: 0.101443812251091 - Group: 'Bone.008', Weight: 0.2505224645137787 - Group: 'Bone.009', Weight: 0.026186540722846985 -Vertex 12: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2481248825788498 - Group: 'Bone.008', Weight: 0.23382732272148132 - Group: 'Bone.010', Weight: 0.0019998119678348303 -Vertex 13: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6989924311637878 -Vertex 14: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9122642278671265 -Vertex 15: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9458290338516235 -Vertex 16: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9137246012687683 -Vertex 17: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8518506288528442 -Vertex 18: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6257598996162415 -Vertex 19: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5473760962486267 -Vertex 20: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5717806220054626 - Group: 'Bone.009', Weight: 0.03226495534181595 -Vertex 21: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6699727773666382 - Group: 'Bone.008', Weight: 0.18637876212596893 - Group: 'Bone.009', Weight: 0.0869089663028717 -Vertex 22: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6612601280212402 - Group: 'Bone.008', Weight: 0.3086215853691101 - Group: 'Bone.009', Weight: 0.14881721138954163 -Vertex 23: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5074735283851624 - Group: 'Bone.008', Weight: 0.3086419701576233 - Group: 'Bone.009', Weight: 0.092801533639431 -Vertex 24: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4888991117477417 - Group: 'Bone.008', Weight: 0.004032468888908625 - Group: 'Bone.009', Weight: 0.09302686899900436 -Vertex 25: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6198515295982361 - Group: 'Bone.008', Weight: 0.0005381823284551501 - Group: 'Bone.009', Weight: 0.1514141857624054 -Vertex 26: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20597100257873535 - Group: 'Bone.008', Weight: 0.001025953097268939 - Group: 'Bone.009', Weight: 0.12164165079593658 -Vertex 27: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22974184155464172 - Group: 'Bone.008', Weight: 0.11509574949741364 - Group: 'Bone.009', Weight: 0.09273626655340195 -Vertex 28: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2635626494884491 - Group: 'Bone.008', Weight: 0.2749801576137543 - Group: 'Bone.009', Weight: 0.09298611432313919 -Vertex 29: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3650016188621521 - Group: 'Bone.008', Weight: 0.30831316113471985 - Group: 'Bone.009', Weight: 0.1106276884675026 -Vertex 30: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33307603001594543 - Group: 'Bone.008', Weight: 0.2275260090827942 - Group: 'Bone.009', Weight: 0.10298390686511993 -Vertex 31: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25266033411026 - Group: 'Bone.008', Weight: 0.023222647607326508 - Group: 'Bone.009', Weight: 0.09362544119358063 -Vertex 32: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23366031050682068 - Group: 'Bone.008', Weight: 0.16746746003627777 - Group: 'Bone.009', Weight: 0.0650448203086853 -Vertex 33: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2641541659832001 - Group: 'Bone.008', Weight: 0.21269087493419647 - Group: 'Bone.009', Weight: 0.0010637399973347783 -Vertex 34: -Vertex groups: 4 - Group: 'Bone', Weight: 0.039555374532938004 - Group: 'Bone.010', Weight: 0.1003161072731018 - Group: 'Bone.008', Weight: 0.24317529797554016 - Group: 'Bone.009', Weight: 0.2619321346282959 -Vertex 35: -Vertex groups: 4 - Group: 'Bone', Weight: 0.02327616512775421 - Group: 'Bone.010', Weight: 0.0033185486681759357 - Group: 'Bone.008', Weight: 0.2479415386915207 - Group: 'Bone.009', Weight: 0.09304294735193253 -Vertex 36: -Vertex groups: 3 - Group: 'Bone', Weight: 0.02347312681376934 - Group: 'Bone.008', Weight: 0.0304879117757082 - Group: 'Bone.009', Weight: 0.09264646470546722 -Vertex 37: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04302774742245674 - Group: 'Bone.008', Weight: 0.2182426005601883 - Group: 'Bone.009', Weight: 0.10579723864793777 -Vertex 38: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05339493602514267 - Group: 'Bone.008', Weight: 0.23093903064727783 - Group: 'Bone.009', Weight: 0.11806934326887131 -Vertex 39: -Vertex groups: 3 - Group: 'Bone', Weight: 0.029064984992146492 - Group: 'Bone.008', Weight: 0.00766344740986824 - Group: 'Bone.009', Weight: 0.09402693808078766 -Vertex 40: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00859028846025467 - Group: 'Bone.008', Weight: 9.342086741526145e-06 - Group: 'Bone.009', Weight: 0.09358830004930496 -Vertex 41: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0001453351869713515 - Group: 'Bone.010', Weight: 0.0022536965552717447 - Group: 'Bone.008', Weight: 0.005804745946079493 - Group: 'Bone.009', Weight: 0.10984180122613907 -Vertex 42: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16715717315673828 - Group: 'Bone.008', Weight: 0.0011449148878455162 - Group: 'Bone.009', Weight: 0.41877761483192444 -Vertex 43: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.1628187894821167 - Group: 'Bone.008', Weight: 0.0003177660400979221 - Group: 'Bone.009', Weight: 0.0035258005373179913 -Vertex 44: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03676394373178482 - Group: 'Bone.009', Weight: 0.8703621029853821 -Vertex 45: -Vertex groups: 2 - Group: 'Bone.010', Weight: 1.0739483514043968e-05 - Group: 'Bone.009', Weight: 0.8632429838180542 -Vertex 46: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8316174745559692 -Vertex 47: -Vertex groups: 2 - Group: 'Bone.008', Weight: 1.106608488044003e-05 - Group: 'Bone.009', Weight: 0.8702312707901001 -Vertex 48: -Vertex groups: 2 - Group: 'Bone.008', Weight: 0.15716412663459778 - Group: 'Bone.009', Weight: 0.8619480729103088 -Vertex 49: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8524593114852905 - Group: 'Bone.008', Weight: 0.0 -Vertex 50: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8655648827552795 -Vertex 51: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.12122143805027008 - Group: 'Bone.009', Weight: 0.8640750646591187 -Vertex 52: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16048108041286469 - Group: 'Bone.009', Weight: 0.8673641085624695 -Vertex 53: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.17057423293590546 - Group: 'Bone.009', Weight: 0.6699912548065186 -Vertex 54: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8303468227386475 -Vertex 55: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8395971059799194 -Vertex 56: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.009', Weight: 0.8701422810554504 -Vertex 57: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.021334383636713028 - Group: 'Bone.009', Weight: 0.7884505987167358 -Vertex 58: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.02434847690165043 - Group: 'Bone.009', Weight: 0.6565549969673157 -Vertex 59: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8208313584327698 -Vertex 60: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.8679424524307251 -Vertex 61: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6943413615226746 -Vertex 62: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.6716309785842896 -Vertex 63: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.5808820724487305 -Vertex 64: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8336151838302612 -Vertex 65: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8547230958938599 - Group: 'Bone.007', Weight: 0.14789333939552307 - Group: 'Bone.010', Weight: 0.0 -Vertex 66: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8172892332077026 - Group: 'Bone.007', Weight: 0.10046546906232834 - Group: 'Bone.010', Weight: 0.0 -Vertex 67: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8217595219612122 - Group: 'Bone.010', Weight: 0.0 -Vertex 68: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8495256900787354 - Group: 'Bone.007', Weight: 0.06864448636770248 -Vertex 69: -Vertex groups: 1 - Group: 'Bone', Weight: 0.901964545249939 -Vertex 70: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8839232921600342 -Vertex 71: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8557966947555542 - Group: 'Bone.007', Weight: 0.11959536373615265 -Vertex 72: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7365334630012512 - Group: 'Bone.010', Weight: 0.003783507738262415 -Vertex 73: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7422837615013123 - Group: 'Bone.010', Weight: 0.04122956469655037 - Group: 'Bone.007', Weight: 0.0 -Vertex 74: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7122581005096436 - Group: 'Bone.007', Weight: 0.0003284413833171129 - Group: 'Bone.010', Weight: 0.0023578661493957043 -Vertex 75: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6677036285400391 - Group: 'Bone.007', Weight: 0.4705052077770233 - Group: 'Bone.010', Weight: 0.0006835730746388435 -Vertex 76: -Vertex groups: 3 - Group: 'Bone', Weight: 0.48858147859573364 - Group: 'Bone.007', Weight: 0.16602855920791626 - Group: 'Bone.010', Weight: 0.0 -Vertex 77: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2617844045162201 - Group: 'Bone.007', Weight: 0.04999219998717308 - Group: 'Bone.010', Weight: 0.0 -Vertex 78: -Vertex groups: 2 - Group: 'Bone', Weight: 0.36231184005737305 - Group: 'Bone.007', Weight: 0.4256207048892975 -Vertex 79: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6108972430229187 -Vertex 80: -Vertex groups: 1 - Group: 'Bone', Weight: 0.20427511632442474 -Vertex 81: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15736737847328186 - Group: 'Bone.007', Weight: 0.29924213886260986 - Group: 'Bone.010', Weight: 9.336799121228978e-05 -Vertex 82: -Vertex groups: 2 - Group: 'Bone', Weight: 0.09554968029260635 - Group: 'Bone.007', Weight: 0.000512006925418973 -Vertex 83: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20574864745140076 - Group: 'Bone.007', Weight: 0.006380013655871153 - Group: 'Bone.010', Weight: 0.00289147743023932 -Vertex 84: -Vertex groups: 3 - Group: 'Bone', Weight: 0.34839630126953125 - Group: 'Bone.007', Weight: 0.002132023684680462 - Group: 'Bone.010', Weight: 0.10003204643726349 -Vertex 85: -Vertex groups: 3 - Group: 'Bone', Weight: 0.39151227474212646 - Group: 'Bone.007', Weight: 0.00024305013357661664 - Group: 'Bone.010', Weight: 0.10545612871646881 -Vertex 86: -Vertex groups: 3 - Group: 'Bone', Weight: 0.41688039898872375 - Group: 'Bone.007', Weight: 7.275520601979224e-06 - Group: 'Bone.010', Weight: 0.021937424317002296 -Vertex 87: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3705100119113922 - Group: 'Bone.007', Weight: 0.06554674357175827 - Group: 'Bone.010', Weight: 0.0006588654359802604 - Group: 'Bone.008', Weight: 0.016118451952934265 -Vertex 88: -Vertex groups: 4 - Group: 'Bone', Weight: 0.06128508970141411 - Group: 'Bone.007', Weight: 0.0007682957220822573 - Group: 'Bone.010', Weight: 0.09269155561923981 - Group: 'Bone.008', Weight: 0.2029135823249817 -Vertex 89: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07299963384866714 - Group: 'Bone.007', Weight: 0.01709076389670372 - Group: 'Bone.010', Weight: 0.09268888831138611 -Vertex 90: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06668888032436371 - Group: 'Bone.007', Weight: 0.05638410151004791 - Group: 'Bone.010', Weight: 0.09189580380916595 -Vertex 91: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04424789547920227 - Group: 'Bone.010', Weight: 0.09393095970153809 - Group: 'Bone.007', Weight: 0.0 -Vertex 92: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015012932941317558 - Group: 'Bone.007', Weight: 0.004613017197698355 - Group: 'Bone.010', Weight: 0.20430979132652283 -Vertex 93: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001053761225193739 - Group: 'Bone.010', Weight: 0.09268993884325027 -Vertex 94: -Vertex groups: 2 - Group: 'Bone.007', Weight: 0.045314282178878784 - Group: 'Bone.010', Weight: 0.09574174880981445 -Vertex 95: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.14119015634059906 - Group: 'Bone.008', Weight: 0.0 -Vertex 96: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.16059067845344543 - Group: 'Bone.008', Weight: 0.0003765295259654522 - Group: 'Bone.009', Weight: 0.03685719147324562 -Vertex 97: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002299084881087765 - Group: 'Bone.010', Weight: 0.6493828296661377 - Group: 'Bone.008', Weight: 0.0003585341037251055 -Vertex 98: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.2669403553009033 -Vertex 99: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18036691844463348 -Vertex 100: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.16543646156787872 -Vertex 101: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.13970181345939636 -Vertex 102: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.5546066761016846 -Vertex 103: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8378808498382568 -Vertex 104: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456788659095764 -Vertex 105: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8391706347465515 -Vertex 106: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7866905331611633 -Vertex 107: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7261766195297241 -Vertex 108: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.6523840427398682 -Vertex 109: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7385373711585999 -Vertex 110: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7303377985954285 -Vertex 111: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.4014205038547516 -Vertex 112: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.23733967542648315 -Vertex 113: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7843165397644043 -Vertex 114: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8293202519416809 -Vertex 115: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.845062792301178 -Vertex 116: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8456740379333496 -Vertex 117: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7990322709083557 -Vertex 118: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00020367711840663105 - Group: 'Bone.018', Weight: 0.749129593372345 -Vertex 119: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00031280500115826726 - Group: 'Bone.018', Weight: 0.7472327351570129 -Vertex 120: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00446570198982954 - Group: 'Bone.018', Weight: 0.7480495572090149 -Vertex 121: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.035430990159511566 - Group: 'Bone.018', Weight: 0.7414318919181824 -Vertex 122: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010672667995095253 - Group: 'Bone.018', Weight: 0.7522467970848083 -Vertex 123: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035681191366165876 - Group: 'Bone.018', Weight: 0.7487795352935791 -Vertex 124: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00144757644739002 - Group: 'Bone.018', Weight: 0.7477709054946899 -Vertex 125: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.378927643410861e-05 - Group: 'Bone.018', Weight: 0.740982174873352 -Vertex 126: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010175970382988453 - Group: 'Bone.018', Weight: 0.7486632466316223 -Vertex 127: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.00014066346921e-05 - Group: 'Bone.018', Weight: 0.7482360601425171 -Vertex 128: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012922849273309112 - Group: 'Bone.018', Weight: 0.7453933954238892 -Vertex 129: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010002234485000372 - Group: 'Bone.018', Weight: 0.7457311749458313 -Vertex 130: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.018727803602814674 - Group: 'Bone.018', Weight: 0.7478769421577454 -Vertex 131: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00034209838486276567 - Group: 'Bone.018', Weight: 0.7395044565200806 -Vertex 132: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05566667392849922 - Group: 'Bone.018', Weight: 0.7450405955314636 -Vertex 133: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005298320669680834 - Group: 'Bone.018', Weight: 0.7504384517669678 -Vertex 134: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00029964782879687846 - Group: 'Bone.018', Weight: 0.7418761849403381 -Vertex 135: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0006629387498833239 - Group: 'Bone.018', Weight: 0.7517387270927429 -Vertex 136: -Vertex groups: 2 - Group: 'Bone.017', Weight: 3.3550179068697616e-05 - Group: 'Bone.018', Weight: 0.7504991888999939 -Vertex 137: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.288488657446578e-05 - Group: 'Bone.018', Weight: 0.7487190365791321 -Vertex 138: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.86213277024217e-05 - Group: 'Bone.018', Weight: 0.7469232678413391 -Vertex 139: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0035726476926356554 - Group: 'Bone.018', Weight: 0.7441123723983765 -Vertex 140: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03363566845655441 - Group: 'Bone.018', Weight: 0.7481564283370972 -Vertex 141: -Vertex groups: 2 - Group: 'Bone.017', Weight: 5.369989821701893e-07 - Group: 'Bone.018', Weight: 0.7497297525405884 -Vertex 142: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004442088305950165 - Group: 'Bone.018', Weight: 0.7506457567214966 -Vertex 143: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009493313729763031 - Group: 'Bone.018', Weight: 0.7390591502189636 -Vertex 144: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.428758883383125e-05 - Group: 'Bone.018', Weight: 0.7481715679168701 -Vertex 145: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0003232389863114804 - Group: 'Bone.018', Weight: 0.7462903261184692 -Vertex 146: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005733689293265343 - Group: 'Bone.018', Weight: 0.7471165060997009 -Vertex 147: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005780475214123726 - Group: 'Bone.018', Weight: 0.7405178546905518 -Vertex 148: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.562208364537582e-08 - Group: 'Bone.018', Weight: 0.7512484192848206 -Vertex 149: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.6728839657153003e-06 - Group: 'Bone.018', Weight: 0.7478084564208984 -Vertex 150: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0010125722037628293 - Group: 'Bone.018', Weight: 0.7468113899230957 -Vertex 151: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.910083852242678e-05 - Group: 'Bone.018', Weight: 0.7400684952735901 -Vertex 152: -Vertex groups: 2 - Group: 'Bone.017', Weight: 2.353617674089037e-06 - Group: 'Bone.018', Weight: 0.7477152347564697 -Vertex 153: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00015490154328290373 - Group: 'Bone.018', Weight: 0.747285008430481 -Vertex 154: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00036443700082600117 - Group: 'Bone.018', Weight: 0.7444723844528198 -Vertex 155: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07596500217914581 - Group: 'Bone.018', Weight: 0.7448127865791321 -Vertex 156: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008862231858074665 - Group: 'Bone.018', Weight: 0.7469308376312256 -Vertex 157: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0001955701009137556 - Group: 'Bone.018', Weight: 0.7385973334312439 -Vertex 158: -Vertex groups: 2 - Group: 'Bone.017', Weight: 7.859869219828397e-05 - Group: 'Bone.018', Weight: 0.7440967559814453 -Vertex 159: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0029648123309016228 - Group: 'Bone.018', Weight: 0.7494500875473022 -Vertex 160: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0012379423715174198 - Group: 'Bone.018', Weight: 0.7409542202949524 -Vertex 161: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00018972800171468407 - Group: 'Bone.018', Weight: 0.750741183757782 -Vertex 162: -Vertex groups: 2 - Group: 'Bone.017', Weight: 9.191290359922277e-07 - Group: 'Bone.018', Weight: 0.7495242953300476 -Vertex 163: -Vertex groups: 2 - Group: 'Bone.017', Weight: 8.8856766524259e-05 - Group: 'Bone.018', Weight: 0.7477620244026184 -Vertex 164: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01388330478221178 - Group: 'Bone.018', Weight: 0.7459882497787476 -Vertex 165: -Vertex groups: 2 - Group: 'Bone.017', Weight: 6.039819709258154e-06 - Group: 'Bone.018', Weight: 0.7431833744049072 -Vertex 166: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01372864842414856 - Group: 'Bone.018', Weight: 0.7471742033958435 -Vertex 167: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.00014914925850462168 - Group: 'Bone.018', Weight: 0.7487600445747375 -Vertex 168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 1.1839463809337758e-07 - Group: 'Bone.018', Weight: 0.7496767044067383 -Vertex 169: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05687437951564789 - Group: 'Bone.018', Weight: 0.7381536960601807 -Vertex 170: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790042638778687 - Group: 'Bone.017', Weight: 0.0 -Vertex 171: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833970069885254 - Group: 'Bone.017', Weight: 0.0 -Vertex 172: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.979261577129364 - Group: 'Bone.017', Weight: 0.0 -Vertex 173: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9836568236351013 - Group: 'Bone.017', Weight: 0.0 -Vertex 174: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9790231585502625 - Group: 'Bone.017', Weight: 0.0 -Vertex 175: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9832463264465332 - Group: 'Bone.017', Weight: 0.0 -Vertex 176: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9864148497581482 - Group: 'Bone.017', Weight: 0.0 -Vertex 177: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862503409385681 - Group: 'Bone.017', Weight: 0.0 -Vertex 178: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862217307090759 - Group: 'Bone.017', Weight: 0.0 -Vertex 179: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9881228804588318 - Group: 'Bone.017', Weight: 0.0 -Vertex 180: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880816340446472 - Group: 'Bone.017', Weight: 0.0 -Vertex 181: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880123138427734 - Group: 'Bone.017', Weight: 0.0 -Vertex 182: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916035532951355 - Group: 'Bone.017', Weight: 0.0 -Vertex 183: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917119741439819 - Group: 'Bone.017', Weight: 0.0 -Vertex 184: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934110045433044 - Group: 'Bone.017', Weight: 0.0 -Vertex 185: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934923648834229 - Group: 'Bone.017', Weight: 0.0 -Vertex 186: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945000410079956 -Vertex 187: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945690631866455 - Group: 'Bone.017', Weight: 0.0 -Vertex 188: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914810657501221 - Group: 'Bone.017', Weight: 0.0 -Vertex 189: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933579564094543 - Group: 'Bone.017', Weight: 0.0 -Vertex 190: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945342540740967 - Group: 'Bone.017', Weight: 0.0 -Vertex 191: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9771348834037781 - Group: 'Bone.017', Weight: 0.0 -Vertex 192: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.974912166595459 - Group: 'Bone.017', Weight: 0.0 -Vertex 193: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9714885950088501 - Group: 'Bone.017', Weight: 0.0 -Vertex 194: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9767542481422424 - Group: 'Bone.017', Weight: 0.0 -Vertex 195: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742428064346313 - Group: 'Bone.017', Weight: 0.0 -Vertex 196: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9716007709503174 - Group: 'Bone.017', Weight: 0.0 -Vertex 197: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9755378365516663 - Group: 'Bone.017', Weight: 0.0 -Vertex 198: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.003687721909955144 - Group: 'Bone.018', Weight: 0.9655312895774841 -Vertex 199: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002853635000064969 - Group: 'Bone.018', Weight: 0.9657177925109863 -Vertex 200: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011314040748402476 - Group: 'Bone.018', Weight: 0.9664182066917419 -Vertex 201: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.007677533198148012 - Group: 'Bone.018', Weight: 0.962121307849884 -Vertex 202: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728744029998779 - Group: 'Bone.017', Weight: 0.0 -Vertex 203: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9788740873336792 - Group: 'Bone.017', Weight: 0.0 -Vertex 204: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828624725341797 - Group: 'Bone.017', Weight: 0.0 -Vertex 205: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9874355792999268 - Group: 'Bone.017', Weight: 0.0 -Vertex 206: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9887207746505737 - Group: 'Bone.017', Weight: 0.0 -Vertex 207: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915487766265869 - Group: 'Bone.017', Weight: 0.0 -Vertex 208: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931787848472595 - Group: 'Bone.017', Weight: 0.0 -Vertex 209: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944591522216797 - Group: 'Bone.017', Weight: 0.0 -Vertex 210: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01417626067996025 - Group: 'Bone.018', Weight: 0.9585090279579163 -Vertex 211: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02277289144694805 - Group: 'Bone.018', Weight: 0.9540501236915588 -Vertex 212: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01486360002309084 - Group: 'Bone.018', Weight: 0.9582902193069458 -Vertex 213: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014784167520701885 - Group: 'Bone.018', Weight: 0.9588325619697571 -Vertex 214: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01490477193146944 - Group: 'Bone.018', Weight: 0.9589837789535522 -Vertex 215: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.014289697632193565 - Group: 'Bone.018', Weight: 0.957975447177887 -Vertex 216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025188541039824486 - Group: 'Bone.018', Weight: 0.9528350830078125 -Vertex 217: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02491946704685688 - Group: 'Bone.018', Weight: 0.9530299305915833 -Vertex 218: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0067396280355751514 - Group: 'Bone.018', Weight: 0.9614914059638977 -Vertex 219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.027102485299110413 - Group: 'Bone.018', Weight: 0.951117753982544 -Vertex 220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01611153781414032 - Group: 'Bone.018', Weight: 0.9566596150398254 -Vertex 221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03587767109274864 - Group: 'Bone.018', Weight: 0.9461195468902588 -Vertex 222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04161665216088295 - Group: 'Bone.018', Weight: 0.942574679851532 -Vertex 223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04318999871611595 - Group: 'Bone.018', Weight: 0.9416161179542542 -Vertex 224: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9691005349159241 - Group: 'Bone.017', Weight: 0.0 -Vertex 225: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9765290021896362 - Group: 'Bone.017', Weight: 0.0 -Vertex 226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0030806250870227814 - Group: 'Bone.018', Weight: 0.9641690850257874 -Vertex 227: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9728686809539795 - Group: 'Bone.017', Weight: 0.0 -Vertex 228: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825234413146973 - Group: 'Bone.017', Weight: 0.0 -Vertex 229: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9878528118133545 - Group: 'Bone.017', Weight: 0.0 -Vertex 230: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9893949627876282 - Group: 'Bone.017', Weight: 0.0 -Vertex 231: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9912706017494202 - Group: 'Bone.017', Weight: 0.0 -Vertex 232: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9929388761520386 - Group: 'Bone.017', Weight: 0.0 -Vertex 233: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9943335056304932 - Group: 'Bone.017', Weight: 0.0 -Vertex 234: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9800970554351807 - Group: 'Bone.017', Weight: 0.0 -Vertex 235: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9858412742614746 - Group: 'Bone.017', Weight: 0.0 -Vertex 236: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886077642440796 - Group: 'Bone.017', Weight: 0.0 -Vertex 237: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9915378093719482 - Group: 'Bone.017', Weight: 0.0 -Vertex 238: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05645139142870903 - Group: 'Bone.018', Weight: 0.929306149482727 -Vertex 239: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0559069998562336 - Group: 'Bone.018', Weight: 0.9299478530883789 -Vertex 240: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05194986239075661 - Group: 'Bone.018', Weight: 0.9348273277282715 -Vertex 241: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.044112224131822586 - Group: 'Bone.018', Weight: 0.940864622592926 -Vertex 242: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.031984951347112656 - Group: 'Bone.018', Weight: 0.9482254385948181 -Vertex 243: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01783003658056259 - Group: 'Bone.018', Weight: 0.9563941359519958 -Vertex 244: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000892775075044483 - Group: 'Bone.018', Weight: 0.96749347448349 -Vertex 245: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9774545431137085 - Group: 'Bone.017', Weight: 0.0 -Vertex 246: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9860559105873108 - Group: 'Bone.017', Weight: 0.0 -Vertex 247: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9899418950080872 - Group: 'Bone.017', Weight: 0.0 -Vertex 248: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9919176697731018 - Group: 'Bone.017', Weight: 0.0 -Vertex 249: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9934722185134888 - Group: 'Bone.017', Weight: 0.0 -Vertex 250: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.992911696434021 - Group: 'Bone.017', Weight: 0.0 -Vertex 251: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9946200847625732 - Group: 'Bone.017', Weight: 0.0 -Vertex 252: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06852871179580688 - Group: 'Bone.018', Weight: 0.9142311215400696 - Group: 'Bone', Weight: 0.011654329486191273 -Vertex 253: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09742733091115952 - Group: 'Bone.018', Weight: 0.8781948685646057 -Vertex 254: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.143048495054245 - Group: 'Bone.018', Weight: 0.8214545249938965 -Vertex 255: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.005948338657617569 - Group: 'Bone.001', Weight: 0.002376176416873932 - Group: 'Bone.017', Weight: 0.26457101106643677 - Group: 'Bone.018', Weight: 0.6710951924324036 -Vertex 256: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06821998953819275 - Group: 'Bone.018', Weight: 0.914552628993988 - Group: 'Bone', Weight: 0.006249201484024525 -Vertex 257: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09550751745700836 - Group: 'Bone.018', Weight: 0.8804323673248291 -Vertex 258: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.14405816793441772 - Group: 'Bone.018', Weight: 0.8197418451309204 -Vertex 259: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.01679542288184166 - Group: 'Bone.017', Weight: 0.24199576675891876 - Group: 'Bone.018', Weight: 0.6974518895149231 -Vertex 260: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06388574093580246 - Group: 'Bone.018', Weight: 0.9198517799377441 - Group: 'Bone', Weight: 0.007894078269600868 -Vertex 261: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08717420697212219 - Group: 'Bone.018', Weight: 0.8906232714653015 -Vertex 262: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05898939445614815 - Group: 'Bone.018', Weight: 0.925841748714447 - Group: 'Bone', Weight: 0.007758659310638905 -Vertex 263: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05131097510457039 - Group: 'Bone.018', Weight: 0.9353311657905579 - Group: 'Bone', Weight: 0.0010817317524924874 -Vertex 264: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03234555199742317 - Group: 'Bone.018', Weight: 0.9479210376739502 -Vertex 265: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.008417460136115551 - Group: 'Bone.018', Weight: 0.9627565145492554 -Vertex 266: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9746601581573486 - Group: 'Bone.017', Weight: 0.0 -Vertex 267: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861724376678467 - Group: 'Bone.017', Weight: 0.0 -Vertex 268: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9905359148979187 - Group: 'Bone.017', Weight: 0.0 -Vertex 269: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9922621846199036 - Group: 'Bone.017', Weight: 0.0 -Vertex 270: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.994378387928009 - Group: 'Bone.017', Weight: 0.0 -Vertex 271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898079633712769 -Vertex 272: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873577356338501 - Group: 'Bone.017', Weight: 0.0 -Vertex 273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878015518188477 -Vertex 274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853216409683228 -Vertex 275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98234623670578 -Vertex 276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9739983677864075 -Vertex 277: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01460923533886671 - Group: 'Bone.018', Weight: 0.9587476849555969 -Vertex 278: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05056804418563843 - Group: 'Bone.018', Weight: 0.9357922077178955 - Group: 'Bone', Weight: 0.00042222143383696675 -Vertex 279: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06474698334932327 - Group: 'Bone.018', Weight: 0.9181751012802124 -Vertex 280: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07556388527154922 - Group: 'Bone.018', Weight: 0.9048210978507996 -Vertex 281: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12527328729629517 - Group: 'Bone.018', Weight: 0.8426525592803955 -Vertex 282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9917393922805786 -Vertex 283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.996073842048645 -Vertex 284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960927367210388 -Vertex 285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960861206054688 -Vertex 286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960469603538513 -Vertex 287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961082339286804 -Vertex 288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962239265441895 -Vertex 289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957596063613892 -Vertex 290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947470426559448 -Vertex 291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9933964610099792 -Vertex 292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956125020980835 -Vertex 293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967665076255798 -Vertex 294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975833296775818 -Vertex 295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977006316184998 -Vertex 296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971857070922852 -Vertex 297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982591271400452 -Vertex 298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971476197242737 -Vertex 299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971927404403687 -Vertex 300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972155690193176 -Vertex 301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.997194230556488 -Vertex 302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979953169822693 -Vertex 303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980049729347229 -Vertex 304: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979820847511292 -Vertex 305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979538917541504 -Vertex 306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998566210269928 -Vertex 307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.998752236366272 -Vertex 308: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987773895263672 -Vertex 309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987331628799438 -Vertex 310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993904232978821 -Vertex 311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993789196014404 -Vertex 312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999296247959137 -Vertex 313: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991030097007751 -Vertex 314: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987591505050659 -Vertex 315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982474446296692 -Vertex 316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971905946731567 -Vertex 317: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998459219932556 -Vertex 318: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997828602790833 -Vertex 319: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999627947807312 -Vertex 320: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993893504142761 -Vertex 321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990445375442505 -Vertex 322: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985042810440063 -Vertex 323: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9968841671943665 -Vertex 324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9918491244316101 -Vertex 325: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945569634437561 -Vertex 326: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9916695952415466 -Vertex 327: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9957481026649475 -Vertex 328: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931974411010742 -Vertex 329: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891526103019714 -Vertex 330: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874704480171204 -Vertex 331: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828969240188599 -Vertex 332: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820727109909058 -Vertex 333: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9743448495864868 -Vertex 334: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9733126759529114 -Vertex 335: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837155938148499 -Vertex 336: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849663376808167 -Vertex 337: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9848763346672058 -Vertex 338: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809852242469788 -Vertex 339: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.976396381855011 -Vertex 340: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819788336753845 -Vertex 341: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9773564338684082 -Vertex 342: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820147156715393 -Vertex 343: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.977721095085144 -Vertex 344: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.000852338969707489 - Group: 'Bone.018', Weight: 0.9673864245414734 -Vertex 345: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.974889874458313 -Vertex 346: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9737818837165833 -Vertex 347: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.004160549491643906 - Group: 'Bone.018', Weight: 0.9650489091873169 -Vertex 348: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028568942099809647 - Group: 'Bone.018', Weight: 0.9494985938072205 -Vertex 349: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.017563190311193466 - Group: 'Bone.018', Weight: 0.9554412961006165 -Vertex 350: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06783702224493027 - Group: 'Bone.018', Weight: 0.9135002493858337 -Vertex 351: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05590308830142021 - Group: 'Bone.018', Weight: 0.9264532923698425 -Vertex 352: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08853596448898315 - Group: 'Bone.018', Weight: 0.8843033909797668 -Vertex 353: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10804063826799393 - Group: 'Bone.018', Weight: 0.8636980652809143 -Vertex 354: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08841327577829361 - Group: 'Bone.018', Weight: 0.8878642916679382 -Vertex 355: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11116095632314682 - Group: 'Bone.018', Weight: 0.8578199148178101 -Vertex 356: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.014113794080913067 - Group: 'Bone.017', Weight: 0.17753246426582336 - Group: 'Bone.018', Weight: 0.7749989032745361 -Vertex 357: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.017312098294496536 - Group: 'Bone.017', Weight: 0.21450963616371155 - Group: 'Bone.018', Weight: 0.7304926514625549 -Vertex 358: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02569573000073433 - Group: 'Bone.001', Weight: 0.021512238308787346 - Group: 'Bone.017', Weight: 0.36937469244003296 - Group: 'Bone.018', Weight: 0.5474758744239807 - Group: 'Bone', Weight: 0.06268294900655746 -Vertex 359: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.051103319972753525 - Group: 'Bone.001', Weight: 0.04731174558401108 - Group: 'Bone.017', Weight: 0.5091988444328308 - Group: 'Bone.018', Weight: 0.37788599729537964 - Group: 'Bone', Weight: 0.10150892287492752 -Vertex 360: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0693502277135849 - Group: 'Bone.001', Weight: 0.07179533690214157 - Group: 'Bone.017', Weight: 0.5905709266662598 - Group: 'Bone.018', Weight: 0.2545054852962494 - Group: 'Bone', Weight: 0.17403556406497955 -Vertex 361: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32874417304992676 - Group: 'Bone.001', Weight: 0.11059925705194473 - Group: 'Bone.002', Weight: 0.09992232173681259 - Group: 'Bone.017', Weight: 0.6201463937759399 - Group: 'Bone.018', Weight: 0.15398350358009338 -Vertex 362: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.051471613347530365 - Group: 'Bone.017', Weight: 0.34860342741012573 - Group: 'Bone.018', Weight: 0.5644176602363586 - Group: 'Bone', Weight: 0.09722356498241425 -Vertex 363: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05437319725751877 - Group: 'Bone.017', Weight: 0.31433433294296265 - Group: 'Bone.018', Weight: 0.6047909259796143 - Group: 'Bone', Weight: 0.07441531866788864 -Vertex 364: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.05794353783130646 - Group: 'Bone.017', Weight: 0.2878820300102234 - Group: 'Bone.018', Weight: 0.6345375776290894 - Group: 'Bone', Weight: 0.04351629689335823 -Vertex 365: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02603514865040779 - Group: 'Bone.017', Weight: 0.16408975422382355 - Group: 'Bone.018', Weight: 0.7866966128349304 - Group: 'Bone', Weight: 0.0034947223030030727 -Vertex 366: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07146356254816055 - Group: 'Bone.017', Weight: 0.2662483751773834 - Group: 'Bone.018', Weight: 0.6530826091766357 - Group: 'Bone', Weight: 0.014748816378414631 -Vertex 367: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.04310308396816254 - Group: 'Bone.017', Weight: 0.1471272110939026 - Group: 'Bone.018', Weight: 0.8023867607116699 -Vertex 368: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.11952348053455353 - Group: 'Bone.017', Weight: 0.2529432773590088 - Group: 'Bone.018', Weight: 0.6574909090995789 - Group: 'Bone', Weight: 0.0014436924830079079 -Vertex 369: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.057264700531959534 - Group: 'Bone.017', Weight: 0.14469286799430847 - Group: 'Bone.018', Weight: 0.8013899326324463 -Vertex 370: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.14518709480762482 - Group: 'Bone.017', Weight: 0.24978625774383545 - Group: 'Bone.018', Weight: 0.6528491973876953 - Group: 'Bone', Weight: 7.913346053101122e-05 -Vertex 371: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.037732694298028946 - Group: 'Bone.017', Weight: 0.1447795033454895 - Group: 'Bone.018', Weight: 0.8011361360549927 - Group: 'Bone', Weight: 1.5350828107330017e-05 -Vertex 372: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.09920600801706314 - Group: 'Bone.017', Weight: 0.2549896240234375 - Group: 'Bone.018', Weight: 0.6463415622711182 - Group: 'Bone', Weight: 0.007860164158046246 -Vertex 373: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.02549927309155464 - Group: 'Bone.017', Weight: 0.14672906696796417 - Group: 'Bone.018', Weight: 0.8005677461624146 - Group: 'Bone', Weight: 8.667515794513747e-05 -Vertex 374: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.07169893383979797 - Group: 'Bone.017', Weight: 0.26245516538619995 - Group: 'Bone.018', Weight: 0.6468411684036255 - Group: 'Bone', Weight: 0.01011237408965826 -Vertex 375: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.1490136682987213 - Group: 'Bone.018', Weight: 0.7998629808425903 - Group: 'Bone.002', Weight: 0.0162210650742054 -Vertex 376: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.060201246291399 - Group: 'Bone.017', Weight: 0.28510966897010803 - Group: 'Bone.018', Weight: 0.6445046663284302 - Group: 'Bone', Weight: 0.005688599776476622 -Vertex 377: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15271639823913574 - Group: 'Bone.018', Weight: 0.7983984351158142 - Group: 'Bone.002', Weight: 0.005063533782958984 -Vertex 378: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04767419025301933 - Group: 'Bone.017', Weight: 0.3137568533420563 - Group: 'Bone.018', Weight: 0.6412549018859863 - Group: 'Bone.001', Weight: 0.0165565088391304 - Group: 'Bone', Weight: 0.0012161717750132084 -Vertex 379: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.15262211859226227 - Group: 'Bone.018', Weight: 0.7991212010383606 - Group: 'Bone.001', Weight: 0.004352061077952385 -Vertex 380: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.026423413306474686 - Group: 'Bone.001', Weight: 0.08201391994953156 - Group: 'Bone.017', Weight: 0.3194555640220642 - Group: 'Bone.018', Weight: 0.6382794976234436 - Group: 'Bone', Weight: 0.0020774139557033777 -Vertex 381: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.07604625821113586 - Group: 'Bone.001', Weight: 0.005094654858112335 - Group: 'Bone.017', Weight: 0.5025976300239563 - Group: 'Bone.018', Weight: 0.37303224205970764 - Group: 'Bone', Weight: 0.14714516699314117 -Vertex 382: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.08812523633241653 - Group: 'Bone.017', Weight: 0.49649330973625183 - Group: 'Bone.018', Weight: 0.37875184416770935 - Group: 'Bone', Weight: 0.12868177890777588 -Vertex 383: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.10482372343540192 - Group: 'Bone.017', Weight: 0.49603602290153503 - Group: 'Bone.018', Weight: 0.3737730383872986 - Group: 'Bone', Weight: 0.09343645721673965 -Vertex 384: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.15359589457511902 - Group: 'Bone.017', Weight: 0.4964991509914398 - Group: 'Bone.018', Weight: 0.35293158888816833 - Group: 'Bone', Weight: 0.04561489820480347 -Vertex 385: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2426619529724121 - Group: 'Bone.017', Weight: 0.47486060857772827 - Group: 'Bone.018', Weight: 0.3550083637237549 - Group: 'Bone', Weight: 0.010038826614618301 -Vertex 386: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2798907160758972 - Group: 'Bone.017', Weight: 0.46407678723335266 - Group: 'Bone.018', Weight: 0.34728842973709106 - Group: 'Bone', Weight: 0.00858120247721672 -Vertex 387: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.2023257464170456 - Group: 'Bone.017', Weight: 0.469943642616272 - Group: 'Bone.018', Weight: 0.3422015607357025 - Group: 'Bone', Weight: 0.056385643780231476 -Vertex 388: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.1519060581922531 - Group: 'Bone.017', Weight: 0.5075005888938904 - Group: 'Bone.018', Weight: 0.33568230271339417 - Group: 'Bone', Weight: 0.06301817297935486 -Vertex 389: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.116298146545887 - Group: 'Bone.017', Weight: 0.5400383472442627 - Group: 'Bone.018', Weight: 0.34881266951560974 - Group: 'Bone.001', Weight: 0.019283385947346687 - Group: 'Bone', Weight: 0.038112252950668335 -Vertex 390: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.08579796552658081 - Group: 'Bone.001', Weight: 0.0847826898097992 - Group: 'Bone.017', Weight: 0.5826709866523743 - Group: 'Bone.018', Weight: 0.35362890362739563 - Group: 'Bone', Weight: 0.014081502333283424 -Vertex 391: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.06676960736513138 - Group: 'Bone.001', Weight: 0.20775854587554932 - Group: 'Bone.017', Weight: 0.5937096476554871 - Group: 'Bone.018', Weight: 0.33794233202934265 - Group: 'Bone', Weight: 0.026569191366434097 -Vertex 392: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0848679393529892 - Group: 'Bone.018', Weight: 0.8866128325462341 -Vertex 393: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0805552750825882 - Group: 'Bone.018', Weight: 0.8907572627067566 -Vertex 394: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08057614415884018 - Group: 'Bone.018', Weight: 0.8903185129165649 -Vertex 395: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08326119929552078 - Group: 'Bone.018', Weight: 0.8872702717781067 -Vertex 396: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08528357744216919 - Group: 'Bone.018', Weight: 0.8853384256362915 -Vertex 397: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08681636303663254 - Group: 'Bone.018', Weight: 0.8839691877365112 -Vertex 398: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08529634773731232 - Group: 'Bone.018', Weight: 0.8862720727920532 -Vertex 399: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05480879917740822 - Group: 'Bone.018', Weight: 0.9269908666610718 -Vertex 400: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025263337418437004 - Group: 'Bone.018', Weight: 0.9500245451927185 -Vertex 401: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0541631244122982 - Group: 'Bone.018', Weight: 0.9271357655525208 -Vertex 402: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05294902250170708 - Group: 'Bone.018', Weight: 0.9283985495567322 -Vertex 403: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05410349741578102 - Group: 'Bone.018', Weight: 0.9269781708717346 -Vertex 404: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055484019219875336 - Group: 'Bone.018', Weight: 0.9254199266433716 -Vertex 405: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05655762553215027 - Group: 'Bone.018', Weight: 0.9242441654205322 -Vertex 406: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05485457926988602 - Group: 'Bone.018', Weight: 0.9266569018363953 -Vertex 407: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020824413746595383 - Group: 'Bone.018', Weight: 0.9526531100273132 -Vertex 408: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020274464040994644 - Group: 'Bone.018', Weight: 0.9527568221092224 -Vertex 409: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02075362578034401 - Group: 'Bone.018', Weight: 0.9524126648902893 -Vertex 410: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021343018859624863 - Group: 'Bone.018', Weight: 0.9520940184593201 -Vertex 411: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021875854581594467 - Group: 'Bone.018', Weight: 0.9518221616744995 -Vertex 412: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.021658260375261307 - Group: 'Bone.018', Weight: 0.9520260691642761 -Vertex 413: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9723412394523621 -Vertex 414: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9713144898414612 -Vertex 415: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9709611535072327 -Vertex 416: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9707068800926208 -Vertex 417: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9703720808029175 -Vertex 418: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9794281721115112 -Vertex 419: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9796961545944214 -Vertex 420: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9789056777954102 -Vertex 421: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9777443408966064 -Vertex 422: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839200973510742 -Vertex 423: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9760103821754456 -Vertex 424: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829161763191223 -Vertex 425: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891284704208374 -Vertex 426: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9885690808296204 -Vertex 427: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9807515740394592 -Vertex 428: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875677824020386 -Vertex 429: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894630908966064 -Vertex 430: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915198683738708 -Vertex 431: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956390857696533 -Vertex 432: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966949820518494 -Vertex 433: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9937042593955994 -Vertex 434: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898576140403748 -Vertex 435: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9977024793624878 -Vertex 436: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987373352050781 -Vertex 437: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992001056671143 -Vertex 438: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999475359916687 -Vertex 439: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996656179428101 -Vertex 440: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998027086257935 -Vertex 441: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9998840093612671 -Vertex 442: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9892639517784119 -Vertex 443: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871208667755127 -Vertex 444: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9927670359611511 -Vertex 445: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.989627480506897 -Vertex 446: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854269623756409 -Vertex 447: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9854874014854431 -Vertex 448: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9898416996002197 -Vertex 449: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9930575489997864 -Vertex 450: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9932693839073181 -Vertex 451: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9952864050865173 -Vertex 452: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971035122871399 -Vertex 453: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979612231254578 -Vertex 454: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987518787384033 -Vertex 455: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991150498390198 -Vertex 456: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994221329689026 -Vertex 457: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996768832206726 -Vertex 458: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9940618872642517 -Vertex 459: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955637454986572 -Vertex 460: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.995780885219574 -Vertex 461: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9947641491889954 -Vertex 462: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9962144494056702 -Vertex 463: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971462488174438 -Vertex 464: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971257448196411 -Vertex 465: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970206022262573 -Vertex 466: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980358481407166 -Vertex 467: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980120658874512 -Vertex 468: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979909062385559 -Vertex 469: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9988303184509277 -Vertex 470: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987812638282776 -Vertex 471: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987823963165283 -Vertex 472: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991039633750916 -Vertex 473: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999350905418396 -Vertex 474: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996522665023804 -Vertex 475: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994271993637085 -Vertex 476: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991604685783386 -Vertex 477: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999127984046936 -Vertex 478: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994708895683289 -Vertex 479: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994039535522461 -Vertex 480: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9995644092559814 -Vertex 481: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9876977205276489 -Vertex 482: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9878830909729004 -Vertex 483: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9862500429153442 -Vertex 484: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9813393950462341 -Vertex 485: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9857240319252014 -Vertex 486: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870659708976746 -Vertex 487: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.984491765499115 -Vertex 488: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9851914644241333 -Vertex 489: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852700233459473 -Vertex 490: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849420785903931 -Vertex 491: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9843644499778748 -Vertex 492: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831510186195374 -Vertex 493: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814862012863159 -Vertex 494: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804808497428894 -Vertex 495: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817430377006531 -Vertex 496: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834643602371216 -Vertex 497: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9823883175849915 -Vertex 498: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838012456893921 -Vertex 499: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9838817715644836 -Vertex 500: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9837618470191956 -Vertex 501: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834936857223511 -Vertex 502: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830655455589294 -Vertex 503: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982448935508728 -Vertex 504: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820911884307861 -Vertex 505: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834319949150085 -Vertex 506: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831387400627136 - Group: 'Bone', Weight: 6.256449705688283e-05 -Vertex 507: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982997477054596 - Group: 'Bone', Weight: 0.015150942839682102 -Vertex 508: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833812713623047 -Vertex 509: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832375049591064 -Vertex 510: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825774431228638 -Vertex 511: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822954535484314 -Vertex 512: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825500249862671 -Vertex 513: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829310774803162 - Group: 'Bone', Weight: 0.005713534075766802 -Vertex 514: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831974506378174 -Vertex 515: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833572506904602 -Vertex 516: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831011295318604 - Group: 'Bone', Weight: 0.002201990457251668 -Vertex 517: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830296635627747 - Group: 'Bone', Weight: 0.010078654624521732 -Vertex 518: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828925728797913 - Group: 'Bone', Weight: 0.026694772765040398 -Vertex 519: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826189875602722 - Group: 'Bone.002', Weight: 0.1159120425581932 -Vertex 520: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824973344802856 -Vertex 521: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826754331588745 -Vertex 522: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830675721168518 -Vertex 523: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9831224083900452 -Vertex 524: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9830007553100586 - Group: 'Bone', Weight: 0.005342377349734306 -Vertex 525: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829404950141907 - Group: 'Bone', Weight: 0.0008556453394703567 -Vertex 526: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827300310134888 -Vertex 527: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825805425643921 -Vertex 528: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826697707176208 -Vertex 529: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828373789787292 - Group: 'Bone', Weight: 0.1018526628613472 - Group: 'Bone.002', Weight: 0.021835261955857277 -Vertex 530: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982928454875946 - Group: 'Bone', Weight: 0.06621473282575607 -Vertex 531: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9829806685447693 - Group: 'Bone', Weight: 0.031127512454986572 -Vertex 532: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829049706459045 - Group: 'Bone', Weight: 0.10134579241275787 - Group: 'Bone.002', Weight: 0.0004972607712261379 -Vertex 533: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828518629074097 - Group: 'Bone', Weight: 0.17167776823043823 - Group: 'Bone.002', Weight: 0.018173346295952797 -Vertex 534: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828076362609863 - Group: 'Bone', Weight: 0.20252802968025208 - Group: 'Bone.002', Weight: 0.08372150361537933 -Vertex 535: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827341437339783 - Group: 'Bone.002', Weight: 0.07669255882501602 -Vertex 536: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826797842979431 -Vertex 537: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827366471290588 -Vertex 538: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9828623533248901 - Group: 'Bone', Weight: 0.017031896859407425 -Vertex 539: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828982353210449 - Group: 'Bone', Weight: 0.06713680922985077 - Group: 'Bone.002', Weight: 0.028921213001012802 -Vertex 540: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9829009175300598 - Group: 'Bone', Weight: 0.0912848487496376 - Group: 'Bone.002', Weight: 0.011780019849538803 -Vertex 541: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828441739082336 - Group: 'Bone', Weight: 0.19029679894447327 - Group: 'Bone.002', Weight: 0.14813284575939178 -Vertex 542: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9828436970710754 - Group: 'Bone', Weight: 0.11937382817268372 - Group: 'Bone.002', Weight: 0.27529072761535645 - Group: 'Bone.020', Weight: 0.0010900459019467235 -Vertex 543: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827924966812134 - Group: 'Bone', Weight: 0.14639657735824585 -Vertex 544: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9828000664710999 - Group: 'Bone', Weight: 0.23768261075019836 - Group: 'Bone.002', Weight: 0.2805856764316559 -Vertex 545: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.11287962645292282 - Group: 'Bone.001', Weight: 0.022742588073015213 - Group: 'Bone.017', Weight: 0.5788425207138062 - Group: 'Bone.018', Weight: 0.24168570339679718 - Group: 'Bone', Weight: 0.23459219932556152 -Vertex 546: -Vertex groups: 5 - Group: 'Bone', Weight: 0.37665265798568726 - Group: 'Bone.001', Weight: 0.05028509348630905 - Group: 'Bone.002', Weight: 0.1700313836336136 - Group: 'Bone.017', Weight: 0.5885706543922424 - Group: 'Bone.018', Weight: 0.1484500765800476 -Vertex 547: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.13779330253601074 - Group: 'Bone.018', Weight: 0.2461882382631302 - Group: 'Bone.017', Weight: 0.5673646926879883 - Group: 'Bone', Weight: 0.2124597281217575 -Vertex 548: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.16913965344429016 - Group: 'Bone.017', Weight: 0.5574778318405151 - Group: 'Bone.018', Weight: 0.24414752423763275 - Group: 'Bone', Weight: 0.16273963451385498 -Vertex 549: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.25524330139160156 - Group: 'Bone.017', Weight: 0.5315118432044983 - Group: 'Bone.018', Weight: 0.22726970911026 - Group: 'Bone', Weight: 0.08965643495321274 -Vertex 550: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3735794425010681 - Group: 'Bone.017', Weight: 0.4927513003349304 - Group: 'Bone.018', Weight: 0.2200762927532196 - Group: 'Bone.020', Weight: 0.00583459809422493 - Group: 'Bone', Weight: 0.02833857201039791 -Vertex 551: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.40488916635513306 - Group: 'Bone.017', Weight: 0.4701229929924011 - Group: 'Bone.018', Weight: 0.21238334476947784 - Group: 'Bone.020', Weight: 0.005662646144628525 - Group: 'Bone', Weight: 0.034484509378671646 -Vertex 552: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.33666691184043884 - Group: 'Bone.017', Weight: 0.4874314069747925 - Group: 'Bone.018', Weight: 0.20767268538475037 - Group: 'Bone', Weight: 0.12795424461364746 -Vertex 553: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.25135794281959534 - Group: 'Bone.017', Weight: 0.5705812573432922 - Group: 'Bone.018', Weight: 0.21385596692562103 - Group: 'Bone.001', Weight: 0.01690109446644783 - Group: 'Bone', Weight: 0.12405429780483246 -Vertex 554: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.19973449409008026 - Group: 'Bone.001', Weight: 0.04948806017637253 - Group: 'Bone.017', Weight: 0.6204811334609985 - Group: 'Bone.018', Weight: 0.220797598361969 - Group: 'Bone', Weight: 0.07575060427188873 -Vertex 555: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.1316806972026825 - Group: 'Bone.001', Weight: 0.13075128197669983 - Group: 'Bone.017', Weight: 0.6471741199493408 - Group: 'Bone.018', Weight: 0.22371001541614532 - Group: 'Bone', Weight: 0.04202020913362503 -Vertex 556: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.09397764503955841 - Group: 'Bone.001', Weight: 0.29253119230270386 - Group: 'Bone.017', Weight: 0.6491751074790955 - Group: 'Bone.018', Weight: 0.21929588913917542 - Group: 'Bone', Weight: 0.07202626019716263 -Vertex 557: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.23829735815525055 - Group: 'Bone.001', Weight: 0.011631257832050323 - Group: 'Bone.017', Weight: 0.5542942881584167 - Group: 'Bone.018', Weight: 0.146672323346138 - Group: 'Bone', Weight: 0.3727315068244934 -Vertex 558: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.3306314945220947 - Group: 'Bone.017', Weight: 0.5173230171203613 - Group: 'Bone.018', Weight: 0.14026466012001038 - Group: 'Bone.020', Weight: 0.013350757770240307 - Group: 'Bone', Weight: 0.30959266424179077 -Vertex 559: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.4668538570404053 - Group: 'Bone.017', Weight: 0.44480228424072266 - Group: 'Bone.018', Weight: 0.1309634894132614 - Group: 'Bone.020', Weight: 0.04064754769206047 - Group: 'Bone', Weight: 0.18485519289970398 -Vertex 560: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5323929786682129 - Group: 'Bone.017', Weight: 0.4120933711528778 - Group: 'Bone.018', Weight: 0.11970531195402145 - Group: 'Bone.020', Weight: 0.05565841868519783 - Group: 'Bone', Weight: 0.08100886642932892 -Vertex 561: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.524170994758606 - Group: 'Bone.017', Weight: 0.3563423156738281 - Group: 'Bone.018', Weight: 0.10463559627532959 - Group: 'Bone.020', Weight: 0.058247677981853485 - Group: 'Bone', Weight: 0.13352973759174347 -Vertex 562: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5240504741668701 - Group: 'Bone.017', Weight: 0.3801088035106659 - Group: 'Bone.018', Weight: 0.10262181609869003 - Group: 'Bone.020', Weight: 0.030789492651820183 - Group: 'Bone', Weight: 0.21293948590755463 -Vertex 563: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.46303418278694153 - Group: 'Bone.001', Weight: 0.03977791592478752 - Group: 'Bone.017', Weight: 0.6000022292137146 - Group: 'Bone.018', Weight: 0.11326354742050171 - Group: 'Bone', Weight: 0.20256651937961578 -Vertex 564: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11845610290765762 - Group: 'Bone.001', Weight: 0.0818122923374176 - Group: 'Bone.002', Weight: 0.3637577295303345 - Group: 'Bone.017', Weight: 0.6534843444824219 - Group: 'Bone', Weight: 0.15358397364616394 -Vertex 565: -Vertex groups: 5 - Group: 'Bone', Weight: 0.16261254251003265 - Group: 'Bone.001', Weight: 0.1965237557888031 - Group: 'Bone.002', Weight: 0.22262731194496155 - Group: 'Bone.017', Weight: 0.6596190929412842 - Group: 'Bone.018', Weight: 0.12282230705022812 -Vertex 566: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2001182734966278 - Group: 'Bone.001', Weight: 0.35566291213035583 - Group: 'Bone.002', Weight: 0.14361034333705902 - Group: 'Bone.017', Weight: 0.6590452790260315 - Group: 'Bone.018', Weight: 0.12240199744701385 -Vertex 567: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5367307066917419 - Group: 'Bone.001', Weight: 0.19697073101997375 - Group: 'Bone.002', Weight: 0.1720048487186432 - Group: 'Bone.017', Weight: 0.5873988270759583 - Group: 'Bone.018', Weight: 0.07193464040756226 -Vertex 568: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5539060831069946 - Group: 'Bone.001', Weight: 0.09508194029331207 - Group: 'Bone.002', Weight: 0.29133638739585876 - Group: 'Bone.017', Weight: 0.530044674873352 - Group: 'Bone.018', Weight: 0.06704078614711761 -Vertex 569: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5706725716590881 - Group: 'Bone.001', Weight: 0.03457576408982277 - Group: 'Bone.002', Weight: 0.5121795535087585 - Group: 'Bone.017', Weight: 0.4138419032096863 - Group: 'Bone.018', Weight: 0.07032744586467743 - Group: 'Bone.020', Weight: 0.0350416861474514 -Vertex 570: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5504383444786072 - Group: 'Bone.018', Weight: 0.0638836994767189 - Group: 'Bone.002', Weight: 0.6467406153678894 - Group: 'Bone.017', Weight: 0.3913309574127197 - Group: 'Bone.020', Weight: 0.06230652704834938 -Vertex 571: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.6598165035247803 - Group: 'Bone.017', Weight: 0.3742244839668274 - Group: 'Bone.018', Weight: 0.07011552900075912 - Group: 'Bone.020', Weight: 0.07819867879152298 - Group: 'Bone', Weight: 0.31083086133003235 -Vertex 572: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5495253205299377 - Group: 'Bone.017', Weight: 0.468288779258728 - Group: 'Bone.018', Weight: 0.020244870334863663 - Group: 'Bone.020', Weight: 0.13855385780334473 - Group: 'Bone', Weight: 0.22445246577262878 -Vertex 573: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.5189477205276489 - Group: 'Bone.017', Weight: 0.5063484311103821 - Group: 'Bone.018', Weight: 0.01672273501753807 - Group: 'Bone.020', Weight: 0.12381607294082642 - Group: 'Bone', Weight: 0.23298156261444092 -Vertex 574: -Vertex groups: 4 - Group: 'Bone.002', Weight: 0.5209003686904907 - Group: 'Bone.017', Weight: 0.35560959577560425 - Group: 'Bone.020', Weight: 0.11788368970155716 - Group: 'Bone', Weight: 0.22224222123622894 -Vertex 575: -Vertex groups: 6 - Group: 'Bone', Weight: 0.22792446613311768 - Group: 'Bone.001', Weight: 0.022721480578184128 - Group: 'Bone.002', Weight: 0.5312458872795105 - Group: 'Bone.017', Weight: 0.20443597435951233 - Group: 'Bone.018', Weight: 0.04234850034117699 - Group: 'Bone.020', Weight: 0.03296944871544838 -Vertex 576: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3959653973579407 - Group: 'Bone.001', Weight: 0.1411408931016922 - Group: 'Bone.002', Weight: 0.5145508646965027 - Group: 'Bone.017', Weight: 0.48501038551330566 - Group: 'Bone.018', Weight: 0.05372663959860802 -Vertex 577: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3147084414958954 - Group: 'Bone.001', Weight: 0.2396196722984314 - Group: 'Bone.002', Weight: 0.39102989435195923 - Group: 'Bone.017', Weight: 0.5905309319496155 - Group: 'Bone.018', Weight: 0.056461550295352936 -Vertex 578: -Vertex groups: 5 - Group: 'Bone', Weight: 0.25286829471588135 - Group: 'Bone.001', Weight: 0.2600969970226288 - Group: 'Bone.002', Weight: 0.23714067041873932 - Group: 'Bone.017', Weight: 0.6152752637863159 - Group: 'Bone.018', Weight: 0.05948558822274208 -Vertex 579: -Vertex groups: 5 - Group: 'Bone', Weight: 0.314660906791687 - Group: 'Bone.001', Weight: 0.2485402226448059 - Group: 'Bone.002', Weight: 0.3106592297554016 - Group: 'Bone.017', Weight: 0.3554774522781372 - Group: 'Bone.018', Weight: 0.01191353052854538 -Vertex 580: -Vertex groups: 5 - Group: 'Bone', Weight: 0.42678841948509216 - Group: 'Bone.001', Weight: 0.24403205513954163 - Group: 'Bone.002', Weight: 0.4724958539009094 - Group: 'Bone.017', Weight: 0.2811884880065918 - Group: 'Bone.018', Weight: 0.010432112962007523 -Vertex 581: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6809493899345398 - Group: 'Bone.001', Weight: 0.1553274691104889 - Group: 'Bone.002', Weight: 0.5269799828529358 - Group: 'Bone.017', Weight: 0.17250660061836243 - Group: 'Bone.018', Weight: 0.0019606612622737885 -Vertex 582: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7109682559967041 - Group: 'Bone.020', Weight: 0.9131765961647034 - Group: 'Bone', Weight: 0.24292391538619995 -Vertex 583: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8966954350471497 - Group: 'Bone', Weight: 0.005326787009835243 - Group: 'Bone.002', Weight: 0.5187979936599731 -Vertex 584: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8917915225028992 - Group: 'Bone.002', Weight: 0.5259424448013306 - Group: 'Bone.005', Weight: 0.04234877601265907 -Vertex 585: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9238497018814087 - Group: 'Bone.020', Weight: 0.3945784270763397 -Vertex 586: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925887942314148 - Group: 'Bone.020', Weight: 0.41356396675109863 -Vertex 587: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258933067321777 - Group: 'Bone.020', Weight: 0.23305314779281616 -Vertex 588: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9252232313156128 - Group: 'Bone.020', Weight: 0.0025985627435147762 -Vertex 589: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.924491822719574 -Vertex 590: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254326820373535 -Vertex 591: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.925531804561615 - Group: 'Bone.006', Weight: 0.07822069525718689 -Vertex 592: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8472039699554443 - Group: 'Bone.006', Weight: 0.3403850197792053 -Vertex 593: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.610871434211731 - Group: 'Bone.006', Weight: 0.6708981394767761 -Vertex 594: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.28634488582611084 - Group: 'Bone.006', Weight: 0.8821176886558533 -Vertex 595: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7348345518112183 - Group: 'Bone.020', Weight: 0.9031397104263306 - Group: 'Bone', Weight: 0.21887153387069702 -Vertex 596: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3459010124206543 - Group: 'Bone.002', Weight: 0.758851945400238 - Group: 'Bone.017', Weight: 0.07322831451892853 - Group: 'Bone.020', Weight: 0.1936611831188202 -Vertex 597: -Vertex groups: 4 - Group: 'Bone', Weight: 0.464114248752594 - Group: 'Bone.002', Weight: 0.4881243407726288 - Group: 'Bone.017', Weight: 0.013289245776832104 - Group: 'Bone.020', Weight: 0.31353136897087097 -Vertex 598: -Vertex groups: 3 - Group: 'Bone', Weight: 0.45383670926094055 - Group: 'Bone.002', Weight: 0.3369625210762024 - Group: 'Bone.020', Weight: 0.3076138198375702 -Vertex 599: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38082900643348694 - Group: 'Bone.002', Weight: 0.41763249039649963 - Group: 'Bone.020', Weight: 0.33601948618888855 -Vertex 600: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5588221549987793 - Group: 'Bone.002', Weight: 0.5042324662208557 - Group: 'Bone.020', Weight: 0.34369784593582153 -Vertex 601: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28679358959198 - Group: 'Bone.002', Weight: 0.5299323797225952 - Group: 'Bone.020', Weight: 0.28141874074935913 -Vertex 602: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0033463872969150543 - Group: 'Bone.002', Weight: 0.5201760530471802 - Group: 'Bone.020', Weight: 0.16260425746440887 - Group: 'Bone', Weight: 0.2470380812883377 -Vertex 603: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6110324859619141 - Group: 'Bone.020', Weight: 0.7693002223968506 - Group: 'Bone', Weight: 0.2251642644405365 -Vertex 604: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.50187087059021 - Group: 'Bone.020', Weight: 0.4477604627609253 - Group: 'Bone', Weight: 0.2659226059913635 -Vertex 605: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4852150082588196 - Group: 'Bone', Weight: 0.27393487095832825 - Group: 'Bone.020', Weight: 0.4964742958545685 -Vertex 606: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.26572391390800476 - Group: 'Bone', Weight: 0.444449245929718 - Group: 'Bone.020', Weight: 0.7107326984405518 -Vertex 607: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.29641950130462646 - Group: 'Bone', Weight: 0.28991833329200745 - Group: 'Bone.020', Weight: 0.7546830177307129 -Vertex 608: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.676380455493927 - Group: 'Bone', Weight: 0.2815074324607849 - Group: 'Bone.020', Weight: 0.8062729239463806 -Vertex 609: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.7583960294723511 - Group: 'Bone', Weight: 0.23482228815555573 - Group: 'Bone.020', Weight: 0.5393463373184204 -Vertex 610: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.759255051612854 - Group: 'Bone.020', Weight: 0.8197475671768188 - Group: 'Bone', Weight: 0.2289767861366272 -Vertex 611: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.9121276140213013 - Group: 'Bone', Weight: 0.06998374313116074 - Group: 'Bone.002', Weight: 0.5670680999755859 -Vertex 612: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.89043128490448 - Group: 'Bone', Weight: 4.8035501095000654e-05 - Group: 'Bone.002', Weight: 0.6407860517501831 - Group: 'Bone.005', Weight: 0.006964399944990873 -Vertex 613: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924064040184021 - Group: 'Bone.020', Weight: 0.4154461920261383 -Vertex 614: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259024262428284 - Group: 'Bone.020', Weight: 0.45738130807876587 -Vertex 615: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259254336357117 - Group: 'Bone.020', Weight: 0.20099930465221405 -Vertex 616: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254422187805176 -Vertex 617: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9237419962882996 -Vertex 618: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9254156351089478 -Vertex 619: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9239449501037598 - Group: 'Bone.006', Weight: 0.059770889580249786 -Vertex 620: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8445092439651489 - Group: 'Bone.006', Weight: 0.30961671471595764 -Vertex 621: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5699524879455566 - Group: 'Bone.006', Weight: 0.6769711971282959 -Vertex 622: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.24892032146453857 - Group: 'Bone.006', Weight: 0.8945506811141968 -Vertex 623: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8985397219657898 - Group: 'Bone', Weight: 0.32250505685806274 - Group: 'Bone.002', Weight: 0.7391891479492188 -Vertex 624: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8957889080047607 - Group: 'Bone', Weight: 0.3623172640800476 - Group: 'Bone.002', Weight: 0.711280882358551 -Vertex 625: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.6017581820487976 - Group: 'Bone.020', Weight: 0.9140611886978149 - Group: 'Bone', Weight: 0.27773651480674744 -Vertex 626: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.007944927550852299 - Group: 'Bone.020', Weight: 0.9516911506652832 - Group: 'Bone', Weight: 0.17578616738319397 -Vertex 627: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.006625914014875889 - Group: 'Bone.020', Weight: 0.9116454124450684 - Group: 'Bone', Weight: 0.1695345640182495 -Vertex 628: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8584908843040466 - Group: 'Bone', Weight: 0.21974869072437286 - Group: 'Bone.002', Weight: 0.4640154242515564 -Vertex 629: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8383243083953857 - Group: 'Bone', Weight: 0.008049280382692814 - Group: 'Bone.002', Weight: 0.5185184478759766 -Vertex 630: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8915196657180786 - Group: 'Bone.002', Weight: 0.1892654448747635 - Group: 'Bone.005', Weight: 0.0932912826538086 -Vertex 631: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9232566952705383 - Group: 'Bone.020', Weight: 0.4041561484336853 -Vertex 632: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244133234024048 - Group: 'Bone.020', Weight: 0.3885034918785095 -Vertex 633: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.924576997756958 - Group: 'Bone.020', Weight: 0.2789778709411621 -Vertex 634: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9266968965530396 - Group: 'Bone.020', Weight: 0.03644781559705734 -Vertex 635: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9243580102920532 -Vertex 636: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257174730300903 -Vertex 637: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253689050674438 - Group: 'Bone.006', Weight: 0.08643007278442383 -Vertex 638: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8340450525283813 - Group: 'Bone.006', Weight: 0.3418421149253845 -Vertex 639: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5942909717559814 - Group: 'Bone.006', Weight: 0.6423589587211609 -Vertex 640: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.286996066570282 - Group: 'Bone.006', Weight: 0.8542776107788086 -Vertex 641: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.7902028560638428 - Group: 'Bone', Weight: 0.08911564946174622 - Group: 'Bone.002', Weight: 0.5184991359710693 -Vertex 642: -Vertex groups: 4 - Group: 'Bone.020', Weight: 0.8979722857475281 - Group: 'Bone', Weight: 0.0003941334143746644 - Group: 'Bone.002', Weight: 6.0187252529431134e-05 - Group: 'Bone.005', Weight: 0.10594077408313751 -Vertex 643: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9043965935707092 - Group: 'Bone.020', Weight: 0.4186480641365051 -Vertex 644: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9157621264457703 - Group: 'Bone.020', Weight: 0.37649980187416077 -Vertex 645: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9223621487617493 - Group: 'Bone.020', Weight: 0.2551839053630829 -Vertex 646: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9272104501724243 - Group: 'Bone.020', Weight: 0.03305390477180481 -Vertex 647: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249048233032227 -Vertex 648: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258661270141602 -Vertex 649: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9248789548873901 - Group: 'Bone.006', Weight: 0.08990119397640228 -Vertex 650: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8142637014389038 - Group: 'Bone.006', Weight: 0.3543004095554352 -Vertex 651: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5824040770530701 - Group: 'Bone.006', Weight: 0.6341144442558289 -Vertex 652: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.048052508383989334 - Group: 'Bone.020', Weight: 0.9206585884094238 - Group: 'Bone', Weight: 0.0071902088820934296 -Vertex 653: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8011356592178345 - Group: 'Bone.020', Weight: 0.5671198964118958 -Vertex 654: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8896543979644775 - Group: 'Bone.020', Weight: 0.3147391974925995 -Vertex 655: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9186170697212219 - Group: 'Bone.020', Weight: 0.1657869815826416 -Vertex 656: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358399510383606 - Group: 'Bone.020', Weight: 0.007647011429071426 -Vertex 657: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930009126663208 -Vertex 658: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.930115818977356 -Vertex 659: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9246085286140442 - Group: 'Bone.006', Weight: 0.08779768645763397 -Vertex 660: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8107994794845581 - Group: 'Bone.006', Weight: 0.36179277300834656 -Vertex 661: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6535962820053101 - Group: 'Bone.006', Weight: 0.5776534676551819 -Vertex 662: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044337570667266846 - Group: 'Bone.020', Weight: 0.9585631489753723 - Group: 'Bone', Weight: 0.024466827511787415 -Vertex 663: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7044889330863953 - Group: 'Bone.020', Weight: 0.5029781460762024 -Vertex 664: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8919712901115417 - Group: 'Bone.020', Weight: 0.15190891921520233 -Vertex 665: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9358422756195068 - Group: 'Bone.020', Weight: 0.05199428275227547 -Vertex 666: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9551294445991516 -Vertex 667: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9665259718894958 -Vertex 668: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9528155326843262 -Vertex 669: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9277786612510681 - Group: 'Bone.006', Weight: 0.06686011701822281 -Vertex 670: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.796375036239624 - Group: 'Bone.006', Weight: 0.3005681037902832 -Vertex 671: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.4782330095767975 - Group: 'Bone.006', Weight: 0.6899033188819885 -Vertex 672: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.27300652861595154 - Group: 'Bone.006', Weight: 0.8513582348823547 -Vertex 673: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.044018518179655075 - Group: 'Bone.020', Weight: 0.9554945230484009 - Group: 'Bone', Weight: 0.03241470828652382 -Vertex 674: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.650331437587738 - Group: 'Bone.020', Weight: 0.4890498220920563 - Group: 'Bone', Weight: 6.402962753782049e-06 -Vertex 675: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9094964265823364 - Group: 'Bone.020', Weight: 0.10190212726593018 -Vertex 676: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9518715143203735 - Group: 'Bone.020', Weight: 0.004249632358551025 -Vertex 677: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.965706467628479 -Vertex 678: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.986557126045227 -Vertex 679: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9895570278167725 -Vertex 680: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9486140012741089 - Group: 'Bone.006', Weight: 0.04834518954157829 -Vertex 681: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7354332804679871 - Group: 'Bone.006', Weight: 0.28437966108322144 -Vertex 682: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2611958682537079 - Group: 'Bone.006', Weight: 0.7462483644485474 -Vertex 683: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.06730445474386215 - Group: 'Bone.006', Weight: 0.9328234791755676 -Vertex 684: -Vertex groups: 4 - Group: 'Bone.005', Weight: 0.012361600995063782 - Group: 'Bone.020', Weight: 0.9409618973731995 - Group: 'Bone', Weight: 0.13632814586162567 - Group: 'Bone.002', Weight: 0.008586526848375797 -Vertex 685: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.6165971755981445 - Group: 'Bone.020', Weight: 0.52659010887146 -Vertex 686: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9108859300613403 - Group: 'Bone.020', Weight: 0.10586879402399063 -Vertex 687: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9405460953712463 -Vertex 688: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9631756544113159 -Vertex 689: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.956218957901001 -Vertex 690: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9707741737365723 -Vertex 691: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9727766513824463 - Group: 'Bone.006', Weight: 0.002204813063144684 -Vertex 692: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7971500754356384 - Group: 'Bone.006', Weight: 0.20293676853179932 -Vertex 693: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2309521734714508 - Group: 'Bone.006', Weight: 0.7690470814704895 -Vertex 694: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.07788276672363281 - Group: 'Bone.006', Weight: 0.9221758842468262 -Vertex 695: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.919589102268219 - Group: 'Bone', Weight: 0.06156744435429573 - Group: 'Bone.002', Weight: 0.24288251996040344 -Vertex 696: -Vertex groups: 3 - Group: 'Bone.020', Weight: 0.8963248133659363 - Group: 'Bone', Weight: 0.011583578772842884 - Group: 'Bone.002', Weight: 0.5628169775009155 -Vertex 697: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9041520357131958 - Group: 'Bone.020', Weight: 0.6710934638977051 -Vertex 698: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7950021624565125 - Group: 'Bone.020', Weight: 0.6987709403038025 -Vertex 699: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9256496429443359 - Group: 'Bone.020', Weight: 0.4437011778354645 -Vertex 700: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9225081205368042 - Group: 'Bone.020', Weight: 0.2590619623661041 -Vertex 701: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259205460548401 - Group: 'Bone.020', Weight: 0.09262587130069733 -Vertex 702: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258156418800354 - Group: 'Bone.020', Weight: 0.02999061346054077 -Vertex 703: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253928065299988 -Vertex 704: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.926078200340271 -Vertex 705: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9224579334259033 -Vertex 706: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9235035181045532 -Vertex 707: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9246326088905334 -Vertex 708: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9211738109588623 -Vertex 709: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9226392507553101 - Group: 'Bone.006', Weight: 0.05036516487598419 -Vertex 710: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.941202700138092 - Group: 'Bone.006', Weight: 0.0206204392015934 -Vertex 711: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.7565425634384155 - Group: 'Bone.006', Weight: 0.2550923526287079 -Vertex 712: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8347447514533997 - Group: 'Bone.006', Weight: 0.2781307101249695 -Vertex 713: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.5213577151298523 - Group: 'Bone.006', Weight: 0.6741229891777039 -Vertex 714: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.33344337344169617 - Group: 'Bone.006', Weight: 0.6983320713043213 -Vertex 715: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.15226250886917114 - Group: 'Bone.006', Weight: 0.901178240776062 -Vertex 716: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.18039923906326294 - Group: 'Bone.006', Weight: 0.8992565870285034 -Vertex 717: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5947365164756775 - Group: 'Bone.001', Weight: 0.05031519755721092 - Group: 'Bone.002', Weight: 0.3610307276248932 - Group: 'Bone.017', Weight: 0.125547394156456 - Group: 'Bone.018', Weight: 0.0009646527469158173 - Group: 'Bone.020', Weight: 0.07498625665903091 -Vertex 718: -Vertex groups: 6 - Group: 'Bone', Weight: 0.5831877589225769 - Group: 'Bone.001', Weight: 0.12532836198806763 - Group: 'Bone.002', Weight: 0.43375253677368164 - Group: 'Bone.017', Weight: 0.18350020051002502 - Group: 'Bone.018', Weight: 0.0076865628361701965 - Group: 'Bone.020', Weight: 0.015976745635271072 -Vertex 719: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5511842966079712 - Group: 'Bone.001', Weight: 0.2628174126148224 - Group: 'Bone.002', Weight: 0.27528566122055054 - Group: 'Bone.017', Weight: 0.19565646350383759 - Group: 'Bone.018', Weight: 0.004291165620088577 -Vertex 720: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6176447868347168 - Group: 'Bone.001', Weight: 0.046716827899217606 - Group: 'Bone.002', Weight: 0.0023584074806421995 - Group: 'Bone.017', Weight: 0.061249781399965286 - Group: 'Bone.020', Weight: 0.08857795596122742 -Vertex 721: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6804037094116211 - Group: 'Bone.001', Weight: 0.12548395991325378 - Group: 'Bone.002', Weight: 0.36415067315101624 - Group: 'Bone.017', Weight: 0.08327151089906693 - Group: 'Bone.020', Weight: 0.020977627485990524 -Vertex 722: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7311407327651978 - Group: 'Bone.001', Weight: 0.2695870101451874 - Group: 'Bone.002', Weight: 0.26922667026519775 - Group: 'Bone.017', Weight: 0.07694163918495178 -Vertex 723: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7014501094818115 - Group: 'Bone.002', Weight: 0.00013576461060438305 - Group: 'Bone.020', Weight: 0.1808129847049713 -Vertex 724: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5503765344619751 - Group: 'Bone.001', Weight: 0.041304055601358414 - Group: 'Bone.002', Weight: 0.003384604351595044 - Group: 'Bone.017', Weight: 0.013007688336074352 - Group: 'Bone.020', Weight: 0.06543901562690735 -Vertex 725: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7377920150756836 - Group: 'Bone.001', Weight: 0.08707556873559952 - Group: 'Bone.002', Weight: 0.2180924415588379 - Group: 'Bone.017', Weight: 0.02627541497349739 - Group: 'Bone.020', Weight: 0.013691018335521221 -Vertex 726: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6880799531936646 - Group: 'Bone.001', Weight: 0.15074235200881958 - Group: 'Bone.002', Weight: 0.1456950455904007 - Group: 'Bone.017', Weight: 0.02763812616467476 -Vertex 727: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8098256587982178 - Group: 'Bone.001', Weight: 0.07311704009771347 - Group: 'Bone.002', Weight: 0.07791519910097122 -Vertex 728: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7139454483985901 - Group: 'Bone.001', Weight: 0.05535271018743515 - Group: 'Bone.002', Weight: 0.1151440218091011 -Vertex 729: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6492519378662109 - Group: 'Bone.001', Weight: 0.012819993309676647 - Group: 'Bone.002', Weight: 0.09256700426340103 - Group: 'Bone.020', Weight: 0.036545779556035995 -Vertex 730: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6431307196617126 - Group: 'Bone.002', Weight: 0.00895013753324747 - Group: 'Bone.020', Weight: 0.08284741640090942 -Vertex 731: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5459216237068176 - Group: 'Bone.002', Weight: 0.21921181678771973 - Group: 'Bone.020', Weight: 0.20187193155288696 -Vertex 732: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6054931879043579 - Group: 'Bone.002', Weight: 0.3222883343696594 - Group: 'Bone.020', Weight: 0.22580315172672272 -Vertex 733: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6000298857688904 - Group: 'Bone.002', Weight: 0.4668940603733063 - Group: 'Bone.020', Weight: 0.1860746145248413 -Vertex 734: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7229856252670288 - Group: 'Bone.002', Weight: 0.17488570511341095 - Group: 'Bone.020', Weight: 0.11143849045038223 -Vertex 735: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7722904086112976 - Group: 'Bone.002', Weight: 0.2135573923587799 - Group: 'Bone.020', Weight: 0.12812495231628418 -Vertex 736: -Vertex groups: 3 - Group: 'Bone', Weight: 0.751825749874115 - Group: 'Bone.002', Weight: 0.23813672363758087 - Group: 'Bone.020', Weight: 0.09717559814453125 -Vertex 737: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569231033325195 - Group: 'Bone.001', Weight: 0.0481623075902462 - Group: 'Bone.002', Weight: 0.03561124578118324 -Vertex 738: -Vertex groups: 3 - Group: 'Bone', Weight: 0.840699315071106 - Group: 'Bone.001', Weight: 0.015952128916978836 - Group: 'Bone.002', Weight: 0.06048322468996048 -Vertex 739: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8491815328598022 - Group: 'Bone.002', Weight: 0.08242522180080414 - Group: 'Bone.020', Weight: 0.003054451197385788 -Vertex 740: -Vertex groups: 3 - Group: 'Bone', Weight: 0.756096363067627 - Group: 'Bone.002', Weight: 0.07664857804775238 - Group: 'Bone.020', Weight: 0.03473618999123573 -Vertex 741: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8396292328834534 - Group: 'Bone.002', Weight: 0.1081705093383789 - Group: 'Bone.020', Weight: 0.05301552265882492 -Vertex 742: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8518883585929871 - Group: 'Bone.002', Weight: 0.10799650102853775 - Group: 'Bone.020', Weight: 0.05617202818393707 -Vertex 743: -Vertex groups: 3 - Group: 'Bone', Weight: 0.856109619140625 - Group: 'Bone.002', Weight: 0.11276984959840775 - Group: 'Bone.020', Weight: 0.042383674532175064 -Vertex 744: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8702740669250488 - Group: 'Bone.001', Weight: 0.006060030311346054 -Vertex 745: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8697636127471924 - Group: 'Bone.002', Weight: 0.014578762464225292 -Vertex 746: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8673970103263855 - Group: 'Bone.002', Weight: 0.03693195804953575 -Vertex 747: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8625779151916504 - Group: 'Bone.002', Weight: 0.0538649782538414 -Vertex 748: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8584391474723816 - Group: 'Bone.002', Weight: 0.056540947407484055 - Group: 'Bone.020', Weight: 0.002999495714902878 -Vertex 749: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8581453561782837 - Group: 'Bone.002', Weight: 0.05535874888300896 - Group: 'Bone.020', Weight: 0.002911057323217392 -Vertex 750: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582367897033691 - Group: 'Bone.002', Weight: 0.051061298698186874 -Vertex 751: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5812504887580872 - Group: 'Bone.001', Weight: 0.028933856636285782 - Group: 'Bone.002', Weight: 0.5533191561698914 - Group: 'Bone.017', Weight: 0.08995784819126129 - Group: 'Bone.020', Weight: 0.05044451355934143 -Vertex 752: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7439911961555481 - Group: 'Bone.001', Weight: 0.015009443275630474 - Group: 'Bone.002', Weight: 0.5271822214126587 - Group: 'Bone.017', Weight: 0.015336605720221996 - Group: 'Bone.020', Weight: 0.07549338787794113 -Vertex 753: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6579520106315613 - Group: 'Bone.002', Weight: 0.5327927470207214 - Group: 'Bone.020', Weight: 0.15231865644454956 -Vertex 754: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8348485231399536 - Group: 'Bone.002', Weight: 0.3126196265220642 - Group: 'Bone.001', Weight: 0.005497146397829056 - Group: 'Bone.020', Weight: 0.06416893005371094 -Vertex 755: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550428748130798 - Group: 'Bone.002', Weight: 0.14498841762542725 - Group: 'Bone.020', Weight: 0.02723035030066967 -Vertex 756: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582882881164551 - Group: 'Bone.002', Weight: 0.02817600779235363 -Vertex 757: -Vertex groups: 2 - Group: 'Bone', Weight: 0.870339035987854 - Group: 'Bone.008', Weight: 0.0071997977793216705 -Vertex 758: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8700745701789856 - Group: 'Bone.008', Weight: 0.03278784826397896 - Group: 'Bone.009', Weight: 0.002686798572540283 -Vertex 759: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8693444728851318 - Group: 'Bone.009', Weight: 0.027048612013459206 - Group: 'Bone.008', Weight: 0.049904484301805496 -Vertex 760: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8646570444107056 - Group: 'Bone.009', Weight: 0.0823674201965332 - Group: 'Bone.008', Weight: 0.054016634821891785 -Vertex 761: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582759499549866 - Group: 'Bone.009', Weight: 0.08901584148406982 - Group: 'Bone.008', Weight: 0.054810989648103714 -Vertex 762: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8579230308532715 - Group: 'Bone.009', Weight: 0.07210370898246765 - Group: 'Bone.008', Weight: 0.05526944249868393 -Vertex 763: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580651879310608 - Group: 'Bone.009', Weight: 0.04358728602528572 - Group: 'Bone.008', Weight: 0.05124813690781593 -Vertex 764: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8582289814949036 - Group: 'Bone.008', Weight: 0.020847667008638382 -Vertex 765: -Vertex groups: 5 - Group: 'Bone', Weight: 0.845420777797699 - Group: 'Bone.001', Weight: 0.08682718127965927 - Group: 'Bone.002', Weight: 0.5203613042831421 - Group: 'Bone.017', Weight: 0.06037144362926483 - Group: 'Bone.020', Weight: 0.01222984865307808 -Vertex 766: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8273147940635681 - Group: 'Bone.001', Weight: 0.17332182824611664 - Group: 'Bone.002', Weight: 0.45863455533981323 - Group: 'Bone.017', Weight: 0.08645468950271606 -Vertex 767: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8500721454620361 - Group: 'Bone.001', Weight: 0.2408875823020935 - Group: 'Bone.002', Weight: 0.2241114377975464 - Group: 'Bone.017', Weight: 0.04541495814919472 -Vertex 768: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8560015559196472 - Group: 'Bone.001', Weight: 0.07580257207155228 - Group: 'Bone.002', Weight: 0.3018918037414551 - Group: 'Bone.017', Weight: 0.010457295924425125 - Group: 'Bone.020', Weight: 0.0041696615517139435 -Vertex 769: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8578264713287354 - Group: 'Bone.001', Weight: 0.09915632009506226 - Group: 'Bone.002', Weight: 0.07458940893411636 -Vertex 770: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8569830656051636 - Group: 'Bone.001', Weight: 0.050866927951574326 - Group: 'Bone.002', Weight: 0.13465984165668488 -Vertex 771: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581394553184509 - Group: 'Bone.002', Weight: 0.01740935817360878 -Vertex 772: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8581065535545349 - Group: 'Bone.001', Weight: 0.007540691643953323 -Vertex 773: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8583345413208008 -Vertex 774: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8581209182739258 -Vertex 775: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9872615337371826 -Vertex 776: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9988465905189514 -Vertex 777: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999342560768127 -Vertex 778: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999827146530151 -Vertex 779: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9861520528793335 -Vertex 780: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9976537823677063 -Vertex 781: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996918439865112 -Vertex 782: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999035596847534 -Vertex 783: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.011338405311107635 - Group: 'Bone.006', Weight: 0.9693295359611511 -Vertex 784: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9954994320869446 -Vertex 785: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9990432858467102 -Vertex 786: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999453604221344 -Vertex 787: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999758005142212 -Vertex 788: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9998960494995117 -Vertex 789: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9994622468948364 -Vertex 790: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9996041655540466 -Vertex 791: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9965630173683167 -Vertex 792: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0023460090160369873 - Group: 'Bone.006', Weight: 0.9738268852233887 -Vertex 793: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.013122628442943096 - Group: 'Bone.006', Weight: 0.9684383869171143 -Vertex 794: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.010763943195343018 - Group: 'Bone.006', Weight: 0.9696179032325745 -Vertex 795: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03779533505439758 - Group: 'Bone.006', Weight: 0.9583359360694885 -Vertex 796: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.016359228640794754 - Group: 'Bone.006', Weight: 0.9668202996253967 -Vertex 797: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.030686406418681145 - Group: 'Bone.006', Weight: 0.9596565961837769 -Vertex 798: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02051340416073799 - Group: 'Bone.006', Weight: 0.9647431969642639 -Vertex 799: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9864917993545532 -Vertex 800: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.02403455600142479 - Group: 'Bone.006', Weight: 0.9629825949668884 -Vertex 801: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.05502011626958847 - Group: 'Bone.006', Weight: 0.9449796676635742 -Vertex 802: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04644029214978218 - Group: 'Bone.006', Weight: 0.9517796635627747 -Vertex 803: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04546990618109703 - Group: 'Bone.006', Weight: 0.9522648453712463 -Vertex 804: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0366780124604702 - Group: 'Bone.006', Weight: 0.956660807132721 -Vertex 805: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.03274970129132271 - Group: 'Bone.006', Weight: 0.9586249589920044 -Vertex 806: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.0375182218849659 - Group: 'Bone.006', Weight: 0.956240713596344 -Vertex 807: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.046438995748758316 - Group: 'Bone.006', Weight: 0.9517803192138672 -Vertex 808: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.045157913118600845 - Group: 'Bone.006', Weight: 0.9524208903312683 -Vertex 809: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.042767319828271866 - Group: 'Bone.006', Weight: 0.953616201877594 -Vertex 810: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041029226034879684 - Group: 'Bone.006', Weight: 0.9544852375984192 -Vertex 811: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.041769545525312424 - Group: 'Bone.006', Weight: 0.9541150331497192 -Vertex 812: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043980542570352554 - Group: 'Bone.006', Weight: 0.9530095458030701 -Vertex 813: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04348479583859444 - Group: 'Bone.006', Weight: 0.9532573819160461 -Vertex 814: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.043357785791158676 - Group: 'Bone.006', Weight: 0.9533209204673767 -Vertex 815: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04410143569111824 - Group: 'Bone.006', Weight: 0.9529491066932678 -Vertex 816: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.044254835695028305 - Group: 'Bone.006', Weight: 0.9528723955154419 -Vertex 817: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04274452105164528 - Group: 'Bone.006', Weight: 0.9536275267601013 -Vertex 818: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04287337884306908 - Group: 'Bone.006', Weight: 0.9535631537437439 -Vertex 819: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.021505000069737434 - Group: 'Bone.006', Weight: 0.9653851389884949 -Vertex 820: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9959333539009094 -Vertex 821: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.999135434627533 -Vertex 822: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9973409175872803 -Vertex 823: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9993407130241394 -Vertex 824: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9999207258224487 -Vertex 825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.04845422878861427 - Group: 'Bone.006', Weight: 0.9507728219032288 -Vertex 826: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9767301082611084 -Vertex 827: -Vertex groups: 1 - Group: 'Bone.006', Weight: 0.9858459234237671 -Vertex 828: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.2683241367340088 - Group: 'Bone.006', Weight: 0.8506501317024231 -Vertex 829: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8589328527450562 - Group: 'Bone.007', Weight: 0.0658877044916153 - Group: 'Bone.010', Weight: 0.051030222326517105 - Group: 'Bone.008', Weight: 0.07688211649656296 - Group: 'Bone.009', Weight: 0.023226406425237656 -Vertex 830: -Vertex groups: 5 - Group: 'Bone', Weight: 0.8449853658676147 - Group: 'Bone.007', Weight: 0.03592879697680473 - Group: 'Bone.010', Weight: 0.012579384259879589 - Group: 'Bone.008', Weight: 0.11893535405397415 - Group: 'Bone.009', Weight: 0.06295307725667953 -Vertex 831: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8520309925079346 - Group: 'Bone.008', Weight: 0.16253553330898285 - Group: 'Bone.009', Weight: 0.10325821489095688 -Vertex 832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.848515510559082 - Group: 'Bone.008', Weight: 0.18823201954364777 - Group: 'Bone.009', Weight: 0.13074654340744019 -Vertex 833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8497277498245239 - Group: 'Bone.008', Weight: 0.14893582463264465 - Group: 'Bone.009', Weight: 0.10927343368530273 -Vertex 834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8528621792793274 - Group: 'Bone.008', Weight: 0.1573100984096527 - Group: 'Bone.009', Weight: 0.1544872671365738 -Vertex 835: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7515237927436829 - Group: 'Bone.007', Weight: 0.17276491224765778 - Group: 'Bone.010', Weight: 0.10610337555408478 - Group: 'Bone.008', Weight: 0.1965748816728592 - Group: 'Bone.009', Weight: 0.07528159767389297 -Vertex 836: -Vertex groups: 5 - Group: 'Bone', Weight: 0.46352913975715637 - Group: 'Bone.007', Weight: 0.2331872433423996 - Group: 'Bone.010', Weight: 0.12269170582294464 - Group: 'Bone.008', Weight: 0.11181081831455231 - Group: 'Bone.009', Weight: 0.09308785945177078 -Vertex 837: -Vertex groups: 5 - Group: 'Bone', Weight: 0.19830887019634247 - Group: 'Bone.007', Weight: 0.1937292069196701 - Group: 'Bone.010', Weight: 0.17412716150283813 - Group: 'Bone.008', Weight: 0.015925852581858635 - Group: 'Bone.009', Weight: 0.17550669610500336 -Vertex 838: -Vertex groups: 5 - Group: 'Bone', Weight: 0.10874095559120178 - Group: 'Bone.007', Weight: 0.10911542177200317 - Group: 'Bone.010', Weight: 0.20657409727573395 - Group: 'Bone.008', Weight: 0.014454708434641361 - Group: 'Bone.009', Weight: 0.31553560495376587 -Vertex 839: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09656701236963272 - Group: 'Bone.007', Weight: 0.09745889157056808 - Group: 'Bone.010', Weight: 0.20145872235298157 - Group: 'Bone.008', Weight: 0.11600641906261444 - Group: 'Bone.009', Weight: 0.3171391189098358 -Vertex 840: -Vertex groups: 5 - Group: 'Bone', Weight: 0.24648097157478333 - Group: 'Bone.007', Weight: 0.22099927067756653 - Group: 'Bone.010', Weight: 0.12773503363132477 - Group: 'Bone.008', Weight: 0.2635701298713684 - Group: 'Bone.009', Weight: 0.10438781976699829 -Vertex 841: -Vertex groups: 5 - Group: 'Bone', Weight: 0.43054163455963135 - Group: 'Bone.007', Weight: 0.30232155323028564 - Group: 'Bone.010', Weight: 0.07668089121580124 - Group: 'Bone.008', Weight: 0.26692408323287964 - Group: 'Bone.009', Weight: 0.04365231469273567 -Vertex 842: -Vertex groups: 5 - Group: 'Bone', Weight: 0.7889158725738525 - Group: 'Bone.007', Weight: 0.20974105596542358 - Group: 'Bone.010', Weight: 0.042790915817022324 - Group: 'Bone.008', Weight: 0.2156112641096115 - Group: 'Bone.009', Weight: 0.02674214355647564 -Vertex 843: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8785732388496399 - Group: 'Bone.007', Weight: 0.06895037740468979 - Group: 'Bone.008', Weight: 0.07032854855060577 -Vertex 844: -Vertex groups: 4 - Group: 'Bone', Weight: 0.9110395908355713 - Group: 'Bone.007', Weight: 0.02564137987792492 - Group: 'Bone.008', Weight: 0.10901781916618347 - Group: 'Bone.009', Weight: 0.018701720982789993 -Vertex 845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8881605863571167 - Group: 'Bone.008', Weight: 0.14880843460559845 - Group: 'Bone.009', Weight: 0.07102806866168976 -Vertex 846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8558142185211182 - Group: 'Bone.008', Weight: 0.14305444061756134 - Group: 'Bone.009', Weight: 0.13029778003692627 -Vertex 847: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7118473649024963 - Group: 'Bone.007', Weight: 0.092614084482193 - Group: 'Bone.008', Weight: 0.48863542079925537 - Group: 'Bone.009', Weight: 0.08425432443618774 -Vertex 848: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6253067255020142 - Group: 'Bone.007', Weight: 0.02159280702471733 - Group: 'Bone.008', Weight: 0.564542293548584 - Group: 'Bone.009', Weight: 0.18550577759742737 -Vertex 849: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5909214019775391 - Group: 'Bone.008', Weight: 0.4250682294368744 - Group: 'Bone.009', Weight: 0.3271935284137726 -Vertex 850: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6613490581512451 - Group: 'Bone.008', Weight: 0.3168344497680664 - Group: 'Bone.009', Weight: 0.125390887260437 -Vertex 851: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6253069043159485 - Group: 'Bone.008', Weight: 0.30860716104507446 - Group: 'Bone.009', Weight: 0.25734975934028625 -Vertex 852: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5349921584129333 - Group: 'Bone.008', Weight: 0.3086419403553009 - Group: 'Bone.009', Weight: 0.09504684060811996 -Vertex 853: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5373737812042236 - Group: 'Bone.007', Weight: 0.02251698449254036 - Group: 'Bone.010', Weight: 0.0022223107516765594 - Group: 'Bone.008', Weight: 0.006150208413600922 - Group: 'Bone.009', Weight: 0.10391254723072052 -Vertex 854: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6245869398117065 - Group: 'Bone.007', Weight: 0.09062238782644272 - Group: 'Bone.010', Weight: 0.05888715758919716 - Group: 'Bone.008', Weight: 0.028674304485321045 - Group: 'Bone.009', Weight: 0.18176986277103424 -Vertex 855: -Vertex groups: 5 - Group: 'Bone', Weight: 0.32511717081069946 - Group: 'Bone.007', Weight: 0.10238052159547806 - Group: 'Bone.010', Weight: 0.07158808410167694 - Group: 'Bone.008', Weight: 0.036565184593200684 - Group: 'Bone.009', Weight: 0.1437702476978302 -Vertex 856: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2987836003303528 - Group: 'Bone.007', Weight: 0.030175108462572098 - Group: 'Bone.010', Weight: 0.014181728474795818 - Group: 'Bone.008', Weight: 0.16065213084220886 - Group: 'Bone.009', Weight: 0.09527707099914551 -Vertex 857: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2761015295982361 - Group: 'Bone.008', Weight: 0.28828054666519165 - Group: 'Bone.009', Weight: 0.09531640261411667 -Vertex 858: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2999836504459381 - Group: 'Bone.009', Weight: 0.14714309573173523 - Group: 'Bone', Weight: 0.309511661529541 -Vertex 859: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.2435813844203949 - Group: 'Bone.009', Weight: 0.1354822814464569 - Group: 'Bone', Weight: 0.31808000802993774 -Vertex 860: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26066240668296814 - Group: 'Bone.008', Weight: 0.1728520393371582 - Group: 'Bone.009', Weight: 0.10509823262691498 -Vertex 861: -Vertex groups: 4 - Group: 'Bone', Weight: 0.30925673246383667 - Group: 'Bone.007', Weight: 0.0410626046359539 - Group: 'Bone.008', Weight: 0.3764006197452545 - Group: 'Bone.009', Weight: 0.2676035761833191 -Vertex 862: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3777504861354828 - Group: 'Bone.007', Weight: 0.12209627777338028 - Group: 'Bone.010', Weight: 0.019276577979326248 - Group: 'Bone.008', Weight: 0.32179445028305054 - Group: 'Bone.009', Weight: 0.12503525614738464 -Vertex 863: -Vertex groups: 5 - Group: 'Bone', Weight: 0.1283872425556183 - Group: 'Bone.007', Weight: 0.0905766412615776 - Group: 'Bone.010', Weight: 0.1231839582324028 - Group: 'Bone.008', Weight: 0.288093626499176 - Group: 'Bone.009', Weight: 0.2436750829219818 -Vertex 864: -Vertex groups: 5 - Group: 'Bone', Weight: 0.03503577411174774 - Group: 'Bone.007', Weight: 0.004066344350576401 - Group: 'Bone.008', Weight: 0.24803707003593445 - Group: 'Bone.009', Weight: 0.11747637391090393 - Group: 'Bone.010', Weight: 0.007869084365665913 -Vertex 865: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.06750160455703735 - Group: 'Bone.009', Weight: 0.1502661108970642 - Group: 'Bone', Weight: 0.02321625128388405 -Vertex 866: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.1738802194595337 - Group: 'Bone', Weight: 0.03687771409749985 - Group: 'Bone.008', Weight: 0.1965225338935852 -Vertex 867: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.34953346848487854 - Group: 'Bone', Weight: 0.037623804062604904 - Group: 'Bone.008', Weight: 0.14063100516796112 -Vertex 868: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.035886313766241074 - Group: 'Bone.009', Weight: 0.14148665964603424 - Group: 'Bone', Weight: 0.02265036292374134 -Vertex 869: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06171990931034088 - Group: 'Bone.007', Weight: 0.009331300854682922 - Group: 'Bone.010', Weight: 0.029399190098047256 - Group: 'Bone.008', Weight: 0.06379136443138123 - Group: 'Bone.009', Weight: 0.1643614023923874 -Vertex 870: -Vertex groups: 5 - Group: 'Bone', Weight: 0.09244248270988464 - Group: 'Bone.007', Weight: 0.07110855728387833 - Group: 'Bone.010', Weight: 0.1020486131310463 - Group: 'Bone.008', Weight: 0.044955696910619736 - Group: 'Bone.009', Weight: 0.1545901894569397 -Vertex 871: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08492466807365417 - Group: 'Bone.007', Weight: 0.08073017001152039 - Group: 'Bone.010', Weight: 0.19031700491905212 - Group: 'Bone.008', Weight: 0.005598613526672125 - Group: 'Bone.009', Weight: 0.6888285875320435 -Vertex 872: -Vertex groups: 5 - Group: 'Bone', Weight: 0.07334128022193909 - Group: 'Bone.007', Weight: 0.07435312122106552 - Group: 'Bone.010', Weight: 0.18132030963897705 - Group: 'Bone.008', Weight: 0.09591842442750931 - Group: 'Bone.009', Weight: 0.5026860237121582 -Vertex 873: -Vertex groups: 3 - Group: 'Bone.008', Weight: 0.030819935724139214 - Group: 'Bone.009', Weight: 0.8704724907875061 - Group: 'Bone.010', Weight: 0.023124586790800095 -Vertex 874: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8733474016189575 - Group: 'Bone.010', Weight: 7.26980360923335e-05 -Vertex 875: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.877267062664032 -Vertex 876: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8725234270095825 - Group: 'Bone.008', Weight: 5.663483989337692e-06 -Vertex 877: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9001891613006592 - Group: 'Bone.008', Weight: 0.09625934064388275 -Vertex 878: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8797993063926697 - Group: 'Bone.008', Weight: 1.9476015950203873e-05 -Vertex 879: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8851880431175232 - Group: 'Bone.010', Weight: 0.0 -Vertex 880: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.14769670367240906 - Group: 'Bone.009', Weight: 0.8717692494392395 - Group: 'Bone.008', Weight: 0.0036289729177951813 -Vertex 881: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.15984995663166046 - Group: 'Bone.009', Weight: 0.8704036474227905 -Vertex 882: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.16039350628852844 - Group: 'Bone.009', Weight: 0.8738493919372559 -Vertex 883: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.929537832736969 - Group: 'Bone.012', Weight: 0.05449153482913971 -Vertex 884: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9068592190742493 - Group: 'Bone.012', Weight: 0.07047718018293381 - Group: 'Bone.010', Weight: 0.0 -Vertex 885: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9007666110992432 - Group: 'Bone.012', Weight: 0.07354369014501572 - Group: 'Bone.010', Weight: 0.0 -Vertex 886: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.9004970192909241 - Group: 'Bone.012', Weight: 0.0731680765748024 - Group: 'Bone.010', Weight: 0.022206632420420647 -Vertex 887: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8944700360298157 - Group: 'Bone.012', Weight: 0.06538684666156769 - Group: 'Bone.010', Weight: 0.016928771510720253 -Vertex 888: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8887174725532532 - Group: 'Bone.012', Weight: 0.05014185234904289 - Group: 'Bone.010', Weight: 0.0 -Vertex 889: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8966172337532043 - Group: 'Bone.012', Weight: 0.036453355103731155 -Vertex 890: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8912915587425232 - Group: 'Bone.012', Weight: 0.005181111395359039 -Vertex 891: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.9448468685150146 -Vertex 892: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9544322490692139 - Group: 'Bone.012', Weight: 0.009714700281620026 -Vertex 893: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9042831659317017 - Group: 'Bone.012', Weight: 0.08813729137182236 -Vertex 894: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7400257587432861 - Group: 'Bone.012', Weight: 0.25938302278518677 -Vertex 895: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.26529330015182495 - Group: 'Bone.012', Weight: 0.734406590461731 -Vertex 896: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.9212971329689026 - Group: 'Bone.012', Weight: 0.07769326865673065 -Vertex 897: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8970150351524353 - Group: 'Bone.012', Weight: 0.10239104181528091 -Vertex 898: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8616635203361511 - Group: 'Bone.012', Weight: 0.13592234253883362 -Vertex 899: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8365114331245422 - Group: 'Bone.012', Weight: 0.15784583985805511 -Vertex 900: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8249471187591553 - Group: 'Bone.012', Weight: 0.1671014428138733 - Group: 'Bone.010', Weight: 0.0 -Vertex 901: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8298318982124329 - Group: 'Bone.012', Weight: 0.16117197275161743 - Group: 'Bone.010', Weight: 0.0 -Vertex 902: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.8354093432426453 - Group: 'Bone.012', Weight: 0.15677087008953094 - Group: 'Bone.010', Weight: 0.0 -Vertex 903: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8519253730773926 - Group: 'Bone.012', Weight: 0.14309319853782654 -Vertex 904: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.8718616366386414 - Group: 'Bone.012', Weight: 0.12458934634923935 -Vertex 905: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.752106249332428 - Group: 'Bone.012', Weight: 0.24766013026237488 -Vertex 906: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.7304726839065552 - Group: 'Bone.012', Weight: 0.26923874020576477 -Vertex 907: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6702736020088196 - Group: 'Bone.012', Weight: 0.32864537835121155 -Vertex 908: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.659122109413147 - Group: 'Bone.012', Weight: 0.33811432123184204 -Vertex 909: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6442044377326965 - Group: 'Bone.012', Weight: 0.35213232040405273 -Vertex 910: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6499152779579163 - Group: 'Bone.012', Weight: 0.3460818827152252 - Group: 'Bone.010', Weight: 0.0 -Vertex 911: -Vertex groups: 3 - Group: 'Bone.009', Weight: 0.6490347385406494 - Group: 'Bone.012', Weight: 0.34761640429496765 - Group: 'Bone.010', Weight: 0.0 -Vertex 912: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6548815965652466 - Group: 'Bone.012', Weight: 0.3429493010044098 -Vertex 913: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.6710255146026611 - Group: 'Bone.012', Weight: 0.3273746371269226 -Vertex 914: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.22297373414039612 - Group: 'Bone.012', Weight: 0.7769038081169128 -Vertex 915: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.20667898654937744 - Group: 'Bone.012', Weight: 0.7931896448135376 -Vertex 916: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2303752899169922 - Group: 'Bone.012', Weight: 0.769208550453186 -Vertex 917: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.31665992736816406 - Group: 'Bone.012', Weight: 0.6820493340492249 -Vertex 918: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3265473544597626 - Group: 'Bone.012', Weight: 0.671741783618927 -Vertex 919: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3034777045249939 - Group: 'Bone.012', Weight: 0.6948085427284241 -Vertex 920: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.2830578088760376 - Group: 'Bone.012', Weight: 0.7155133485794067 -Vertex 921: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.29992571473121643 - Group: 'Bone.012', Weight: 0.6990696787834167 -Vertex 922: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.3019501864910126 - Group: 'Bone.012', Weight: 0.6973008513450623 -Vertex 923: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057897184044122696 - Group: 'Bone.012', Weight: 0.9420108199119568 -Vertex 924: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.027214540168642998 - Group: 'Bone.012', Weight: 0.9613520503044128 -Vertex 925: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.006753440946340561 - Group: 'Bone.012', Weight: 0.9715912938117981 -Vertex 926: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9656635522842407 - Group: 'Bone.009', Weight: 0.018504712730646133 -Vertex 927: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05198325589299202 - Group: 'Bone.012', Weight: 0.9477977156639099 -Vertex 928: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.057015154510736465 - Group: 'Bone.012', Weight: 0.9426941275596619 -Vertex 929: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.056073591113090515 - Group: 'Bone.012', Weight: 0.9436264634132385 -Vertex 930: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.05682213604450226 - Group: 'Bone.012', Weight: 0.9428949952125549 -Vertex 931: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07576077431440353 - Group: 'Bone.012', Weight: 0.9239805340766907 -Vertex 932: -Vertex groups: 2 - Group: 'Bone.009', Weight: 0.07528554648160934 - Group: 'Bone.012', Weight: 0.9245132207870483 -Vertex 933: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9916853904724121 -Vertex 934: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9872339963912964 -Vertex 935: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9943768978118896 -Vertex 936: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9964232444763184 -Vertex 937: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957266449928284 -Vertex 938: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9918572902679443 -Vertex 939: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9906853437423706 -Vertex 940: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9903767704963684 -Vertex 941: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9894649982452393 -Vertex 942: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9856845736503601 -Vertex 943: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984524250030518 -Vertex 944: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990214109420776 -Vertex 945: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9993562698364258 -Vertex 946: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982997179031372 -Vertex 947: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9984474778175354 -Vertex 948: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982941746711731 -Vertex 949: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9982725977897644 -Vertex 950: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9985377192497253 -Vertex 951: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9990679621696472 -Vertex 952: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9994365572929382 -Vertex 953: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9957771301269531 -Vertex 954: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9911217093467712 -Vertex 955: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9865168929100037 -Vertex 956: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9870774149894714 -Vertex 957: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9897192716598511 -Vertex 958: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9941179752349854 -Vertex 959: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9966683983802795 -Vertex 960: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9975331425666809 -Vertex 961: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9979636073112488 -Vertex 962: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9976112246513367 -Vertex 963: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8356290459632874 - Group: 'Bone.013', Weight: 0.155769482254982 -Vertex 964: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.11023678630590439 - Group: 'Bone.013', Weight: 0.8226659893989563 - Group: 'Bone.014', Weight: 0.06709658354520798 -Vertex 965: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8928141593933105 - Group: 'Bone.013', Weight: 0.10397066920995712 -Vertex 966: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9629697799682617 - Group: 'Bone.013', Weight: 0.022611867636442184 -Vertex 967: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.980617880821228 -Vertex 968: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9839587211608887 -Vertex 969: -Vertex groups: 1 - Group: 'Bone.012', Weight: 0.9811531901359558 -Vertex 970: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9729132056236267 - Group: 'Bone.013', Weight: 0.0034754611551761627 -Vertex 971: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9507371187210083 - Group: 'Bone.013', Weight: 0.046667907387018204 -Vertex 972: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8936433792114258 - Group: 'Bone.013', Weight: 0.1034514307975769 -Vertex 973: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8520858883857727 - Group: 'Bone.013', Weight: 0.14178043603897095 -Vertex 974: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08106648176908493 - Group: 'Bone.014', Weight: 0.9156118631362915 -Vertex 975: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9938746690750122 -Vertex 976: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.1104588732123375 - Group: 'Bone.013', Weight: 0.8612957000732422 - Group: 'Bone.014', Weight: 0.006489608436822891 -Vertex 977: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.32337430119514465 - Group: 'Bone.013', Weight: 0.667302668094635 -Vertex 978: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.7485604882240295 - Group: 'Bone.013', Weight: 0.2489832043647766 -Vertex 979: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.859098494052887 - Group: 'Bone.013', Weight: 0.14013585448265076 -Vertex 980: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.90076744556427 - Group: 'Bone.013', Weight: 0.09898579120635986 -Vertex 981: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.9102324843406677 - Group: 'Bone.013', Weight: 0.08955670148134232 -Vertex 982: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8898838758468628 - Group: 'Bone.013', Weight: 0.10948866605758667 -Vertex 983: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.8042793273925781 - Group: 'Bone.013', Weight: 0.19342727959156036 -Vertex 984: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2430807650089264 - Group: 'Bone.013', Weight: 0.7423655986785889 -Vertex 985: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8095656037330627 - Group: 'Bone.014', Weight: 0.1728336215019226 -Vertex 986: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.09234710782766342 - Group: 'Bone.014', Weight: 0.9059643149375916 -Vertex 987: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.7688719034194946 - Group: 'Bone.014', Weight: 0.22036820650100708 -Vertex 988: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0759439468383789 - Group: 'Bone.014', Weight: 0.9229891300201416 -Vertex 989: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.023531507700681686 - Group: 'Bone.014', Weight: 0.962644636631012 -Vertex 990: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8419238328933716 - Group: 'Bone.014', Weight: 0.15169087052345276 -Vertex 991: -Vertex groups: 3 - Group: 'Bone.012', Weight: 0.03233952447772026 - Group: 'Bone.013', Weight: 0.9319908618927002 - Group: 'Bone.014', Weight: 0.0036784037947654724 -Vertex 992: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.11094259470701218 - Group: 'Bone.013', Weight: 0.8812416195869446 -Vertex 993: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.26401638984680176 - Group: 'Bone.013', Weight: 0.733676552772522 -Vertex 994: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5023772120475769 - Group: 'Bone.013', Weight: 0.49703508615493774 -Vertex 995: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5328972339630127 - Group: 'Bone.013', Weight: 0.46692633628845215 -Vertex 996: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.5353614687919617 - Group: 'Bone.013', Weight: 0.46448567509651184 -Vertex 997: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4967253506183624 - Group: 'Bone.013', Weight: 0.5027380585670471 -Vertex 998: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.2527356743812561 - Group: 'Bone.013', Weight: 0.7443113327026367 -Vertex 999: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.07329875975847244 - Group: 'Bone.013', Weight: 0.9100895524024963 -Vertex 1000: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8673534393310547 - Group: 'Bone.014', Weight: 0.12116784602403641 -Vertex 1001: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.08723840117454529 - Group: 'Bone.014', Weight: 0.9117347598075867 -Vertex 1002: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9948338270187378 -Vertex 1003: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.430217981338501 - Group: 'Bone.013', Weight: 0.5693046450614929 -Vertex 1004: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4486432671546936 - Group: 'Bone.013', Weight: 0.5509958863258362 -Vertex 1005: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.4069460332393646 - Group: 'Bone.013', Weight: 0.5920473337173462 -Vertex 1006: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.1707800030708313 - Group: 'Bone.013', Weight: 0.8260439038276672 -Vertex 1007: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09317527711391449 - Group: 'Bone.013', Weight: 0.9049866795539856 -Vertex 1008: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.04313257709145546 - Group: 'Bone.013', Weight: 0.9408546686172485 -Vertex 1009: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.8876457810401917 - Group: 'Bone.014', Weight: 0.10589023679494858 -Vertex 1010: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9758409857749939 -Vertex 1011: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9509205222129822 - Group: 'Bone.014', Weight: 0.045657720416784286 -Vertex 1012: -Vertex groups: 2 - Group: 'Bone.012', Weight: 0.09863393753767014 - Group: 'Bone.013', Weight: 0.8992750644683838 -Vertex 1013: -Vertex groups: 1 - Group: 'Bone.013', Weight: 0.9711035490036011 -Vertex 1014: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.9208778738975525 - Group: 'Bone.014', Weight: 0.07621174305677414 -Vertex 1015: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.0859060287475586 - Group: 'Bone.014', Weight: 0.9135221242904663 -Vertex 1016: -Vertex groups: 1 - Group: 'Bone.014', Weight: 0.9865049123764038 -Vertex 1017: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.04541530832648277 - Group: 'Bone.014', Weight: 0.9517936706542969 -Vertex 1018: -Vertex groups: 2 - Group: 'Bone.013', Weight: 0.06139352172613144 - Group: 'Bone.014', Weight: 0.938413143157959 -Vertex 1019: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789704084396362 - Group: 'Bone.017', Weight: 0.0 -Vertex 1020: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9833627343177795 - Group: 'Bone.017', Weight: 0.0 -Vertex 1021: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9789552092552185 - Group: 'Bone.017', Weight: 0.0 -Vertex 1022: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9831852316856384 - Group: 'Bone.017', Weight: 0.0 -Vertex 1023: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9862167239189148 - Group: 'Bone.017', Weight: 0.0 -Vertex 1024: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9861648678779602 - Group: 'Bone.017', Weight: 0.0 -Vertex 1025: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9880514144897461 - Group: 'Bone.017', Weight: 0.0 -Vertex 1026: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9879601001739502 - Group: 'Bone.017', Weight: 0.0 -Vertex 1027: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9916906952857971 - Group: 'Bone.017', Weight: 0.0 -Vertex 1028: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9934735894203186 -Vertex 1029: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945500493049622 -Vertex 1030: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.991435170173645 - Group: 'Bone.017', Weight: 0.0 -Vertex 1031: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933164119720459 - Group: 'Bone.017', Weight: 0.0 -Vertex 1032: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9944959282875061 -Vertex 1033: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.976727306842804 - Group: 'Bone.017', Weight: 0.0 -Vertex 1034: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9742161631584167 - Group: 'Bone.017', Weight: 0.0 -Vertex 1035: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9715494513511658 - Group: 'Bone.017', Weight: 0.0 -Vertex 1036: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.975468099117279 - Group: 'Bone.017', Weight: 0.0 -Vertex 1037: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0038907062262296677 - Group: 'Bone.018', Weight: 0.9656864404678345 -Vertex 1038: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002806751523166895 - Group: 'Bone.018', Weight: 0.966323971748352 -Vertex 1039: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.010127171874046326 - Group: 'Bone.018', Weight: 0.9620375633239746 -Vertex 1040: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9727579951286316 - Group: 'Bone.017', Weight: 0.0 -Vertex 1041: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9787578582763672 - Group: 'Bone.017', Weight: 0.0 -Vertex 1042: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9827514290809631 - Group: 'Bone.017', Weight: 0.0 -Vertex 1043: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9873471856117249 - Group: 'Bone.017', Weight: 0.0 -Vertex 1044: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9886396527290344 - Group: 'Bone.017', Weight: 0.0 -Vertex 1045: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9914793968200684 - Group: 'Bone.017', Weight: 0.0 -Vertex 1046: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9931162595748901 - Group: 'Bone.017', Weight: 0.0 -Vertex 1047: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9944013357162476 - Group: 'Bone.017', Weight: 0.0 -Vertex 1048: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01617445982992649 - Group: 'Bone.018', Weight: 0.9584065675735474 -Vertex 1049: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.023458044975996017 - Group: 'Bone.018', Weight: 0.9539604783058167 -Vertex 1050: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01660693809390068 - Group: 'Bone.018', Weight: 0.9582077860832214 -Vertex 1051: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.015539725311100483 - Group: 'Bone.018', Weight: 0.9588027596473694 -Vertex 1052: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016626175493001938 - Group: 'Bone.018', Weight: 0.9578419327735901 -Vertex 1053: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.025301499292254448 - Group: 'Bone.018', Weight: 0.9528020024299622 -Vertex 1054: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009643575176596642 - Group: 'Bone.018', Weight: 0.9613392949104309 -Vertex 1055: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02791609801352024 - Group: 'Bone.018', Weight: 0.9509379267692566 -Vertex 1056: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016102850437164307 - Group: 'Bone.018', Weight: 0.9564434885978699 -Vertex 1057: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.036205146461725235 - Group: 'Bone.018', Weight: 0.9459987878799438 -Vertex 1058: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04176492616534233 - Group: 'Bone.018', Weight: 0.9425215721130371 -Vertex 1059: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9689260125160217 - Group: 'Bone.017', Weight: 0.0 -Vertex 1060: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9763424396514893 - Group: 'Bone.017', Weight: 0.0 -Vertex 1061: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0015810485929250717 - Group: 'Bone.018', Weight: 0.9639103412628174 -Vertex 1062: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9725874662399292 - Group: 'Bone.017', Weight: 0.0 -Vertex 1063: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823517203330994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1064: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9877137541770935 - Group: 'Bone.017', Weight: 0.0 -Vertex 1065: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9892720580101013 - Group: 'Bone.017', Weight: 0.0 -Vertex 1066: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9911639094352722 - Group: 'Bone.017', Weight: 0.0 -Vertex 1067: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9928457736968994 - Group: 'Bone.017', Weight: 0.0 -Vertex 1068: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9942501187324524 - Group: 'Bone.017', Weight: 0.0 -Vertex 1069: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9798253774642944 - Group: 'Bone.017', Weight: 0.0 -Vertex 1070: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9856138229370117 - Group: 'Bone.017', Weight: 0.0 -Vertex 1071: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9884172081947327 - Group: 'Bone.017', Weight: 0.0 -Vertex 1072: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9913889765739441 - Group: 'Bone.017', Weight: 0.0 -Vertex 1073: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05601194128394127 - Group: 'Bone.018', Weight: 0.9298772215843201 -Vertex 1074: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05217650160193443 - Group: 'Bone.018', Weight: 0.9346686601638794 -Vertex 1075: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.04476926103234291 - Group: 'Bone.018', Weight: 0.9406135678291321 -Vertex 1076: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.03082641214132309 - Group: 'Bone.018', Weight: 0.947902262210846 -Vertex 1077: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.01443416066467762 - Group: 'Bone.018', Weight: 0.9560104012489319 -Vertex 1078: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0011360058560967445 - Group: 'Bone.018', Weight: 0.9670941829681396 -Vertex 1079: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9770844578742981 - Group: 'Bone.017', Weight: 0.0 -Vertex 1080: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9857821464538574 - Group: 'Bone.017', Weight: 0.0 -Vertex 1081: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9897351264953613 - Group: 'Bone.017', Weight: 0.0 -Vertex 1082: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9917396306991577 - Group: 'Bone.017', Weight: 0.0 -Vertex 1083: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9933488368988037 - Group: 'Bone.017', Weight: 0.0 -Vertex 1084: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9927600622177124 - Group: 'Bone.017', Weight: 0.0 -Vertex 1085: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9945182800292969 - Group: 'Bone.017', Weight: 0.0 -Vertex 1086: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06837629526853561 - Group: 'Bone.018', Weight: 0.9144551157951355 - Group: 'Bone', Weight: 0.013301041908562183 -Vertex 1087: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09582455456256866 - Group: 'Bone.018', Weight: 0.8802605271339417 -Vertex 1088: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.1448286473751068 - Group: 'Bone.018', Weight: 0.8194341659545898 -Vertex 1089: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013498025946319103 - Group: 'Bone.017', Weight: 0.24388551712036133 - Group: 'Bone.018', Weight: 0.6970865726470947 -Vertex 1090: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.06422767043113708 - Group: 'Bone.018', Weight: 0.9196268320083618 - Group: 'Bone', Weight: 0.002450642641633749 -Vertex 1091: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.08776334673166275 - Group: 'Bone.018', Weight: 0.8902770280838013 -Vertex 1092: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.059485286474227905 - Group: 'Bone.018', Weight: 0.925494372844696 - Group: 'Bone', Weight: 3.855587056023069e-05 -Vertex 1093: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051841944456100464 - Group: 'Bone.018', Weight: 0.9348831176757812 -Vertex 1094: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0328064002096653 - Group: 'Bone.018', Weight: 0.9473863840103149 -Vertex 1095: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.009497742168605328 - Group: 'Bone.018', Weight: 0.9622140526771545 -Vertex 1096: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9741747379302979 - Group: 'Bone.017', Weight: 0.0 -Vertex 1097: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858487248420715 -Vertex 1098: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9902932643890381 -Vertex 1099: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9920611381530762 -Vertex 1100: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9942412972450256 -Vertex 1101: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895195364952087 -Vertex 1102: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870237112045288 -Vertex 1103: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9874412417411804 -Vertex 1104: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9849302172660828 -Vertex 1105: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9819066524505615 -Vertex 1106: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9734198451042175 -Vertex 1107: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.016224365681409836 - Group: 'Bone.018', Weight: 0.9579892754554749 -Vertex 1108: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.051546625792980194 - Group: 'Bone.018', Weight: 0.9349786639213562 -Vertex 1109: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.06570038944482803 - Group: 'Bone.018', Weight: 0.9174656867980957 -Vertex 1110: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.07642433792352676 - Group: 'Bone.018', Weight: 0.9042428731918335 -Vertex 1111: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.12646698951721191 - Group: 'Bone.018', Weight: 0.8420544266700745 -Vertex 1112: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915085434913635 -Vertex 1113: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960761070251465 -Vertex 1114: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960528016090393 -Vertex 1115: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9959996342658997 -Vertex 1116: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9960431456565857 -Vertex 1117: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961386322975159 -Vertex 1118: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956402778625488 -Vertex 1119: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9945873022079468 -Vertex 1120: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9931912422180176 -Vertex 1121: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954627752304077 -Vertex 1122: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9966580867767334 -Vertex 1123: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9975084662437439 -Vertex 1124: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976484775543213 -Vertex 1125: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971357583999634 -Vertex 1126: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9982092380523682 -Vertex 1127: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971091151237488 -Vertex 1128: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971656203269958 -Vertex 1129: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9972027540206909 -Vertex 1130: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979942440986633 -Vertex 1131: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979594349861145 -Vertex 1132: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979198575019836 -Vertex 1133: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9985341429710388 -Vertex 1134: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987320899963379 -Vertex 1135: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987677335739136 -Vertex 1136: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999369204044342 -Vertex 1137: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9992771744728088 -Vertex 1138: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990739822387695 -Vertex 1139: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987154603004456 -Vertex 1140: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9981816411018372 -Vertex 1141: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970861673355103 -Vertex 1142: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997737407684326 -Vertex 1143: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999610185623169 -Vertex 1144: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993613958358765 -Vertex 1145: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990031719207764 -Vertex 1146: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9984426498413086 -Vertex 1147: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9967636466026306 -Vertex 1148: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9915934205055237 -Vertex 1149: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9943699836730957 -Vertex 1150: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9913835525512695 -Vertex 1151: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955872893333435 -Vertex 1152: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929479360580444 -Vertex 1153: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887833595275879 -Vertex 1154: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9870696663856506 -Vertex 1155: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9822887778282166 -Vertex 1156: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815152287483215 -Vertex 1157: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.973604142665863 -Vertex 1158: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.972356915473938 -Vertex 1159: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9832476377487183 -Vertex 1160: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845163822174072 -Vertex 1161: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9844151139259338 -Vertex 1162: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9804648756980896 -Vertex 1163: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9757853150367737 -Vertex 1164: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814425706863403 -Vertex 1165: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9767199158668518 -Vertex 1166: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9814919829368591 -Vertex 1167: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771055579185486 -Vertex 1168: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.002323191612958908 - Group: 'Bone.018', Weight: 0.9666595458984375 -Vertex 1169: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9742202162742615 -Vertex 1170: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9730738401412964 -Vertex 1171: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.005908951163291931 - Group: 'Bone.018', Weight: 0.964162290096283 -Vertex 1172: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.030845005065202713 - Group: 'Bone.018', Weight: 0.948407769203186 -Vertex 1173: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.020401928573846817 - Group: 'Bone.018', Weight: 0.9538782835006714 -Vertex 1174: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0693485215306282 - Group: 'Bone.018', Weight: 0.9122636914253235 -Vertex 1175: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.058107923716306686 - Group: 'Bone.018', Weight: 0.9241417646408081 -Vertex 1176: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.09156500548124313 - Group: 'Bone.018', Weight: 0.881403386592865 -Vertex 1177: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.10949798673391342 - Group: 'Bone.018', Weight: 0.8628126382827759 -Vertex 1178: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0899830162525177 - Group: 'Bone.018', Weight: 0.8867266178131104 -Vertex 1179: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.11372848600149155 - Group: 'Bone.018', Weight: 0.855889081954956 -Vertex 1180: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.013528126291930676 - Group: 'Bone.017', Weight: 0.18062449991703033 - Group: 'Bone.018', Weight: 0.7734479904174805 -Vertex 1181: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.015038522891700268 - Group: 'Bone.017', Weight: 0.21707764267921448 - Group: 'Bone.018', Weight: 0.7297062873840332 -Vertex 1182: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.04813151806592941 - Group: 'Bone.017', Weight: 0.3530848026275635 - Group: 'Bone.018', Weight: 0.5644408464431763 - Group: 'Bone', Weight: 0.048820625990629196 -Vertex 1183: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05241331085562706 - Group: 'Bone.017', Weight: 0.31897902488708496 - Group: 'Bone.018', Weight: 0.6043463945388794 - Group: 'Bone', Weight: 0.012955551967024803 -Vertex 1184: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.05639436095952988 - Group: 'Bone.017', Weight: 0.2927201986312866 - Group: 'Bone.018', Weight: 0.6332656741142273 - Group: 'Bone', Weight: 0.001829237211495638 -Vertex 1185: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.02891084924340248 - Group: 'Bone.017', Weight: 0.1685410439968109 - Group: 'Bone.018', Weight: 0.7832304239273071 - Group: 'Bone', Weight: 3.7295827496564016e-05 -Vertex 1186: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06646837294101715 - Group: 'Bone.017', Weight: 0.27129724621772766 - Group: 'Bone.018', Weight: 0.650500476360321 - Group: 'Bone', Weight: 0.0019908349495381117 -Vertex 1187: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0376269556581974 - Group: 'Bone.017', Weight: 0.15156632661819458 - Group: 'Bone.018', Weight: 0.7980735898017883 - Group: 'Bone', Weight: 0.01304581854492426 -Vertex 1188: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.07949759811162949 - Group: 'Bone.017', Weight: 0.2572069764137268 - Group: 'Bone.018', Weight: 0.6543341875076294 - Group: 'Bone', Weight: 0.03943066671490669 -Vertex 1189: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.047974295914173126 - Group: 'Bone.017', Weight: 0.14838860929012299 - Group: 'Bone.018', Weight: 0.7973789572715759 - Group: 'Bone', Weight: 0.04675235226750374 -Vertex 1190: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.11062522232532501 - Group: 'Bone.017', Weight: 0.254137247800827 - Group: 'Bone.018', Weight: 0.6500359773635864 - Group: 'Bone', Weight: 0.11669911444187164 -Vertex 1191: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0701325535774231 - Group: 'Bone.017', Weight: 0.1476127654314041 - Group: 'Bone.018', Weight: 0.7981038093566895 - Group: 'Bone', Weight: 0.051565803587436676 -Vertex 1192: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.20024509727954865 - Group: 'Bone.017', Weight: 0.2753484845161438 - Group: 'Bone.018', Weight: 0.6442751288414001 - Group: 'Bone', Weight: 0.1331811547279358 -Vertex 1193: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08188586682081223 - Group: 'Bone.017', Weight: 0.14985249936580658 - Group: 'Bone.018', Weight: 0.7983970642089844 - Group: 'Bone', Weight: 0.029526185244321823 -Vertex 1194: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2432783842086792 - Group: 'Bone.017', Weight: 0.2923167645931244 - Group: 'Bone.018', Weight: 0.645307719707489 - Group: 'Bone', Weight: 0.09468252956867218 -Vertex 1195: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.06933348625898361 - Group: 'Bone.017', Weight: 0.15148219466209412 - Group: 'Bone.018', Weight: 0.7983967065811157 - Group: 'Bone', Weight: 0.010705234482884407 -Vertex 1196: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2340157926082611 - Group: 'Bone.017', Weight: 0.3025156259536743 - Group: 'Bone.018', Weight: 0.6434760093688965 - Group: 'Bone', Weight: 0.05347352847456932 -Vertex 1197: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.1529110074043274 - Group: 'Bone.018', Weight: 0.7976957559585571 - Group: 'Bone.001', Weight: 0.03523317724466324 - Group: 'Bone', Weight: 0.0007423105416819453 -Vertex 1198: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.17203465104103088 - Group: 'Bone.017', Weight: 0.30983060598373413 - Group: 'Bone.018', Weight: 0.6407691836357117 - Group: 'Bone.002', Weight: 0.006399966776371002 - Group: 'Bone', Weight: 0.01776076853275299 -Vertex 1199: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.009990513324737549 - Group: 'Bone.001', Weight: 0.07395397126674652 - Group: 'Bone.017', Weight: 0.5098379850387573 - Group: 'Bone.018', Weight: 0.37414172291755676 - Group: 'Bone', Weight: 0.0927681252360344 -Vertex 1200: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.08325565606355667 - Group: 'Bone.017', Weight: 0.5037521719932556 - Group: 'Bone.018', Weight: 0.38050171732902527 - Group: 'Bone', Weight: 0.04234285652637482 -Vertex 1201: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.0976019948720932 - Group: 'Bone.017', Weight: 0.5017039179801941 - Group: 'Bone.018', Weight: 0.3762386441230774 - Group: 'Bone', Weight: 0.012032467871904373 -Vertex 1202: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.12744830548763275 - Group: 'Bone.017', Weight: 0.49926474690437317 - Group: 'Bone.018', Weight: 0.3565904200077057 - Group: 'Bone', Weight: 0.009601984173059464 -Vertex 1203: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15938925743103027 - Group: 'Bone.017', Weight: 0.4730292856693268 - Group: 'Bone.018', Weight: 0.35896411538124084 - Group: 'Bone', Weight: 0.07689570635557175 -Vertex 1204: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.23828232288360596 - Group: 'Bone.017', Weight: 0.47607237100601196 - Group: 'Bone.018', Weight: 0.3507783114910126 - Group: 'Bone', Weight: 0.17523744702339172 -Vertex 1205: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4060044586658478 - Group: 'Bone.017', Weight: 0.5206118226051331 - Group: 'Bone.018', Weight: 0.344442754983902 - Group: 'Bone', Weight: 0.19240185618400574 -Vertex 1206: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4755653142929077 - Group: 'Bone.017', Weight: 0.5571330785751343 - Group: 'Bone.018', Weight: 0.3372209370136261 - Group: 'Bone', Weight: 0.172596275806427 -Vertex 1207: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.4542393684387207 - Group: 'Bone.017', Weight: 0.5662106871604919 - Group: 'Bone.018', Weight: 0.34979960322380066 - Group: 'Bone.002', Weight: 0.013252082280814648 - Group: 'Bone', Weight: 0.1310514509677887 -Vertex 1208: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.04295789822936058 - Group: 'Bone.001', Weight: 0.3503582179546356 - Group: 'Bone.017', Weight: 0.5772204399108887 - Group: 'Bone.018', Weight: 0.35407698154449463 - Group: 'Bone', Weight: 0.07110806554555893 -Vertex 1209: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08806004375219345 - Group: 'Bone.018', Weight: 0.8832212686538696 - Group: 'Bone', Weight: 0.0016149792354553938 -Vertex 1210: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08339180797338486 - Group: 'Bone.018', Weight: 0.8875249624252319 - Group: 'Bone', Weight: 0.007127232849597931 -Vertex 1211: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.0827254056930542 - Group: 'Bone.018', Weight: 0.88773512840271 - Group: 'Bone', Weight: 0.008076860569417477 - Group: 'Bone.001', Weight: 0.0013390679378062487 -Vertex 1212: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.08481051027774811 - Group: 'Bone.018', Weight: 0.8853533267974854 - Group: 'Bone', Weight: 0.002871721051633358 - Group: 'Bone.001', Weight: 0.003698586020618677 -Vertex 1213: -Vertex groups: 4 - Group: 'Bone.017', Weight: 0.086313396692276 - Group: 'Bone.018', Weight: 0.8840394020080566 - Group: 'Bone', Weight: 0.00018298765644431114 - Group: 'Bone.001', Weight: 0.0027494565583765507 -Vertex 1214: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.08735592663288116 - Group: 'Bone.018', Weight: 0.8832799196243286 - Group: 'Bone.001', Weight: 0.0005543195293284953 -Vertex 1215: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05702703073620796 - Group: 'Bone.018', Weight: 0.9245452880859375 - Group: 'Bone', Weight: 2.257883534184657e-05 -Vertex 1216: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.028392894193530083 - Group: 'Bone.018', Weight: 0.9482694864273071 -Vertex 1217: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05626782774925232 - Group: 'Bone.018', Weight: 0.9247165322303772 - Group: 'Bone', Weight: 0.0004067645641043782 -Vertex 1218: -Vertex groups: 3 - Group: 'Bone.017', Weight: 0.05466065928339958 - Group: 'Bone.018', Weight: 0.9263477325439453 - Group: 'Bone', Weight: 0.0003236081975046545 -Vertex 1219: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.055338796228170395 - Group: 'Bone.018', Weight: 0.9254565238952637 -Vertex 1220: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05632884427905083 - Group: 'Bone.018', Weight: 0.9243643879890442 -Vertex 1221: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.05703442171216011 - Group: 'Bone.018', Weight: 0.9236432313919067 -Vertex 1222: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.0237131305038929 - Group: 'Bone.018', Weight: 0.9509801268577576 -Vertex 1223: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02274046465754509 - Group: 'Bone.018', Weight: 0.9512816071510315 -Vertex 1224: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.022558655589818954 - Group: 'Bone.018', Weight: 0.9513073563575745 -Vertex 1225: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02260323241353035 - Group: 'Bone.018', Weight: 0.9513139724731445 -Vertex 1226: -Vertex groups: 2 - Group: 'Bone.017', Weight: 0.02259230986237526 - Group: 'Bone.018', Weight: 0.9513756632804871 -Vertex 1227: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9714720845222473 -Vertex 1228: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9706374406814575 -Vertex 1229: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9705008268356323 -Vertex 1230: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9704365730285645 -Vertex 1231: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9795219302177429 -Vertex 1232: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9785106182098389 -Vertex 1233: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9771671891212463 -Vertex 1234: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9836146831512451 -Vertex 1235: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9752912521362305 -Vertex 1236: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9824960231781006 -Vertex 1237: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9887411594390869 -Vertex 1238: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9881675839424133 -Vertex 1239: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9800984263420105 -Vertex 1240: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9871535897254944 -Vertex 1241: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9891319274902344 -Vertex 1242: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9912247061729431 -Vertex 1243: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9954847097396851 -Vertex 1244: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9965736269950867 -Vertex 1245: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9935045838356018 -Vertex 1246: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9895634055137634 -Vertex 1247: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9976142644882202 -Vertex 1248: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9986856579780579 -Vertex 1249: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991649985313416 -Vertex 1250: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994508624076843 -Vertex 1251: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996494054794312 -Vertex 1252: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9997934103012085 -Vertex 1253: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9889891147613525 -Vertex 1254: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9868380427360535 -Vertex 1255: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9925969243049622 -Vertex 1256: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9894602298736572 -Vertex 1257: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9852715134620667 -Vertex 1258: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9929565787315369 -Vertex 1259: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9939352869987488 -Vertex 1260: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9955039620399475 -Vertex 1261: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9956940412521362 -Vertex 1262: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9946184754371643 -Vertex 1263: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9961066246032715 -Vertex 1264: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9971102476119995 -Vertex 1265: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9970676898956299 -Vertex 1266: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9969350099563599 -Vertex 1267: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9980116486549377 -Vertex 1268: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979714155197144 -Vertex 1269: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9979318380355835 -Vertex 1270: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987937808036804 -Vertex 1271: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987552165985107 -Vertex 1272: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9987674355506897 -Vertex 1273: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9990921020507812 -Vertex 1274: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993412494659424 -Vertex 1275: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9996433854103088 -Vertex 1276: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9994075894355774 -Vertex 1277: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991334676742554 -Vertex 1278: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9991081953048706 -Vertex 1279: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999462902545929 -Vertex 1280: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9993901252746582 -Vertex 1281: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.999549925327301 -Vertex 1282: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9873188734054565 -Vertex 1283: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9875327944755554 -Vertex 1284: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9858105182647705 -Vertex 1285: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.980743408203125 -Vertex 1286: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9853591322898865 -Vertex 1287: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9867160320281982 -Vertex 1288: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9840300679206848 -Vertex 1289: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9847583770751953 -Vertex 1290: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.98484867811203 -Vertex 1291: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9845244884490967 -Vertex 1292: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9839382767677307 -Vertex 1293: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826976656913757 -Vertex 1294: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9809815287590027 -Vertex 1295: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9799208045005798 -Vertex 1296: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9811970591545105 -Vertex 1297: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982987642288208 -Vertex 1298: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.981879711151123 -Vertex 1299: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833371043205261 -Vertex 1300: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9834237098693848 -Vertex 1301: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9833049178123474 -Vertex 1302: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9830325245857239 -Vertex 1303: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9825944304466248 -Vertex 1304: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9819585084915161 - Group: 'Bone', Weight: 0.00019958695338573307 -Vertex 1305: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9815822839736938 -Vertex 1306: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829614758491516 -Vertex 1307: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826599955558777 -Vertex 1308: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825152158737183 - Group: 'Bone', Weight: 0.004795894958078861 -Vertex 1309: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9829074144363403 -Vertex 1310: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9827575087547302 -Vertex 1311: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820778369903564 -Vertex 1312: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9817925095558167 -Vertex 1313: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982059895992279 - Group: 'Bone', Weight: 0.0053455037996172905 -Vertex 1314: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824521541595459 - Group: 'Bone', Weight: 0.00197826256044209 -Vertex 1315: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.982725203037262 -Vertex 1316: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9828875660896301 -Vertex 1317: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9826231002807617 - Group: 'Bone', Weight: 7.731989171588793e-05 -Vertex 1318: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825509190559387 - Group: 'Bone', Weight: 0.0027257809415459633 -Vertex 1319: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824110269546509 - Group: 'Bone', Weight: 0.013039471581578255 -Vertex 1320: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821290373802185 - Group: 'Bone', Weight: 0.03102922812104225 -Vertex 1321: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9820008873939514 -Vertex 1322: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821812510490417 - Group: 'Bone.001', Weight: 0.0 -Vertex 1323: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.982585072517395 - Group: 'Bone', Weight: 1.0905931048910134e-05 -Vertex 1324: -Vertex groups: 1 - Group: 'Bone.018', Weight: 0.9826421737670898 -Vertex 1325: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9825176000595093 - Group: 'Bone', Weight: 0.0013780283043161035 -Vertex 1326: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824551939964294 - Group: 'Bone', Weight: 0.019833296537399292 - Group: 'Bone.001', Weight: 0.0034756853710860014 -Vertex 1327: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9822384715080261 - Group: 'Bone.001', Weight: 0.0 -Vertex 1328: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9820865988731384 - Group: 'Bone.001', Weight: 0.0 -Vertex 1329: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821801781654358 - Group: 'Bone', Weight: 0.08171025663614273 -Vertex 1330: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823527336120605 - Group: 'Bone', Weight: 0.06682143360376358 -Vertex 1331: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824455976486206 - Group: 'Bone', Weight: 0.03577161952853203 -Vertex 1332: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824986457824707 - Group: 'Bone', Weight: 0.01197676733136177 -Vertex 1333: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9824206829071045 - Group: 'Bone', Weight: 0.07270007580518723 -Vertex 1334: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823662042617798 - Group: 'Bone', Weight: 0.13770920038223267 - Group: 'Bone.001', Weight: 0.0 -Vertex 1335: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.98232102394104 - Group: 'Bone', Weight: 0.16004589200019836 - Group: 'Bone.001', Weight: 0.0 -Vertex 1336: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9822452664375305 - Group: 'Bone', Weight: 0.16936060786247253 - Group: 'Bone.001', Weight: 0.0 -Vertex 1337: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9821885824203491 - Group: 'Bone.001', Weight: 0.0 -Vertex 1338: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.982245922088623 - Group: 'Bone', Weight: 0.015367220155894756 - Group: 'Bone.001', Weight: 0.0 -Vertex 1339: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9823752641677856 - Group: 'Bone', Weight: 0.038688041269779205 - Group: 'Bone.001', Weight: 0.0 -Vertex 1340: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9824126362800598 - Group: 'Bone', Weight: 0.055918093770742416 - Group: 'Bone.001', Weight: 6.79705772199668e-05 - Group: 'Bone.019', Weight: 0.000465345976408571 -Vertex 1341: -Vertex groups: 3 - Group: 'Bone.018', Weight: 0.9824158549308777 - Group: 'Bone', Weight: 0.07306653261184692 - Group: 'Bone.001', Weight: 0.0 -Vertex 1342: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823576211929321 - Group: 'Bone', Weight: 0.16675598919391632 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone.019', Weight: 0.0009519412415102124 -Vertex 1343: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823566675186157 - Group: 'Bone', Weight: 0.08686985820531845 - Group: 'Bone.001', Weight: 1.7752001895132707e-06 - Group: 'Bone.019', Weight: 0.0449376218020916 -Vertex 1344: -Vertex groups: 2 - Group: 'Bone.018', Weight: 0.9823043346405029 - Group: 'Bone.001', Weight: 0.0 -Vertex 1345: -Vertex groups: 4 - Group: 'Bone.018', Weight: 0.9823124408721924 - Group: 'Bone', Weight: 0.2182604819536209 - Group: 'Bone.001', Weight: 0.003761173691600561 - Group: 'Bone.019', Weight: 0.002839894499629736 -Vertex 1346: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.02926338091492653 - Group: 'Bone.001', Weight: 0.11145651340484619 - Group: 'Bone.017', Weight: 0.5913837552070618 - Group: 'Bone.018', Weight: 0.24335449934005737 - Group: 'Bone', Weight: 0.17971915006637573 -Vertex 1347: -Vertex groups: 5 - Group: 'Bone', Weight: 0.34148910641670227 - Group: 'Bone.001', Weight: 0.1681414246559143 - Group: 'Bone.002', Weight: 0.05424099788069725 - Group: 'Bone.017', Weight: 0.6098799705505371 - Group: 'Bone.018', Weight: 0.15031634271144867 -Vertex 1348: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.12663418054580688 - Group: 'Bone.017', Weight: 0.581707775592804 - Group: 'Bone.018', Weight: 0.2489113211631775 - Group: 'Bone.002', Weight: 0.0009320899844169617 - Group: 'Bone', Weight: 0.10160458832979202 -Vertex 1349: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.15087871253490448 - Group: 'Bone.017', Weight: 0.5690671801567078 - Group: 'Bone.018', Weight: 0.24789784848690033 - Group: 'Bone', Weight: 0.03849789872765541 -Vertex 1350: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2101806104183197 - Group: 'Bone.017', Weight: 0.5385613441467285 - Group: 'Bone.018', Weight: 0.23246371746063232 - Group: 'Bone', Weight: 0.01725897751748562 -Vertex 1351: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.28133755922317505 - Group: 'Bone.017', Weight: 0.4910910129547119 - Group: 'Bone.018', Weight: 0.2260138988494873 - Group: 'Bone', Weight: 0.09519536048173904 -Vertex 1352: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.38348889350891113 - Group: 'Bone.017', Weight: 0.5042745471000671 - Group: 'Bone.018', Weight: 0.21756064891815186 - Group: 'Bone', Weight: 0.1935875564813614 -Vertex 1353: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.5397412776947021 - Group: 'Bone.017', Weight: 0.5836195945739746 - Group: 'Bone.018', Weight: 0.21086983382701874 - Group: 'Bone', Weight: 0.21056310832500458 -Vertex 1354: -Vertex groups: 5 - Group: 'Bone.001', Weight: 0.570751965045929 - Group: 'Bone.017', Weight: 0.6215512156486511 - Group: 'Bone.018', Weight: 0.2158074527978897 - Group: 'Bone.002', Weight: 0.01208411529660225 - Group: 'Bone', Weight: 0.20266416668891907 -Vertex 1355: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.037495698779821396 - Group: 'Bone.001', Weight: 0.5551884174346924 - Group: 'Bone.017', Weight: 0.6338463425636292 - Group: 'Bone.018', Weight: 0.22209221124649048 - Group: 'Bone', Weight: 0.18184003233909607 -Vertex 1356: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.0650595873594284 - Group: 'Bone.001', Weight: 0.46807295083999634 - Group: 'Bone.017', Weight: 0.641959011554718 - Group: 'Bone.018', Weight: 0.22432248294353485 - Group: 'Bone', Weight: 0.13225257396697998 -Vertex 1357: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.017256442457437515 - Group: 'Bone.001', Weight: 0.21122224628925323 - Group: 'Bone.017', Weight: 0.5874816179275513 - Group: 'Bone.018', Weight: 0.14990286529064178 - Group: 'Bone', Weight: 0.2312624454498291 -Vertex 1358: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.2891344130039215 - Group: 'Bone.017', Weight: 0.5442581176757812 - Group: 'Bone.018', Weight: 0.14491406083106995 - Group: 'Bone', Weight: 0.10837865620851517 -Vertex 1359: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.4122537672519684 - Group: 'Bone.017', Weight: 0.4607459604740143 - Group: 'Bone.018', Weight: 0.13731656968593597 - Group: 'Bone', Weight: 0.03387150168418884 -Vertex 1360: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.539280116558075 - Group: 'Bone.017', Weight: 0.4005507826805115 - Group: 'Bone.018', Weight: 0.1278507113456726 - Group: 'Bone', Weight: 0.09256597608327866 -Vertex 1361: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6019283533096313 - Group: 'Bone.017', Weight: 0.5164726376533508 - Group: 'Bone.018', Weight: 0.11156029999256134 - Group: 'Bone', Weight: 0.20541705191135406 -Vertex 1362: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6034464836120605 - Group: 'Bone.017', Weight: 0.6380648016929626 - Group: 'Bone.018', Weight: 0.10630785673856735 - Group: 'Bone', Weight: 0.21874865889549255 -Vertex 1363: -Vertex groups: 5 - Group: 'Bone.002', Weight: 0.03215296193957329 - Group: 'Bone.001', Weight: 0.6028603315353394 - Group: 'Bone.017', Weight: 0.6457054615020752 - Group: 'Bone.018', Weight: 0.11479435861110687 - Group: 'Bone', Weight: 0.22043657302856445 -Vertex 1364: -Vertex groups: 5 - Group: 'Bone.018', Weight: 0.11934825032949448 - Group: 'Bone.001', Weight: 0.5955468416213989 - Group: 'Bone.002', Weight: 0.06471554934978485 - Group: 'Bone.017', Weight: 0.6528090238571167 - Group: 'Bone', Weight: 0.22067777812480927 -Vertex 1365: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2166115641593933 - Group: 'Bone.001', Weight: 0.5208699107170105 - Group: 'Bone.002', Weight: 0.10019354522228241 - Group: 'Bone.017', Weight: 0.6567152738571167 - Group: 'Bone.018', Weight: 0.12322326004505157 -Vertex 1366: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5418702363967896 - Group: 'Bone.001', Weight: 0.2777066230773926 - Group: 'Bone.002', Weight: 0.09651590883731842 - Group: 'Bone.017', Weight: 0.554860532283783 - Group: 'Bone.018', Weight: 0.06859012693166733 -Vertex 1367: -Vertex groups: 5 - Group: 'Bone', Weight: 0.513403058052063 - Group: 'Bone.001', Weight: 0.5225083827972412 - Group: 'Bone.002', Weight: 0.04147205874323845 - Group: 'Bone.017', Weight: 0.5129285454750061 - Group: 'Bone.018', Weight: 0.0741887092590332 -Vertex 1368: -Vertex groups: 5 - Group: 'Bone', Weight: 0.35494399070739746 - Group: 'Bone.001', Weight: 0.6600168347358704 - Group: 'Bone.002', Weight: 0.004403933882713318 - Group: 'Bone.017', Weight: 0.45656561851501465 - Group: 'Bone.018', Weight: 0.06966955214738846 -Vertex 1369: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.633813738822937 - Group: 'Bone.017', Weight: 0.4085814654827118 - Group: 'Bone.018', Weight: 0.07783562690019608 - Group: 'Bone', Weight: 0.06361326575279236 -Vertex 1370: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6970891356468201 - Group: 'Bone.017', Weight: 0.6218900084495544 - Group: 'Bone.018', Weight: 0.039022814482450485 - Group: 'Bone', Weight: 0.047101471573114395 -Vertex 1371: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6170694231987 - Group: 'Bone.017', Weight: 0.6134940981864929 - Group: 'Bone.018', Weight: 0.031470488756895065 - Group: 'Bone', Weight: 0.17326313257217407 -Vertex 1372: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6052581667900085 - Group: 'Bone.017', Weight: 0.44002920389175415 - Group: 'Bone', Weight: 0.3032377362251282 -Vertex 1373: -Vertex groups: 5 - Group: 'Bone', Weight: 0.2258252054452896 - Group: 'Bone.001', Weight: 0.6055542826652527 - Group: 'Bone.002', Weight: 0.013284320943057537 - Group: 'Bone.017', Weight: 0.572124719619751 - Group: 'Bone.018', Weight: 0.04247603192925453 -Vertex 1374: -Vertex groups: 5 - Group: 'Bone', Weight: 0.22584125399589539 - Group: 'Bone.001', Weight: 0.5510634779930115 - Group: 'Bone.002', Weight: 0.0822443962097168 - Group: 'Bone.017', Weight: 0.573694109916687 - Group: 'Bone.018', Weight: 0.05352865532040596 -Vertex 1375: -Vertex groups: 5 - Group: 'Bone', Weight: 0.23315538465976715 - Group: 'Bone.001', Weight: 0.32415908575057983 - Group: 'Bone.002', Weight: 0.14953464269638062 - Group: 'Bone.017', Weight: 0.5980188846588135 - Group: 'Bone.018', Weight: 0.056406036019325256 -Vertex 1376: -Vertex groups: 5 - Group: 'Bone', Weight: 0.3026023805141449 - Group: 'Bone.001', Weight: 0.27212417125701904 - Group: 'Bone.002', Weight: 0.17845313251018524 - Group: 'Bone.017', Weight: 0.28909382224082947 - Group: 'Bone.018', Weight: 0.009694162756204605 -Vertex 1377: -Vertex groups: 5 - Group: 'Bone', Weight: 0.33094993233680725 - Group: 'Bone.001', Weight: 0.4782991111278534 - Group: 'Bone.002', Weight: 0.08756639808416367 - Group: 'Bone.017', Weight: 0.19913047552108765 - Group: 'Bone.018', Weight: 0.00026992708444595337 -Vertex 1378: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7224988341331482 - Group: 'Bone.019', Weight: 0.3195175230503082 - Group: 'Bone', Weight: 0.49981606006622314 -Vertex 1379: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.650032639503479 - Group: 'Bone.019', Weight: 0.8507969975471497 - Group: 'Bone', Weight: 0.02933635748922825 -Vertex 1380: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8716312050819397 - Group: 'Bone.001', Weight: 0.2193063348531723 -Vertex 1381: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4848996698856354 - Group: 'Bone.019', Weight: 0.8666531443595886 -Vertex 1382: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5074094533920288 - Group: 'Bone.019', Weight: 0.8167428374290466 -Vertex 1383: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6339002847671509 - Group: 'Bone.019', Weight: 0.28563910722732544 -Vertex 1384: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7181031703948975 -Vertex 1385: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137176275253296 -Vertex 1386: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9139415621757507 -Vertex 1387: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.022165637463331223 - Group: 'Bone.003', Weight: 0.9142498970031738 -Vertex 1388: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16926109790802002 - Group: 'Bone.003', Weight: 0.8998615741729736 -Vertex 1389: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.34626761078834534 - Group: 'Bone.003', Weight: 0.8272830247879028 -Vertex 1390: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7859901189804077 - Group: 'Bone.003', Weight: 0.49965739250183105 -Vertex 1391: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7481104135513306 - Group: 'Bone.019', Weight: 0.32763880491256714 - Group: 'Bone', Weight: 0.310763418674469 -Vertex 1392: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5145878791809082 - Group: 'Bone.001', Weight: 0.7581652402877808 - Group: 'Bone.017', Weight: 0.21529880166053772 - Group: 'Bone.019', Weight: 0.023389000445604324 -Vertex 1393: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5648119449615479 - Group: 'Bone.001', Weight: 0.603712797164917 - Group: 'Bone.017', Weight: 0.037156958132982254 - Group: 'Bone.019', Weight: 0.12867596745491028 -Vertex 1394: -Vertex groups: 3 - Group: 'Bone', Weight: 0.603728711605072 - Group: 'Bone.001', Weight: 0.6218260526657104 - Group: 'Bone.019', Weight: 0.09929458051919937 -Vertex 1395: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5442600846290588 - Group: 'Bone.001', Weight: 0.6862508058547974 - Group: 'Bone.019', Weight: 0.09648192673921585 -Vertex 1396: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4363469183444977 - Group: 'Bone.001', Weight: 0.6749752163887024 - Group: 'Bone.019', Weight: 0.1661364883184433 -Vertex 1397: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6480445861816406 - Group: 'Bone.001', Weight: 0.7857532501220703 - Group: 'Bone.019', Weight: 0.048970721662044525 -Vertex 1398: -Vertex groups: 4 - Group: 'Bone.001', Weight: 0.6136295795440674 - Group: 'Bone', Weight: 0.7353718280792236 - Group: 'Bone.017', Weight: 0.00827653519809246 - Group: 'Bone.019', Weight: 1.2436173165042419e-05 -Vertex 1399: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.627544641494751 - Group: 'Bone.019', Weight: 0.3248058259487152 - Group: 'Bone', Weight: 0.7730883955955505 -Vertex 1400: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.616271436214447 - Group: 'Bone', Weight: 0.8265290856361389 - Group: 'Bone.019', Weight: 0.26396381855010986 -Vertex 1401: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6328370571136475 - Group: 'Bone.019', Weight: 0.3114159405231476 - Group: 'Bone', Weight: 0.47403883934020996 -Vertex 1402: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.693393349647522 - Group: 'Bone', Weight: 0.3349516689777374 - Group: 'Bone.019', Weight: 0.22946953773498535 -Vertex 1403: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7015586495399475 - Group: 'Bone', Weight: 0.4057728350162506 - Group: 'Bone.019', Weight: 0.23283372819423676 -Vertex 1404: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49792009592056274 - Group: 'Bone', Weight: 0.6278452277183533 - Group: 'Bone.019', Weight: 0.2522246241569519 -Vertex 1405: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7072322368621826 - Group: 'Bone', Weight: 0.5921094417572021 - Group: 'Bone.019', Weight: 0.32775968313217163 -Vertex 1406: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7586128115653992 - Group: 'Bone.019', Weight: 0.334273099899292 - Group: 'Bone', Weight: 0.6065701842308044 -Vertex 1407: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7573258280754089 - Group: 'Bone.019', Weight: 0.8490149974822998 - Group: 'Bone', Weight: 0.08159297704696655 -Vertex 1408: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8755266666412354 - Group: 'Bone.001', Weight: 0.34226420521736145 -Vertex 1409: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48645928502082825 - Group: 'Bone.019', Weight: 0.8661389350891113 -Vertex 1410: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5425899624824524 - Group: 'Bone.019', Weight: 0.8241971135139465 -Vertex 1411: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6559945940971375 - Group: 'Bone.019', Weight: 0.38528886437416077 -Vertex 1412: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7243412733078003 - Group: 'Bone.019', Weight: 8.010178862605244e-05 -Vertex 1413: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9142240881919861 -Vertex 1414: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9140783548355103 -Vertex 1415: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.03546399995684624 - Group: 'Bone.003', Weight: 0.9143658876419067 -Vertex 1416: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.187074676156044 - Group: 'Bone.003', Weight: 0.8974252939224243 -Vertex 1417: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.36915645003318787 - Group: 'Bone.003', Weight: 0.8269540667533875 -Vertex 1418: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7700766921043396 - Group: 'Bone.003', Weight: 0.5341420769691467 -Vertex 1419: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.7592578530311584 - Group: 'Bone.019', Weight: 0.8286239504814148 - Group: 'Bone', Weight: 0.28596919775009155 -Vertex 1420: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.6566795110702515 - Group: 'Bone.019', Weight: 0.8571760654449463 - Group: 'Bone', Weight: 0.45998069643974304 -Vertex 1421: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.35951414704322815 - Group: 'Bone.019', Weight: 0.8209258317947388 - Group: 'Bone', Weight: 0.3520870804786682 -Vertex 1422: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1659044772386551 - Group: 'Bone.019', Weight: 0.8129245042800903 - Group: 'Bone', Weight: 0.21874240040779114 -Vertex 1423: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.13587312400341034 - Group: 'Bone.019', Weight: 0.8530242443084717 - Group: 'Bone', Weight: 0.19917906820774078 -Vertex 1424: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.19202491641044617 - Group: 'Bone.019', Weight: 0.912525475025177 - Group: 'Bone', Weight: 0.06180786341428757 -Vertex 1425: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.3307937979698181 - Group: 'Bone.019', Weight: 0.7877449989318848 - Group: 'Bone', Weight: 0.050135742872953415 -Vertex 1426: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.8714926838874817 - Group: 'Bone', Weight: 0.00046991053386591375 - Group: 'Bone.001', Weight: 0.09015215188264847 -Vertex 1427: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.49615833163261414 - Group: 'Bone.019', Weight: 0.867252767086029 -Vertex 1428: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5248697996139526 - Group: 'Bone.019', Weight: 0.8080756068229675 -Vertex 1429: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7723374366760254 - Group: 'Bone.019', Weight: 0.2705228328704834 -Vertex 1430: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8876039981842041 - Group: 'Bone.019', Weight: 0.003964472562074661 -Vertex 1431: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9148496985435486 -Vertex 1432: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9137299656867981 -Vertex 1433: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.01082988828420639 - Group: 'Bone.003', Weight: 0.9145824909210205 -Vertex 1434: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.14906835556030273 - Group: 'Bone.003', Weight: 0.9011957049369812 -Vertex 1435: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3295785188674927 - Group: 'Bone.003', Weight: 0.8141276836395264 -Vertex 1436: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7930581569671631 - Group: 'Bone.003', Weight: 0.43813198804855347 -Vertex 1437: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.7733920812606812 - Group: 'Bone', Weight: 0.05126602202653885 - Group: 'Bone.001', Weight: 0.24808162450790405 -Vertex 1438: -Vertex groups: 4 - Group: 'Bone.019', Weight: 0.888555109500885 - Group: 'Bone', Weight: 0.002535079140216112 - Group: 'Bone.001', Weight: 0.015431300736963749 - Group: 'Bone.003', Weight: 0.0003230486181564629 -Vertex 1439: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5258697867393494 - Group: 'Bone.019', Weight: 0.8589507341384888 -Vertex 1440: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5818902850151062 - Group: 'Bone.019', Weight: 0.6939638257026672 -Vertex 1441: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8358323574066162 - Group: 'Bone.019', Weight: 0.2099408209323883 -Vertex 1442: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9209422469139099 -Vertex 1443: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9383629560470581 -Vertex 1444: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9149281978607178 -Vertex 1445: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0053068362176418304 - Group: 'Bone.003', Weight: 0.9208148717880249 -Vertex 1446: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.15124115347862244 - Group: 'Bone.003', Weight: 0.8796364068984985 -Vertex 1447: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3355768620967865 - Group: 'Bone.003', Weight: 0.7325390577316284 -Vertex 1448: -Vertex groups: 3 - Group: 'Bone.019', Weight: 0.9804896712303162 - Group: 'Bone', Weight: 0.022969186305999756 - Group: 'Bone.003', Weight: 0.0003996257728431374 -Vertex 1449: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.5811924934387207 - Group: 'Bone.019', Weight: 0.8555305600166321 - Group: 'Bone', Weight: 0.0010889795375987887 -Vertex 1450: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.7963248491287231 - Group: 'Bone.019', Weight: 0.3001575469970703 - Group: 'Bone', Weight: 1.5643779988749884e-05 -Vertex 1451: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8979879021644592 - Group: 'Bone.019', Weight: 0.09272637963294983 -Vertex 1452: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9316033124923706 -Vertex 1453: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9379990696907043 -Vertex 1454: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9182569980621338 -Vertex 1455: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.0037789717316627502 - Group: 'Bone.003', Weight: 0.9237834811210632 -Vertex 1456: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.16280946135520935 - Group: 'Bone.003', Weight: 0.8689578771591187 -Vertex 1457: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3130691647529602 - Group: 'Bone.003', Weight: 0.7529572248458862 -Vertex 1458: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9750412106513977 - Group: 'Bone', Weight: 0.08991826325654984 -Vertex 1459: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.24119509756565094 - Group: 'Bone.019', Weight: 0.8626559972763062 - Group: 'Bone', Weight: 0.00842268206179142 -Vertex 1460: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8210585117340088 - Group: 'Bone.019', Weight: 0.204509437084198 - Group: 'Bone', Weight: 0.0015984517522156239 -Vertex 1461: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9355599284172058 - Group: 'Bone.019', Weight: 0.057606298476457596 - Group: 'Bone', Weight: 7.572236791020259e-05 -Vertex 1462: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9697620868682861 -Vertex 1463: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.965182900428772 -Vertex 1464: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9412181973457336 -Vertex 1465: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9368966817855835 -Vertex 1466: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.1649232655763626 - Group: 'Bone.003', Weight: 0.8569390773773193 -Vertex 1467: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.63620525598526 - Group: 'Bone.003', Weight: 0.4485093057155609 -Vertex 1468: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8500397205352783 - Group: 'Bone.003', Weight: 0.19951783120632172 -Vertex 1469: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.9614209532737732 - Group: 'Bone', Weight: 0.009337535127997398 -Vertex 1470: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.16582560539245605 - Group: 'Bone.019', Weight: 0.8641679286956787 - Group: 'Bone', Weight: 0.010655015707015991 -Vertex 1471: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.8290325999259949 - Group: 'Bone.019', Weight: 0.1814354807138443 - Group: 'Bone', Weight: 0.0019537440966814756 -Vertex 1472: -Vertex groups: 3 - Group: 'Bone.003', Weight: 0.9485765695571899 - Group: 'Bone.019', Weight: 0.03866461291909218 - Group: 'Bone', Weight: 9.917547140503302e-05 -Vertex 1473: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9751423001289368 -Vertex 1474: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9631302952766418 -Vertex 1475: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9688652753829956 -Vertex 1476: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9644224047660828 -Vertex 1477: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.12386544048786163 - Group: 'Bone.003', Weight: 0.8783332705497742 -Vertex 1478: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2947755753993988 - Group: 'Bone.003', Weight: 0.7083457708358765 -Vertex 1479: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8027012944221497 - Group: 'Bone.003', Weight: 0.1981232613325119 -Vertex 1480: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.1389400064945221 - Group: 'Bone.019', Weight: 0.9322065114974976 - Group: 'Bone', Weight: 0.0390721894800663 -Vertex 1481: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3416832685470581 - Group: 'Bone.019', Weight: 0.8381265997886658 -Vertex 1482: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8620601892471313 - Group: 'Bone.019', Weight: 0.20945724844932556 -Vertex 1483: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.9206888675689697 - Group: 'Bone.019', Weight: 0.058680761605501175 -Vertex 1484: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9374944567680359 -Vertex 1485: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9294270873069763 -Vertex 1486: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9325017333030701 -Vertex 1487: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04338991269469261 - Group: 'Bone.003', Weight: 0.9281017780303955 -Vertex 1488: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.24390526115894318 - Group: 'Bone.003', Weight: 0.8113779425621033 -Vertex 1489: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.6445726156234741 - Group: 'Bone.003', Weight: 0.46278151869773865 -Vertex 1490: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8354334235191345 - Group: 'Bone.003', Weight: 0.25300541520118713 -Vertex 1491: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.49698540568351746 - Group: 'Bone.019', Weight: 0.8914806246757507 - Group: 'Bone', Weight: 0.00028604865656234324 -Vertex 1492: -Vertex groups: 2 - Group: 'Bone.019', Weight: 0.8853343725204468 - Group: 'Bone.001', Weight: 0.5589047074317932 -Vertex 1493: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4290800094604492 - Group: 'Bone.019', Weight: 0.8599041104316711 -Vertex 1494: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.3914620578289032 - Group: 'Bone.019', Weight: 0.8512650728225708 -Vertex 1495: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.701336145401001 - Group: 'Bone.019', Weight: 0.6940193772315979 -Vertex 1496: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8292294144630432 - Group: 'Bone.019', Weight: 0.30796319246292114 -Vertex 1497: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7431570291519165 - Group: 'Bone.019', Weight: 0.23494771122932434 -Vertex 1498: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8636488914489746 - Group: 'Bone.019', Weight: 0.0766606405377388 -Vertex 1499: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8356986045837402 -Vertex 1500: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9051586389541626 -Vertex 1501: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9156310558319092 -Vertex 1502: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9185211658477783 -Vertex 1503: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.915596604347229 -Vertex 1504: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9196407198905945 -Vertex 1505: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.04647933319211006 - Group: 'Bone.003', Weight: 0.915953516960144 -Vertex 1506: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.053265802562236786 - Group: 'Bone.003', Weight: 0.9190389513969421 -Vertex 1507: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.2754269242286682 - Group: 'Bone.003', Weight: 0.8405168056488037 -Vertex 1508: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.20528797805309296 - Group: 'Bone.003', Weight: 0.8872525095939636 -Vertex 1509: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.3953257203102112 - Group: 'Bone.003', Weight: 0.8009032607078552 -Vertex 1510: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.5777320861816406 - Group: 'Bone.003', Weight: 0.6711984872817993 -Vertex 1511: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8118686676025391 - Group: 'Bone.003', Weight: 0.4338683784008026 -Vertex 1512: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.7795971035957336 - Group: 'Bone.003', Weight: 0.47931718826293945 -Vertex 1513: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5544651746749878 - Group: 'Bone.001', Weight: 0.6944223642349243 - Group: 'Bone.002', Weight: 0.05284786969423294 - Group: 'Bone.017', Weight: 0.2130715250968933 - Group: 'Bone.018', Weight: 0.005988318473100662 -Vertex 1514: -Vertex groups: 5 - Group: 'Bone', Weight: 0.5409947037696838 - Group: 'Bone.001', Weight: 0.31019482016563416 - Group: 'Bone.002', Weight: 0.12774690985679626 - Group: 'Bone.017', Weight: 0.26976585388183594 - Group: 'Bone.018', Weight: 0.009915411472320557 -Vertex 1515: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6699144840240479 - Group: 'Bone.001', Weight: 0.1792837232351303 - Group: 'Bone.002', Weight: 0.04849093034863472 - Group: 'Bone.017', Weight: 0.07550165057182312 -Vertex 1516: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6541296243667603 - Group: 'Bone.001', Weight: 0.30901581048965454 - Group: 'Bone.002', Weight: 0.12491901218891144 - Group: 'Bone.017', Weight: 0.09100447595119476 -Vertex 1517: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6160906553268433 - Group: 'Bone.001', Weight: 0.37532511353492737 - Group: 'Bone.019', Weight: 0.03362644091248512 -Vertex 1518: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6947914361953735 - Group: 'Bone.001', Weight: 0.04562719166278839 - Group: 'Bone.002', Weight: 0.039447229355573654 - Group: 'Bone.017', Weight: 0.02383667603135109 -Vertex 1519: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5635777115821838 - Group: 'Bone.001', Weight: 0.2229529321193695 - Group: 'Bone.002', Weight: 0.08399464190006256 - Group: 'Bone.017', Weight: 0.03259511664509773 -Vertex 1520: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7609079480171204 - Group: 'Bone.001', Weight: 0.07703847438097 - Group: 'Bone.002', Weight: 0.05154874175786972 -Vertex 1521: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8175694942474365 - Group: 'Bone.001', Weight: 0.08995527029037476 - Group: 'Bone.002', Weight: 0.009603425860404968 -Vertex 1522: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7282434105873108 - Group: 'Bone.001', Weight: 0.16831238567829132 -Vertex 1523: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6662145256996155 - Group: 'Bone.001', Weight: 0.5747835636138916 - Group: 'Bone.019', Weight: 0.057117871940135956 -Vertex 1524: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6411224007606506 - Group: 'Bone.001', Weight: 0.5759727358818054 - Group: 'Bone.019', Weight: 0.06298144906759262 -Vertex 1525: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5190505385398865 - Group: 'Bone.001', Weight: 0.5946534276008606 - Group: 'Bone.019', Weight: 0.10789915919303894 -Vertex 1526: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7407363057136536 - Group: 'Bone.001', Weight: 0.30349624156951904 - Group: 'Bone.019', Weight: 0.01195843517780304 -Vertex 1527: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7954162359237671 - Group: 'Bone.001', Weight: 0.3568774163722992 - Group: 'Bone.019', Weight: 0.01990285888314247 -Vertex 1528: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6041063070297241 - Group: 'Bone.001', Weight: 0.3671090304851532 - Group: 'Bone.019', Weight: 0.017331963405013084 -Vertex 1529: -Vertex groups: 3 - Group: 'Bone', Weight: 0.847758412361145 - Group: 'Bone.001', Weight: 0.07215920835733414 - Group: 'Bone.002', Weight: 0.009313929826021194 -Vertex 1530: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8525163531303406 - Group: 'Bone.001', Weight: 0.10730073601007462 -Vertex 1531: -Vertex groups: 2 - Group: 'Bone', Weight: 0.854895293712616 - Group: 'Bone.001', Weight: 0.14162643253803253 -Vertex 1532: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8542492389678955 - Group: 'Bone.001', Weight: 0.1631683111190796 -Vertex 1533: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8561170101165771 - Group: 'Bone.001', Weight: 0.1726178377866745 -Vertex 1534: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8305062055587769 - Group: 'Bone.001', Weight: 0.17787334322929382 -Vertex 1535: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8696056008338928 - Group: 'Bone.001', Weight: 0.03019493632018566 - Group: 'Bone.010', Weight: 0.0 -Vertex 1536: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8675880432128906 - Group: 'Bone.001', Weight: 0.05708647146821022 - Group: 'Bone.010', Weight: 0.0 -Vertex 1537: -Vertex groups: 3 - Group: 'Bone', Weight: 0.86358243227005 - Group: 'Bone.001', Weight: 0.07604075968265533 - Group: 'Bone.010', Weight: 0.0 -Vertex 1538: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8582631945610046 - Group: 'Bone.001', Weight: 0.08527589589357376 - Group: 'Bone.010', Weight: 0.0012770295143127441 -Vertex 1539: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8579972982406616 - Group: 'Bone.001', Weight: 0.08675878494977951 -Vertex 1540: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580412864685059 - Group: 'Bone.001', Weight: 0.08069532364606857 -Vertex 1541: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4436609745025635 - Group: 'Bone.001', Weight: 0.6591537594795227 - Group: 'Bone.002', Weight: 0.014441515319049358 - Group: 'Bone.017', Weight: 0.13374891877174377 -Vertex 1542: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8014025092124939 - Group: 'Bone.001', Weight: 0.420757919549942 - Group: 'Bone.017', Weight: 0.004880093038082123 -Vertex 1543: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5808058381080627 - Group: 'Bone.001', Weight: 0.2904035747051239 - Group: 'Bone.019', Weight: 0.12813322246074677 -Vertex 1544: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8334051966667175 - Group: 'Bone.001', Weight: 0.3139386475086212 - Group: 'Bone.019', Weight: 0.0004624206339940429 - Group: 'Bone.007', Weight: 0.0 -Vertex 1545: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8503735661506653 - Group: 'Bone.001', Weight: 0.24048128724098206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1546: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8580865263938904 - Group: 'Bone.001', Weight: 0.06244148686528206 - Group: 'Bone.007', Weight: 0.0 -Vertex 1547: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703024387359619 - Group: 'Bone.007', Weight: 0.019654814153909683 - Group: 'Bone.010', Weight: 0.019493810832500458 -Vertex 1548: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8703235387802124 - Group: 'Bone.010', Weight: 0.006898257881402969 - Group: 'Bone.007', Weight: 0.03353261575102806 -Vertex 1549: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8681514859199524 - Group: 'Bone.001', Weight: 0.012067839503288269 - Group: 'Bone.007', Weight: 0.044438671320676804 - Group: 'Bone.010', Weight: 0.009308443404734135 -Vertex 1550: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8590198755264282 - Group: 'Bone.001', Weight: 0.018564928323030472 - Group: 'Bone.007', Weight: 0.050019439309835434 - Group: 'Bone.010', Weight: 0.0033719476778060198 -Vertex 1551: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8579993844032288 - Group: 'Bone.001', Weight: 0.01635177806019783 - Group: 'Bone.007', Weight: 0.05176018923521042 - Group: 'Bone.010', Weight: 0.013775941915810108 -Vertex 1552: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8580276966094971 - Group: 'Bone.001', Weight: 0.006670862436294556 - Group: 'Bone.007', Weight: 0.048809971660375595 - Group: 'Bone.010', Weight: 0.04719095304608345 -Vertex 1553: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580414056777954 - Group: 'Bone.007', Weight: 0.01950855180621147 -Vertex 1554: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8295074701309204 - Group: 'Bone.001', Weight: 0.260960191488266 - Group: 'Bone.002', Weight: 0.07293161749839783 - Group: 'Bone.017', Weight: 0.05643150582909584 -Vertex 1555: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8319680094718933 - Group: 'Bone.001', Weight: 0.2941161096096039 - Group: 'Bone.002', Weight: 0.14711563289165497 - Group: 'Bone.017', Weight: 0.08430159837007523 -Vertex 1556: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8511545062065125 - Group: 'Bone.001', Weight: 0.2704049050807953 - Group: 'Bone.002', Weight: 0.06341083347797394 - Group: 'Bone.017', Weight: 0.0073459334671497345 -Vertex 1557: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8568933010101318 - Group: 'Bone.001', Weight: 0.19712959229946136 - Group: 'Bone.002', Weight: 0.029987676069140434 - Group: 'Bone.007', Weight: 0.0 -Vertex 1558: -Vertex groups: 3 - Group: 'Bone', Weight: 0.858124315738678 - Group: 'Bone.001', Weight: 0.052396222949028015 - Group: 'Bone.007', Weight: 0.0 -Vertex 1559: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580542802810669 -Vertex 1560: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9791465997695923 - Group: 'Bone.003', Weight: 0.004525426309555769 -Vertex 1561: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9982460141181946 -Vertex 1562: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9998963475227356 -Vertex 1563: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9999218583106995 -Vertex 1564: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9637220501899719 - Group: 'Bone.003', Weight: 0.027012836188077927 -Vertex 1565: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9931296110153198 -Vertex 1566: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9987576603889465 -Vertex 1567: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9995084404945374 -Vertex 1568: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9710017442703247 - Group: 'Bone.003', Weight: 0.00852228794246912 -Vertex 1569: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9967193603515625 -Vertex 1570: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994587898254395 -Vertex 1571: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997357130050659 -Vertex 1572: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.999931812286377 -Vertex 1573: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9994899034500122 -Vertex 1574: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9997438192367554 -Vertex 1575: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9985669851303101 -Vertex 1576: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9912697672843933 -Vertex 1577: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9549112319946289 - Group: 'Bone.003', Weight: 0.04017675295472145 -Vertex 1578: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9263164401054382 - Group: 'Bone.003', Weight: 0.12989123165607452 -Vertex 1579: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9439820051193237 - Group: 'Bone.003', Weight: 0.05616377294063568 -Vertex 1580: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9099901914596558 - Group: 'Bone.003', Weight: 0.18671724200248718 -Vertex 1581: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9363617300987244 - Group: 'Bone.003', Weight: 0.0676565170288086 -Vertex 1582: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9115400314331055 - Group: 'Bone.003', Weight: 0.14125175774097443 -Vertex 1583: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.934474766254425 - Group: 'Bone.003', Weight: 0.06661754101514816 -Vertex 1584: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9735553860664368 - Group: 'Bone.003', Weight: 0.0028887949883937836 -Vertex 1585: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.938571035861969 - Group: 'Bone.003', Weight: 0.061428435146808624 -Vertex 1586: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.924720048904419 - Group: 'Bone.003', Weight: 0.07527937740087509 -Vertex 1587: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295958280563354 - Group: 'Bone.003', Weight: 0.07040350139141083 -Vertex 1588: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9295678734779358 - Group: 'Bone.003', Weight: 0.07043148577213287 -Vertex 1589: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9319376945495605 - Group: 'Bone.003', Weight: 0.06806163489818573 -Vertex 1590: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9329175353050232 - Group: 'Bone.003', Weight: 0.0670817643404007 -Vertex 1591: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9330066442489624 - Group: 'Bone.003', Weight: 0.06699269264936447 -Vertex 1592: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9306485056877136 - Group: 'Bone.003', Weight: 0.06935089081525803 -Vertex 1593: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.929861307144165 - Group: 'Bone.003', Weight: 0.07013805210590363 -Vertex 1594: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305615425109863 - Group: 'Bone.003', Weight: 0.06943777203559875 -Vertex 1595: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9311684370040894 - Group: 'Bone.003', Weight: 0.06883087009191513 -Vertex 1596: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9312132000923157 - Group: 'Bone.003', Weight: 0.06878604739904404 -Vertex 1597: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305863380432129 - Group: 'Bone.003', Weight: 0.06941293925046921 -Vertex 1598: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305424094200134 - Group: 'Bone.003', Weight: 0.06945697218179703 -Vertex 1599: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9305166602134705 - Group: 'Bone.003', Weight: 0.06948264688253403 -Vertex 1600: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.930285632610321 - Group: 'Bone.003', Weight: 0.06971369683742523 -Vertex 1601: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9302793741226196 - Group: 'Bone.003', Weight: 0.06971998512744904 -Vertex 1602: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307218194007874 - Group: 'Bone.003', Weight: 0.06927750259637833 -Vertex 1603: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9307323694229126 - Group: 'Bone.003', Weight: 0.06926693767309189 -Vertex 1604: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9684935212135315 - Group: 'Bone.003', Weight: 0.013012501411139965 -Vertex 1605: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9971840977668762 -Vertex 1606: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99953693151474 -Vertex 1607: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9968969225883484 -Vertex 1608: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9996545314788818 -Vertex 1609: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.99998539686203 -Vertex 1610: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9358125329017639 - Group: 'Bone.003', Weight: 0.06418707966804504 -Vertex 1611: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.9501546025276184 - Group: 'Bone.003', Weight: 0.049689944833517075 -Vertex 1612: -Vertex groups: 1 - Group: 'Bone.004', Weight: 0.9775222539901733 -Vertex 1613: -Vertex groups: 2 - Group: 'Bone.004', Weight: 0.8057094812393188 - Group: 'Bone.003', Weight: 0.262625128030777 -Vertex 1614: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8492541909217834 - Group: 'Bone.007', Weight: 0.09959341585636139 - Group: 'Bone.010', Weight: 0.08698557317256927 - Group: 'Bone.008', Weight: 0.04792574420571327 -Vertex 1615: -Vertex groups: 3 - Group: 'Bone', Weight: 0.857177734375 - Group: 'Bone.007', Weight: 0.21092446148395538 - Group: 'Bone.010', Weight: 0.12490835785865784 -Vertex 1616: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8441490530967712 - Group: 'Bone.007', Weight: 0.21406877040863037 - Group: 'Bone.010', Weight: 0.0069319140166044235 -Vertex 1617: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8465001583099365 - Group: 'Bone.007', Weight: 0.1365726739168167 - Group: 'Bone.010', Weight: 0.10814880579710007 -Vertex 1618: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8550615310668945 - Group: 'Bone.007', Weight: 0.16503939032554626 - Group: 'Bone.010', Weight: 0.1802220344543457 -Vertex 1619: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8764724135398865 - Group: 'Bone.007', Weight: 0.10757762938737869 - Group: 'Bone.010', Weight: 0.023332607001066208 - Group: 'Bone.008', Weight: 0.027626095339655876 -Vertex 1620: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8683909773826599 - Group: 'Bone.007', Weight: 0.14703097939491272 - Group: 'Bone.010', Weight: 0.0734240934252739 -Vertex 1621: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8574725985527039 - Group: 'Bone.007', Weight: 0.23110026121139526 - Group: 'Bone.010', Weight: 0.13252240419387817 -Vertex 1622: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7796071171760559 - Group: 'Bone.007', Weight: 0.4816232919692993 - Group: 'Bone.010', Weight: 0.09335237741470337 - Group: 'Bone.008', Weight: 0.09567283093929291 -Vertex 1623: -Vertex groups: 4 - Group: 'Bone', Weight: 0.7682065367698669 - Group: 'Bone.007', Weight: 0.09021522104740143 - Group: 'Bone.010', Weight: 0.1484207957983017 - Group: 'Bone.008', Weight: 0.024002473801374435 -Vertex 1624: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7201608419418335 - Group: 'Bone.007', Weight: 0.026581421494483948 - Group: 'Bone.010', Weight: 0.4674467444419861 -Vertex 1625: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6607896685600281 - Group: 'Bone.007', Weight: 0.472079873085022 - Group: 'Bone.010', Weight: 0.5146884918212891 -Vertex 1626: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4793243408203125 - Group: 'Bone.007', Weight: 0.14700187742710114 - Group: 'Bone.010', Weight: 0.16914452612400055 -Vertex 1627: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33344390988349915 - Group: 'Bone.007', Weight: 0.08807425200939178 - Group: 'Bone.010', Weight: 0.48260030150413513 -Vertex 1628: -Vertex groups: 4 - Group: 'Bone', Weight: 0.41495686769485474 - Group: 'Bone.007', Weight: 0.44843652844429016 - Group: 'Bone.010', Weight: 0.4442070424556732 - Group: 'Bone.008', Weight: 0.019001591950654984 -Vertex 1629: -Vertex groups: 5 - Group: 'Bone', Weight: 0.6075495481491089 - Group: 'Bone.007', Weight: 0.32540756464004517 - Group: 'Bone.010', Weight: 0.2096695899963379 - Group: 'Bone.008', Weight: 0.10034547746181488 - Group: 'Bone.009', Weight: 0.036545585840940475 -Vertex 1630: -Vertex groups: 5 - Group: 'Bone', Weight: 0.29976820945739746 - Group: 'Bone.007', Weight: 0.3319818675518036 - Group: 'Bone.010', Weight: 0.29722362756729126 - Group: 'Bone.008', Weight: 0.11156568676233292 - Group: 'Bone.009', Weight: 0.05646197497844696 -Vertex 1631: -Vertex groups: 4 - Group: 'Bone', Weight: 0.20435474812984467 - Group: 'Bone.007', Weight: 0.36694514751434326 - Group: 'Bone.010', Weight: 0.5915178656578064 - Group: 'Bone.008', Weight: 0.03332849219441414 -Vertex 1632: -Vertex groups: 3 - Group: 'Bone', Weight: 0.14270934462547302 - Group: 'Bone.007', Weight: 0.01874205470085144 - Group: 'Bone.010', Weight: 0.7548943758010864 -Vertex 1633: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1894572377204895 - Group: 'Bone.007', Weight: 0.15861670672893524 - Group: 'Bone.010', Weight: 0.8018520474433899 -Vertex 1634: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33531680703163147 - Group: 'Bone.007', Weight: 0.020756127312779427 - Group: 'Bone.010', Weight: 0.15320926904678345 -Vertex 1635: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3957674205303192 - Group: 'Bone.007', Weight: 0.007730044890195131 - Group: 'Bone.010', Weight: 0.13703352212905884 -Vertex 1636: -Vertex groups: 4 - Group: 'Bone', Weight: 0.46726006269454956 - Group: 'Bone.007', Weight: 0.057933419942855835 - Group: 'Bone.010', Weight: 0.2851335108280182 - Group: 'Bone.008', Weight: 0.04558136686682701 -Vertex 1637: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4651850759983063 - Group: 'Bone.007', Weight: 0.5187259316444397 - Group: 'Bone.010', Weight: 0.16883529722690582 - Group: 'Bone.008', Weight: 0.13803641498088837 -Vertex 1638: -Vertex groups: 5 - Group: 'Bone', Weight: 0.14702758193016052 - Group: 'Bone.007', Weight: 0.12834133207798004 - Group: 'Bone.010', Weight: 0.12495255470275879 - Group: 'Bone.008', Weight: 0.2083103507757187 - Group: 'Bone.009', Weight: 0.01871199533343315 -Vertex 1639: -Vertex groups: 4 - Group: 'Bone', Weight: 0.07280100136995316 - Group: 'Bone.007', Weight: 0.055479370057582855 - Group: 'Bone.010', Weight: 0.09956876933574677 - Group: 'Bone.008', Weight: 0.0018451139330863953 -Vertex 1640: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.04710868373513222 - Group: 'Bone.010', Weight: 0.12114867568016052 - Group: 'Bone', Weight: 0.06198373809456825 -Vertex 1641: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.10872956365346909 - Group: 'Bone', Weight: 0.03953183442354202 - Group: 'Bone.007', Weight: 0.0 -Vertex 1642: -Vertex groups: 3 - Group: 'Bone.010', Weight: 0.32959461212158203 - Group: 'Bone', Weight: 0.010355386883020401 - Group: 'Bone.007', Weight: 0.0010097022168338299 -Vertex 1643: -Vertex groups: 3 - Group: 'Bone.007', Weight: 0.046916503459215164 - Group: 'Bone.010', Weight: 0.10262833535671234 - Group: 'Bone', Weight: 0.0011081623379141092 -Vertex 1644: -Vertex groups: 5 - Group: 'Bone', Weight: 0.04755908623337746 - Group: 'Bone.007', Weight: 0.07821250706911087 - Group: 'Bone.010', Weight: 0.18041767179965973 - Group: 'Bone.008', Weight: 0.012021727859973907 - Group: 'Bone.009', Weight: 0.01688479259610176 -Vertex 1645: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08776139467954636 - Group: 'Bone.007', Weight: 0.10972430557012558 - Group: 'Bone.010', Weight: 0.23203909397125244 - Group: 'Bone.008', Weight: 0.07259501516819 - Group: 'Bone.009', Weight: 0.0868457704782486 -Vertex 1646: -Vertex groups: 5 - Group: 'Bone', Weight: 0.08220478892326355 - Group: 'Bone.007', Weight: 0.08673831075429916 - Group: 'Bone.010', Weight: 0.16191557049751282 - Group: 'Bone.008', Weight: 0.0033085872419178486 - Group: 'Bone.009', Weight: 0.17666630446910858 -Vertex 1647: -Vertex groups: 5 - Group: 'Bone', Weight: 0.06993230432271957 - Group: 'Bone.007', Weight: 0.07195654511451721 - Group: 'Bone.010', Weight: 0.1830867975950241 - Group: 'Bone.008', Weight: 0.08352638781070709 - Group: 'Bone.009', Weight: 0.20478641986846924 -Vertex 1648: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.24912390112876892 -Vertex 1649: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.1966252326965332 -Vertex 1650: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.18218353390693665 -Vertex 1651: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.17404837906360626 -Vertex 1652: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.7635204792022705 -Vertex 1653: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8375021815299988 -Vertex 1654: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.8450110554695129 -Vertex 1655: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8288363218307495 - Group: 'Bone.009', Weight: 0.004937354475259781 -Vertex 1656: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7908844351768494 - Group: 'Bone.009', Weight: 0.01677412912249565 -Vertex 1657: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7294238805770874 - Group: 'Bone.009', Weight: 0.014512362889945507 -Vertex 1658: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7848796844482422 - Group: 'Bone.011', Weight: 0.06788485497236252 -Vertex 1659: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7652153968811035 - Group: 'Bone.011', Weight: 0.07397418469190598 -Vertex 1660: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7341695427894592 - Group: 'Bone.011', Weight: 0.06985507905483246 -Vertex 1661: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8918633460998535 - Group: 'Bone.011', Weight: 0.06036720797419548 -Vertex 1662: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8969564437866211 - Group: 'Bone.011', Weight: 0.04136562719941139 -Vertex 1663: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7997478246688843 - Group: 'Bone.011', Weight: 0.014556470327079296 -Vertex 1664: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8388429880142212 - Group: 'Bone.011', Weight: 0.013887721113860607 -Vertex 1665: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8454589247703552 - Group: 'Bone.011', Weight: 0.013771372847259045 -Vertex 1666: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8445589542388916 - Group: 'Bone.011', Weight: 0.025237588211894035 -Vertex 1667: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7829516530036926 - Group: 'Bone.011', Weight: 0.05240786448121071 -Vertex 1668: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8352252244949341 - Group: 'Bone.011', Weight: 0.09539850801229477 -Vertex 1669: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7517874240875244 - Group: 'Bone.011', Weight: 0.26784273982048035 -Vertex 1670: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.30926620960235596 - Group: 'Bone.011', Weight: 0.7274200916290283 -Vertex 1671: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8289197683334351 - Group: 'Bone.011', Weight: 0.1099429801106453 -Vertex 1672: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7592394351959229 - Group: 'Bone.011', Weight: 0.14537785947322845 -Vertex 1673: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8225551843643188 - Group: 'Bone.011', Weight: 0.15629442036151886 -Vertex 1674: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8126620650291443 - Group: 'Bone.011', Weight: 0.16172362864017487 -Vertex 1675: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8096514344215393 - Group: 'Bone.011', Weight: 0.1620401293039322 -Vertex 1676: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8506230711936951 - Group: 'Bone.011', Weight: 0.14305733144283295 -Vertex 1677: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8714845180511475 - Group: 'Bone.011', Weight: 0.12431171536445618 -Vertex 1678: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8213871121406555 - Group: 'Bone.011', Weight: 0.1102425754070282 -Vertex 1679: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.8326042890548706 - Group: 'Bone.011', Weight: 0.10452400147914886 -Vertex 1680: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7466469407081604 - Group: 'Bone.011', Weight: 0.28776657581329346 -Vertex 1681: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7008676528930664 - Group: 'Bone.011', Weight: 0.3190911114215851 -Vertex 1682: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6511675119400024 - Group: 'Bone.011', Weight: 0.3477439880371094 -Vertex 1683: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6572067737579346 - Group: 'Bone.011', Weight: 0.3405410647392273 -Vertex 1684: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6495181322097778 - Group: 'Bone.011', Weight: 0.34782058000564575 -Vertex 1685: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6671010851860046 - Group: 'Bone.011', Weight: 0.33046954870224 -Vertex 1686: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6854673027992249 - Group: 'Bone.011', Weight: 0.3129718601703644 -Vertex 1687: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.6916868090629578 - Group: 'Bone.011', Weight: 0.30765292048454285 -Vertex 1688: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.7013468146324158 - Group: 'Bone.011', Weight: 0.3024073541164398 -Vertex 1689: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.3565168082714081 - Group: 'Bone.011', Weight: 0.7395891547203064 -Vertex 1690: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2892775237560272 - Group: 'Bone.011', Weight: 0.7384653687477112 -Vertex 1691: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2663683593273163 - Group: 'Bone.011', Weight: 0.7331644892692566 -Vertex 1692: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32305383682250977 - Group: 'Bone.011', Weight: 0.6759169697761536 -Vertex 1693: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.32370251417160034 - Group: 'Bone.011', Weight: 0.6751068234443665 -Vertex 1694: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28205761313438416 - Group: 'Bone.011', Weight: 0.7169956564903259 -Vertex 1695: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.24372385442256927 - Group: 'Bone.011', Weight: 0.7556907534599304 -Vertex 1696: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.2672122120857239 - Group: 'Bone.011', Weight: 0.7324604392051697 -Vertex 1697: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.28116071224212646 - Group: 'Bone.011', Weight: 0.7185894846916199 -Vertex 1698: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0602896474301815 - Group: 'Bone.011', Weight: 0.9396647214889526 -Vertex 1699: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.051683396100997925 - Group: 'Bone.011', Weight: 0.9482741951942444 -Vertex 1700: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.04553503915667534 - Group: 'Bone.011', Weight: 0.9521733522415161 -Vertex 1701: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0489596463739872 - Group: 'Bone.011', Weight: 0.9504114389419556 -Vertex 1702: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.055858463048934937 - Group: 'Bone.011', Weight: 0.943964958190918 -Vertex 1703: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.05337308347225189 - Group: 'Bone.011', Weight: 0.9464408159255981 -Vertex 1704: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.03832409158349037 - Group: 'Bone.011', Weight: 0.955694854259491 -Vertex 1705: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.027710793539881706 - Group: 'Bone.011', Weight: 0.9610453844070435 -Vertex 1706: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.0571390725672245 - Group: 'Bone.011', Weight: 0.94278484582901 -Vertex 1707: -Vertex groups: 2 - Group: 'Bone.010', Weight: 0.06320096552371979 - Group: 'Bone.011', Weight: 0.9367350935935974 -Vertex 1708: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9912186861038208 -Vertex 1709: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9905144572257996 -Vertex 1710: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.991534948348999 -Vertex 1711: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9926509857177734 -Vertex 1712: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9923726320266724 -Vertex 1713: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9910901784896851 -Vertex 1714: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918340444564819 -Vertex 1715: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9934969544410706 -Vertex 1716: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9941645860671997 -Vertex 1717: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9909204244613647 -Vertex 1718: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989954233169556 -Vertex 1719: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989296793937683 -Vertex 1720: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9988337159156799 -Vertex 1721: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.999141275882721 -Vertex 1722: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9992937445640564 -Vertex 1723: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9989088773727417 -Vertex 1724: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984763264656067 -Vertex 1725: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982151389122009 -Vertex 1726: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9982446432113647 -Vertex 1727: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9986022114753723 -Vertex 1728: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9914408326148987 -Vertex 1729: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9866803288459778 -Vertex 1730: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.984521746635437 -Vertex 1731: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872989654541016 -Vertex 1732: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9918193817138672 -Vertex 1733: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9968767762184143 -Vertex 1734: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984912872314453 -Vertex 1735: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9984930753707886 -Vertex 1736: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9975730180740356 -Vertex 1737: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9954512715339661 -Vertex 1738: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8295156359672546 - Group: 'Bone.015', Weight: 0.16057944297790527 -Vertex 1739: -Vertex groups: 3 - Group: 'Bone.011', Weight: 0.12295666337013245 - Group: 'Bone.015', Weight: 0.802905797958374 - Group: 'Bone.016', Weight: 0.07413671910762787 -Vertex 1740: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8731961846351624 - Group: 'Bone.015', Weight: 0.12221212685108185 -Vertex 1741: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9418061375617981 - Group: 'Bone.015', Weight: 0.05676709860563278 -Vertex 1742: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9705639481544495 - Group: 'Bone.015', Weight: 0.007880333811044693 -Vertex 1743: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9826754927635193 -Vertex 1744: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9872093200683594 -Vertex 1745: -Vertex groups: 1 - Group: 'Bone.011', Weight: 0.9853657484054565 -Vertex 1746: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9679176807403564 - Group: 'Bone.015', Weight: 0.012943963520228863 -Vertex 1747: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9035061001777649 - Group: 'Bone.015', Weight: 0.09378127753734589 -Vertex 1748: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8523038029670715 - Group: 'Bone.015', Weight: 0.14111825823783875 -Vertex 1749: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09780600666999817 - Group: 'Bone.016', Weight: 0.8977823257446289 -Vertex 1750: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9854536652565002 -Vertex 1751: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.10272319614887238 - Group: 'Bone.015', Weight: 0.8726257085800171 -Vertex 1752: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.3177373707294464 - Group: 'Bone.015', Weight: 0.6745591163635254 -Vertex 1753: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7851601243019104 - Group: 'Bone.015', Weight: 0.2131870537996292 -Vertex 1754: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8902074098587036 - Group: 'Bone.015', Weight: 0.1093723326921463 -Vertex 1755: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9144306778907776 - Group: 'Bone.015', Weight: 0.08540521562099457 -Vertex 1756: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.9073420166969299 - Group: 'Bone.015', Weight: 0.0923471450805664 -Vertex 1757: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.8677122592926025 - Group: 'Bone.015', Weight: 0.131157785654068 -Vertex 1758: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.7667964100837708 - Group: 'Bone.015', Weight: 0.22948427498340607 -Vertex 1759: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.26684731245040894 - Group: 'Bone.015', Weight: 0.7143614292144775 -Vertex 1760: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7825839519500732 - Group: 'Bone.016', Weight: 0.19468504190444946 -Vertex 1761: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.10580042004585266 - Group: 'Bone.016', Weight: 0.8916829824447632 -Vertex 1762: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.7991048097610474 - Group: 'Bone.016', Weight: 0.1919947862625122 -Vertex 1763: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.07102425396442413 - Group: 'Bone.016', Weight: 0.9281061887741089 -Vertex 1764: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.009452540427446365 - Group: 'Bone.016', Weight: 0.9698115587234497 -Vertex 1765: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8682569265365601 - Group: 'Bone.016', Weight: 0.12725131213665009 -Vertex 1766: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.00882934033870697 - Group: 'Bone.015', Weight: 0.9509971141815186 -Vertex 1767: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08012175559997559 - Group: 'Bone.015', Weight: 0.9148005247116089 -Vertex 1768: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.20268265902996063 - Group: 'Bone.015', Weight: 0.7959858179092407 -Vertex 1769: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.47982245683670044 - Group: 'Bone.015', Weight: 0.5198901295661926 -Vertex 1770: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.509918749332428 - Group: 'Bone.015', Weight: 0.4899667799472809 -Vertex 1771: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.5274614095687866 - Group: 'Bone.015', Weight: 0.4723266661167145 -Vertex 1772: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.49319174885749817 - Group: 'Bone.015', Weight: 0.5058876872062683 -Vertex 1773: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.27409130334854126 - Group: 'Bone.015', Weight: 0.7214366793632507 -Vertex 1774: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08865444362163544 - Group: 'Bone.015', Weight: 0.8896037936210632 -Vertex 1775: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8445496559143066 - Group: 'Bone.016', Weight: 0.140055850148201 -Vertex 1776: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.0998244509100914 - Group: 'Bone.016', Weight: 0.8985846042633057 -Vertex 1777: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9885462522506714 -Vertex 1778: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1490040421485901 - Group: 'Bone.015', Weight: 0.8505856990814209 -Vertex 1779: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.40766745805740356 - Group: 'Bone.015', Weight: 0.5918549299240112 -Vertex 1780: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.39556264877319336 - Group: 'Bone.015', Weight: 0.6028609871864319 -Vertex 1781: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.1820685863494873 - Group: 'Bone.015', Weight: 0.8133466243743896 -Vertex 1782: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.08081340044736862 - Group: 'Bone.015', Weight: 0.9169321060180664 -Vertex 1783: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.05588989332318306 - Group: 'Bone.015', Weight: 0.9275407195091248 -Vertex 1784: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.8690353631973267 - Group: 'Bone.016', Weight: 0.12206549197435379 -Vertex 1785: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9762951731681824 -Vertex 1786: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.9461193680763245 - Group: 'Bone.016', Weight: 0.05252790451049805 -Vertex 1787: -Vertex groups: 2 - Group: 'Bone.011', Weight: 0.0321921668946743 - Group: 'Bone.015', Weight: 0.957588791847229 -Vertex 1788: -Vertex groups: 1 - Group: 'Bone.015', Weight: 0.9849879145622253 -Vertex 1789: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.944317102432251 - Group: 'Bone.016', Weight: 0.05423334613442421 -Vertex 1790: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.09708527475595474 - Group: 'Bone.016', Weight: 0.902008593082428 -Vertex 1791: -Vertex groups: 1 - Group: 'Bone.016', Weight: 0.9860782027244568 -Vertex 1792: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.02833629958331585 - Group: 'Bone.016', Weight: 0.960496187210083 -Vertex 1793: -Vertex groups: 2 - Group: 'Bone.015', Weight: 0.04126398637890816 - Group: 'Bone.016', Weight: 0.9542533755302429 -Vertex 1794: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4968265891075134 - Group: 'Bone.001', Weight: 0.12866456806659698 - Group: 'Bone.017', Weight: 0.6565831303596497 -Vertex 1795: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5213605761528015 - Group: 'Bone.001', Weight: 0.00015686237020418048 - Group: 'Bone.002', Weight: 0.000740676827263087 - Group: 'Bone.017', Weight: 0.5949790477752686 -Vertex 1796: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5302131772041321 - Group: 'Bone.002', Weight: 0.08026820421218872 - Group: 'Bone.017', Weight: 0.6329164505004883 -Vertex 1797: -Vertex groups: 3 - Group: 'Bone', Weight: 0.43460360169410706 - Group: 'Bone.002', Weight: 0.2845018804073334 - Group: 'Bone.017', Weight: 0.6245476007461548 -Vertex 1798: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2110525220632553 - Group: 'Bone.002', Weight: 0.4350660741329193 - Group: 'Bone.017', Weight: 0.5777884125709534 -Vertex 1799: -Vertex groups: 3 - Group: 'Bone', Weight: 0.08888589590787888 - Group: 'Bone.002', Weight: 0.4935263693332672 - Group: 'Bone.017', Weight: 0.5153557658195496 -Vertex 1800: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13498325645923615 - Group: 'Bone.002', Weight: 0.5123608708381653 - Group: 'Bone.017', Weight: 0.4408826529979706 -Vertex 1801: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21645133197307587 - Group: 'Bone.002', Weight: 0.44907402992248535 - Group: 'Bone.017', Weight: 0.567682147026062 -Vertex 1802: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20755533874034882 - Group: 'Bone.002', Weight: 0.3480069041252136 - Group: 'Bone.017', Weight: 0.6479048132896423 -Vertex 1803: -Vertex groups: 4 - Group: 'Bone', Weight: 0.17278018593788147 - Group: 'Bone.001', Weight: 0.009016083553433418 - Group: 'Bone.002', Weight: 0.2694533169269562 - Group: 'Bone.017', Weight: 0.6535012125968933 -Vertex 1804: -Vertex groups: 4 - Group: 'Bone', Weight: 0.12351936846971512 - Group: 'Bone.001', Weight: 0.10849620401859283 - Group: 'Bone.002', Weight: 0.05565584823489189 - Group: 'Bone.017', Weight: 0.6599913239479065 -Vertex 1805: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19007562100887299 - Group: 'Bone.001', Weight: 0.30873173475265503 - Group: 'Bone.002', Weight: 0.00447039445862174 - Group: 'Bone.017', Weight: 0.660158097743988 -Vertex 1806: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370510220527649 - Group: 'Bone.001', Weight: 0.17501232028007507 - Group: 'Bone.017', Weight: 0.4328162372112274 -Vertex 1807: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5375888347625732 - Group: 'Bone.002', Weight: 0.026516582816839218 - Group: 'Bone.017', Weight: 0.3246644139289856 -Vertex 1808: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5498840808868408 - Group: 'Bone.002', Weight: 0.5091904997825623 - Group: 'Bone.017', Weight: 0.23911377787590027 -Vertex 1809: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4075045883655548 - Group: 'Bone.002', Weight: 0.7487771511077881 - Group: 'Bone.017', Weight: 0.5189129710197449 -Vertex 1810: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3762916028499603 - Group: 'Bone.002', Weight: 0.6908125281333923 - Group: 'Bone.017', Weight: 0.6602860689163208 -Vertex 1811: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3382500410079956 - Group: 'Bone.002', Weight: 0.5645535588264465 - Group: 'Bone.017', Weight: 0.6361100077629089 -Vertex 1812: -Vertex groups: 3 - Group: 'Bone', Weight: 0.26164475083351135 - Group: 'Bone.002', Weight: 0.5185180902481079 - Group: 'Bone.017', Weight: 0.6185376048088074 -Vertex 1813: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222228348255157 - Group: 'Bone.002', Weight: 0.5171611905097961 - Group: 'Bone.017', Weight: 0.6547187566757202 -Vertex 1814: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22410956025123596 - Group: 'Bone.002', Weight: 0.5179186463356018 - Group: 'Bone.017', Weight: 0.6564199328422546 -Vertex 1815: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5326204299926758 - Group: 'Bone.001', Weight: 0.07207577675580978 - Group: 'Bone.002', Weight: 0.5143764615058899 - Group: 'Bone.017', Weight: 0.5180104374885559 -Vertex 1816: -Vertex groups: 4 - Group: 'Bone', Weight: 0.26580610871315 - Group: 'Bone.001', Weight: 0.22748012840747833 - Group: 'Bone.002', Weight: 0.31428006291389465 - Group: 'Bone.017', Weight: 0.6060801148414612 -Vertex 1817: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22741112112998962 - Group: 'Bone.001', Weight: 0.24848224222660065 - Group: 'Bone.002', Weight: 0.05476108565926552 - Group: 'Bone.017', Weight: 0.6342950463294983 -Vertex 1818: -Vertex groups: 4 - Group: 'Bone', Weight: 0.4627748429775238 - Group: 'Bone.001', Weight: 0.2463442087173462 - Group: 'Bone.002', Weight: 0.1360917091369629 - Group: 'Bone.017', Weight: 0.004556640982627869 -Vertex 1819: -Vertex groups: 4 - Group: 'Bone', Weight: 0.5298051834106445 - Group: 'Bone.001', Weight: 0.23762696981430054 - Group: 'Bone.002', Weight: 0.42518895864486694 - Group: 'Bone.017', Weight: 0.0075513096526265144 -Vertex 1820: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8125856518745422 - Group: 'Bone.001', Weight: 0.05217180401086807 - Group: 'Bone.002', Weight: 0.514790952205658 - Group: 'Bone.017', Weight: 0.001171179348602891 -Vertex 1821: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28736305236816406 - Group: 'Bone.002', Weight: 0.7115368247032166 - Group: 'Bone.020', Weight: 0.612738847732544 -Vertex 1822: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0016308184713125229 - Group: 'Bone.002', Weight: 0.51851886510849 - Group: 'Bone.020', Weight: 0.8570610880851746 -Vertex 1823: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.1154990866780281 - Group: 'Bone.005', Weight: 0.20056229829788208 - Group: 'Bone.020', Weight: 0.8864278197288513 -Vertex 1824: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9240273833274841 - Group: 'Bone.020', Weight: 0.39049988985061646 -Vertex 1825: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9189686179161072 - Group: 'Bone.020', Weight: 0.38275760412216187 -Vertex 1826: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9035943150520325 - Group: 'Bone.020', Weight: 0.24122965335845947 -Vertex 1827: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9243196845054626 - Group: 'Bone.020', Weight: 0.01377946324646473 -Vertex 1828: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9094361662864685 -Vertex 1829: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258944988250732 -Vertex 1830: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9147924184799194 -Vertex 1831: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.6378756761550903 -Vertex 1832: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3152957260608673 - Group: 'Bone.002', Weight: 0.7496135830879211 - Group: 'Bone.020', Weight: 0.6585751175880432 -Vertex 1833: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2322292923927307 - Group: 'Bone.002', Weight: 0.7592592239379883 - Group: 'Bone.020', Weight: 0.3351065218448639 -Vertex 1834: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3902944028377533 - Group: 'Bone.002', Weight: 0.0 - Group: 'Bone.020', Weight: 0.3867809474468231 -Vertex 1835: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5359911322593689 - Group: 'Bone.002', Weight: 2.0206774934194982e-05 - Group: 'Bone.020', Weight: 0.3750759959220886 -Vertex 1836: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6995348334312439 - Group: 'Bone.020', Weight: 0.38863927125930786 -Vertex 1837: -Vertex groups: 2 - Group: 'Bone', Weight: 0.4563428461551666 - Group: 'Bone.020', Weight: 0.4066890478134155 -Vertex 1838: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7735119462013245 - Group: 'Bone.002', Weight: 0.5156393051147461 - Group: 'Bone.020', Weight: 0.061968762427568436 -Vertex 1839: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3036074936389923 - Group: 'Bone.002', Weight: 0.5184355974197388 - Group: 'Bone.020', Weight: 0.013882136903703213 -Vertex 1840: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2230328768491745 - Group: 'Bone.002', Weight: 0.5879124999046326 - Group: 'Bone.020', Weight: 0.3604341745376587 -Vertex 1841: -Vertex groups: 3 - Group: 'Bone', Weight: 0.44437408447265625 - Group: 'Bone.002', Weight: 0.510378360748291 - Group: 'Bone.020', Weight: 0.3858790695667267 -Vertex 1842: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5575725436210632 - Group: 'Bone.002', Weight: 0.4971584677696228 - Group: 'Bone.020', Weight: 0.32584455609321594 -Vertex 1843: -Vertex groups: 2 - Group: 'Bone', Weight: 0.44490566849708557 - Group: 'Bone.020', Weight: 0.4640239477157593 -Vertex 1844: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5377249717712402 - Group: 'Bone.020', Weight: 0.4397454559803009 -Vertex 1845: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5287829041481018 - Group: 'Bone.002', Weight: 5.075840454082936e-05 - Group: 'Bone.020', Weight: 0.7861655354499817 -Vertex 1846: -Vertex groups: 3 - Group: 'Bone', Weight: 0.25823521614074707 - Group: 'Bone.002', Weight: 0.001287673250772059 - Group: 'Bone.020', Weight: 0.8862888216972351 -Vertex 1847: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24050529301166534 - Group: 'Bone.002', Weight: 0.7592591047286987 - Group: 'Bone.020', Weight: 0.7605501413345337 -Vertex 1848: -Vertex groups: 3 - Group: 'Bone', Weight: 0.014420327730476856 - Group: 'Bone.002', Weight: 0.5473467707633972 - Group: 'Bone.020', Weight: 0.744660496711731 -Vertex 1849: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.4245089292526245 - Group: 'Bone.005', Weight: 0.08962288498878479 - Group: 'Bone.020', Weight: 0.8862488269805908 -Vertex 1850: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.920476496219635 - Group: 'Bone.020', Weight: 0.39762675762176514 -Vertex 1851: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9254093170166016 - Group: 'Bone.020', Weight: 0.39630529284477234 -Vertex 1852: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244624972343445 - Group: 'Bone.020', Weight: 0.15280984342098236 -Vertex 1853: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005104303359985 - Group: 'Bone.020', Weight: 0.0001350736856693402 -Vertex 1854: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9106625318527222 -Vertex 1855: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.925645112991333 -Vertex 1856: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9108826518058777 -Vertex 1857: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5812308192253113 -Vertex 1858: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16318513453006744 - Group: 'Bone.002', Weight: 0.7559752464294434 - Group: 'Bone.020', Weight: 0.8440377116203308 -Vertex 1859: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2253100872039795 - Group: 'Bone.002', Weight: 0.4507981240749359 - Group: 'Bone.020', Weight: 0.8746185898780823 -Vertex 1860: -Vertex groups: 2 - Group: 'Bone', Weight: 0.21780270338058472 - Group: 'Bone.020', Weight: 0.8887682557106018 -Vertex 1861: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4688788056373596 - Group: 'Bone.005', Weight: 0.017478492110967636 - Group: 'Bone.020', Weight: 0.8623291850090027 -Vertex 1862: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23550960421562195 - Group: 'Bone.005', Weight: 0.012948127463459969 - Group: 'Bone.020', Weight: 0.8814886212348938 -Vertex 1863: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22273840010166168 - Group: 'Bone.002', Weight: 0.4796258211135864 - Group: 'Bone.020', Weight: 0.7306392788887024 -Vertex 1864: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0750044658780098 - Group: 'Bone.002', Weight: 0.5185184478759766 - Group: 'Bone.020', Weight: 0.777006208896637 -Vertex 1865: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.0006286188145168126 - Group: 'Bone.005', Weight: 0.18813396990299225 - Group: 'Bone.020', Weight: 0.8867161870002747 -Vertex 1866: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.917604386806488 - Group: 'Bone.020', Weight: 0.371537446975708 -Vertex 1867: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258975386619568 - Group: 'Bone.020', Weight: 0.3872296214103699 -Vertex 1868: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.8794969916343689 - Group: 'Bone.020', Weight: 0.29803112149238586 -Vertex 1869: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9255593419075012 - Group: 'Bone.020', Weight: 0.03229865804314613 -Vertex 1870: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9113067388534546 -Vertex 1871: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1872: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9228125810623169 -Vertex 1873: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8098098635673523 -Vertex 1874: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19796296954154968 - Group: 'Bone.002', Weight: 0.5183058977127075 - Group: 'Bone.020', Weight: 0.7136420011520386 -Vertex 1875: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0007736594998277724 - Group: 'Bone.005', Weight: 0.16342905163764954 - Group: 'Bone.020', Weight: 0.8853119015693665 -Vertex 1876: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9127231240272522 - Group: 'Bone.020', Weight: 0.3766288161277771 -Vertex 1877: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258077144622803 - Group: 'Bone.020', Weight: 0.38466978073120117 -Vertex 1878: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9005299806594849 - Group: 'Bone.020', Weight: 0.28358593583106995 -Vertex 1879: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.020032284781336784 -Vertex 1880: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9232719540596008 -Vertex 1881: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9229781031608582 -Vertex 1882: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9255836009979248 -Vertex 1883: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8517799973487854 -Vertex 1884: -Vertex groups: 3 - Group: 'Bone', Weight: 0.022581908851861954 - Group: 'Bone.005', Weight: 0.12154704332351685 - Group: 'Bone.020', Weight: 0.8700076937675476 -Vertex 1885: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010143641848117113 - Group: 'Bone.005', Weight: 0.9070658683776855 - Group: 'Bone.020', Weight: 0.38383978605270386 -Vertex 1886: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9258539080619812 - Group: 'Bone.020', Weight: 0.38294538855552673 -Vertex 1887: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9230756163597107 - Group: 'Bone.020', Weight: 0.26540300250053406 -Vertex 1888: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9250521063804626 - Group: 'Bone.020', Weight: 0.010349463671445847 -Vertex 1889: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259257912635803 -Vertex 1890: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9230880737304688 -Vertex 1891: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9244371056556702 -Vertex 1892: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8334124684333801 -Vertex 1893: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22510163486003876 - Group: 'Bone.005', Weight: 0.5492454171180725 - Group: 'Bone.020', Weight: 0.8678473234176636 -Vertex 1894: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04840851575136185 - Group: 'Bone.005', Weight: 0.9244556427001953 - Group: 'Bone.020', Weight: 0.35923922061920166 -Vertex 1895: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006263271439820528 - Group: 'Bone.005', Weight: 0.9257790446281433 - Group: 'Bone.020', Weight: 0.3518533706665039 -Vertex 1896: -Vertex groups: 3 - Group: 'Bone', Weight: 4.082809391547926e-05 - Group: 'Bone.005', Weight: 0.925365686416626 - Group: 'Bone.020', Weight: 0.17431190609931946 -Vertex 1897: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9165840148925781 - Group: 'Bone.020', Weight: 0.0018322732066735625 -Vertex 1898: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8464422225952148 -Vertex 1899: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8903800249099731 -Vertex 1900: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8819688558578491 -Vertex 1901: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.7705177664756775 -Vertex 1902: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22254972159862518 - Group: 'Bone.005', Weight: 0.5412796139717102 - Group: 'Bone.020', Weight: 0.7994130849838257 -Vertex 1903: -Vertex groups: 3 - Group: 'Bone', Weight: 0.11023859679698944 - Group: 'Bone.005', Weight: 0.9256795048713684 - Group: 'Bone.020', Weight: 0.38601866364479065 -Vertex 1904: -Vertex groups: 3 - Group: 'Bone', Weight: 0.018198857083916664 - Group: 'Bone.005', Weight: 0.9259140491485596 - Group: 'Bone.020', Weight: 0.13886909186840057 -Vertex 1905: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0011645626509562135 - Group: 'Bone.005', Weight: 0.9258328676223755 - Group: 'Bone.020', Weight: 0.006549834739416838 -Vertex 1906: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258999824523926 -Vertex 1907: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.859761655330658 -Vertex 1908: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9196212887763977 -Vertex 1909: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8761001229286194 -Vertex 1910: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.5929322838783264 -Vertex 1911: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1233007162809372 - Group: 'Bone.005', Weight: 0.19432523846626282 - Group: 'Bone.020', Weight: 0.7608271241188049 -Vertex 1912: -Vertex groups: 3 - Group: 'Bone', Weight: 0.03905019164085388 - Group: 'Bone.005', Weight: 0.9227253198623657 - Group: 'Bone.020', Weight: 0.39429160952568054 -Vertex 1913: -Vertex groups: 3 - Group: 'Bone', Weight: 0.008515922352671623 - Group: 'Bone.005', Weight: 0.8644418716430664 - Group: 'Bone.020', Weight: 0.12190604954957962 -Vertex 1914: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007167913136072457 - Group: 'Bone.005', Weight: 0.9019559025764465 -Vertex 1915: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9221139550209045 -Vertex 1916: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8952727913856506 -Vertex 1917: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9249884486198425 -Vertex 1918: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8941823244094849 -Vertex 1919: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.27182096242904663 -Vertex 1920: -Vertex groups: 4 - Group: 'Bone', Weight: 0.19845826923847198 - Group: 'Bone.002', Weight: 0.00018317755893804133 - Group: 'Bone.005', Weight: 0.0022667935118079185 - Group: 'Bone.020', Weight: 0.8776812553405762 -Vertex 1921: -Vertex groups: 3 - Group: 'Bone', Weight: 0.006961158476769924 - Group: 'Bone.002', Weight: 0.5075602531433105 - Group: 'Bone.020', Weight: 0.8807948231697083 -Vertex 1922: -Vertex groups: 3 - Group: 'Bone.002', Weight: 0.00015065036132000387 - Group: 'Bone.005', Weight: 0.9178552627563477 - Group: 'Bone.020', Weight: 0.49782413244247437 -Vertex 1923: -Vertex groups: 3 - Group: 'Bone', Weight: 0.144283264875412 - Group: 'Bone.005', Weight: 0.925841212272644 - Group: 'Bone.020', Weight: 0.4476906955242157 -Vertex 1924: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259248971939087 - Group: 'Bone.020', Weight: 0.39066898822784424 -Vertex 1925: -Vertex groups: 3 - Group: 'Bone.005', Weight: 0.9259027242660522 - Group: 'Bone.020', Weight: 0.3897033929824829 - Group: 'Bone', Weight: 0.0038342177867889404 -Vertex 1926: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257316589355 - Group: 'Bone.020', Weight: 0.12682558596134186 -Vertex 1927: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9259257912635803 - Group: 'Bone.020', Weight: 0.0331173837184906 -Vertex 1928: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9258340001106262 -Vertex 1929: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259234666824341 -Vertex 1930: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9253873825073242 -Vertex 1931: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9259250164031982 -Vertex 1932: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9248096942901611 -Vertex 1933: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9257196187973022 -Vertex 1934: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8811998963356018 -Vertex 1935: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.735260009765625 -Vertex 1936: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.06411595642566681 -Vertex 1937: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.20810866355895996 -Vertex 1938: -Vertex groups: 3 - Group: 'Bone', Weight: 0.605607807636261 - Group: 'Bone.002', Weight: 0.10798954963684082 - Group: 'Bone.020', Weight: 0.09831328690052032 -Vertex 1939: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5719299912452698 - Group: 'Bone.002', Weight: 0.0012527058133855462 -Vertex 1940: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6648164391517639 - Group: 'Bone.001', Weight: 0.026460595428943634 -Vertex 1941: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5919740796089172 - Group: 'Bone.002', Weight: 1.634471260558712e-07 - Group: 'Bone.020', Weight: 0.2751999497413635 -Vertex 1942: -Vertex groups: 2 - Group: 'Bone', Weight: 0.559513509273529 - Group: 'Bone.002', Weight: 0.0 -Vertex 1943: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5411567091941833 - Group: 'Bone.001', Weight: 0.0 -Vertex 1944: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5429614186286926 - Group: 'Bone.002', Weight: 1.8647772321855882e-06 - Group: 'Bone.020', Weight: 0.3422871232032776 -Vertex 1945: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5373624563217163 - Group: 'Bone.002', Weight: 1.4441611710935831e-05 - Group: 'Bone.020', Weight: 0.038360197097063065 -Vertex 1946: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5379849672317505 - Group: 'Bone.002', Weight: 0.0 -Vertex 1947: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5397281050682068 - Group: 'Bone.001', Weight: 0.0 -Vertex 1948: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5493188500404358 - Group: 'Bone.001', Weight: 0.0 -Vertex 1949: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5416411757469177 -Vertex 1950: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5917187333106995 - Group: 'Bone.002', Weight: 0.0 -Vertex 1951: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537101149559021 - Group: 'Bone.020', Weight: 0.0031128451228141785 - Group: 'Bone.002', Weight: 0.0 -Vertex 1952: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5424580574035645 - Group: 'Bone.020', Weight: 0.36200201511383057 - Group: 'Bone.002', Weight: 0.0 -Vertex 1953: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7648641467094421 - Group: 'Bone.020', Weight: 0.37963616847991943 -Vertex 1954: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3175721764564514 - Group: 'Bone.020', Weight: 0.31972795724868774 -Vertex 1955: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5578481554985046 - Group: 'Bone.020', Weight: 0.0704217255115509 -Vertex 1956: -Vertex groups: 2 - Group: 'Bone', Weight: 0.826727569103241 - Group: 'Bone.020', Weight: 0.2908283472061157 -Vertex 1957: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3726998269557953 - Group: 'Bone.020', Weight: 0.04500555247068405 -Vertex 1958: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5890769958496094 -Vertex 1959: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5743916630744934 -Vertex 1960: -Vertex groups: 1 - Group: 'Bone', Weight: 0.7639849781990051 -Vertex 1961: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5394730567932129 -Vertex 1962: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8409162759780884 - Group: 'Bone.020', Weight: 0.009982281364500523 -Vertex 1963: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8576502799987793 - Group: 'Bone.020', Weight: 0.021341487765312195 -Vertex 1964: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8189487457275391 - Group: 'Bone.020', Weight: 9.54168353928253e-05 -Vertex 1965: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9707937240600586 -Vertex 1966: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9807361960411072 -Vertex 1967: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9516459703445435 -Vertex 1968: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8342810869216919 -Vertex 1969: -Vertex groups: 1 - Group: 'Bone', Weight: 0.854735255241394 -Vertex 1970: -Vertex groups: 2 - Group: 'Bone', Weight: 0.858729362487793 - Group: 'Bone.020', Weight: 0.000458772003185004 -Vertex 1971: -Vertex groups: 1 - Group: 'Bone', Weight: 0.857750415802002 -Vertex 1972: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5942675471305847 - Group: 'Bone.002', Weight: 0.44010958075523376 -Vertex 1973: -Vertex groups: 2 - Group: 'Bone', Weight: 0.741280734539032 - Group: 'Bone.002', Weight: 0.5161762237548828 -Vertex 1974: -Vertex groups: 3 - Group: 'Bone', Weight: 0.549760103225708 - Group: 'Bone.002', Weight: 0.40354618430137634 - Group: 'Bone.020', Weight: 0.005072383210062981 -Vertex 1975: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7450653314590454 - Group: 'Bone.002', Weight: 0.05029866844415665 -Vertex 1976: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8396738171577454 -Vertex 1977: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8548014760017395 -Vertex 1978: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8954470157623291 -Vertex 1979: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8761919140815735 -Vertex 1980: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9031261801719666 -Vertex 1981: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8681198954582214 -Vertex 1982: -Vertex groups: 1 - Group: 'Bone', Weight: 0.898567795753479 -Vertex 1983: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8924674987792969 -Vertex 1984: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9679023027420044 -Vertex 1985: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9680677056312561 -Vertex 1986: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8580172061920166 - Group: 'Bone.002', Weight: 0.5029816031455994 -Vertex 1987: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8537133932113647 - Group: 'Bone.001', Weight: 0.03322815150022507 - Group: 'Bone.002', Weight: 0.38054159283638 -Vertex 1988: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8562518954277039 - Group: 'Bone.001', Weight: 0.04783674702048302 - Group: 'Bone.002', Weight: 0.013840120285749435 -Vertex 1989: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8578519821166992 - Group: 'Bone.002', Weight: 0.03178098425269127 -Vertex 1990: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8572117686271667 -Vertex 1991: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8560119271278381 -Vertex 1992: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8576805591583252 -Vertex 1993: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8580064177513123 -Vertex 1994: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9792554378509521 -Vertex 1995: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9350485801696777 -Vertex 1996: -Vertex groups: 1 - Group: 'Bone', Weight: 0.867206871509552 -Vertex 1997: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8618005514144897 -Vertex 1998: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8587844371795654 - Group: 'Bone.008', Weight: 0.002814007457345724 - Group: 'Bone.009', Weight: 7.913107401691377e-05 -Vertex 1999: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8473796248435974 - Group: 'Bone.008', Weight: 0.0009557957528159022 - Group: 'Bone.009', Weight: 0.001742438180372119 -Vertex 2000: -Vertex groups: 2 - Group: 'Bone', Weight: 0.984978437423706 - Group: 'Bone.009', Weight: 3.082050534430891e-05 -Vertex 2001: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9705504179000854 -Vertex 2002: -Vertex groups: 1 - Group: 'Bone', Weight: 0.6026639938354492 -Vertex 2003: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0007197739323601127 -Vertex 2004: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.0 -Vertex 2005: -Vertex groups: 3 - Group: 'Bone', Weight: 0.027351975440979004 - Group: 'Bone.010', Weight: 0.0053056394681334496 - Group: 'Bone.008', Weight: 0.00026626474573276937 -Vertex 2006: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19418999552726746 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.008', Weight: 0.04424622654914856 -Vertex 2007: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6236264705657959 - Group: 'Bone.010', Weight: 0.0 -Vertex 2008: -Vertex groups: 1 - Group: 'Bone', Weight: 0.91054368019104 -Vertex 2009: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9399400949478149 -Vertex 2010: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8799422979354858 -Vertex 2011: -Vertex groups: 1 - Group: 'Bone', Weight: 0.906527042388916 -Vertex 2012: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5033172965049744 -Vertex 2013: -Vertex groups: 1 - Group: 'Bone', Weight: 0.45699456334114075 -Vertex 2014: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5078403353691101 - Group: 'Bone.009', Weight: 0.00018170395924244076 -Vertex 2015: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6032619476318359 - Group: 'Bone.008', Weight: 1.688489646767266e-05 -Vertex 2016: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6226154565811157 - Group: 'Bone.008', Weight: 0.00033589170197956264 -Vertex 2017: -Vertex groups: 2 - Group: 'Bone', Weight: 0.462537556886673 - Group: 'Bone.009', Weight: 0.00011976435780525208 -Vertex 2018: -Vertex groups: 1 - Group: 'Bone', Weight: 0.36594146490097046 -Vertex 2019: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4472090005874634 -Vertex 2020: -Vertex groups: 2 - Group: 'Bone', Weight: 0.005655000917613506 - Group: 'Bone.009', Weight: 0.0 -Vertex 2021: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0459403358399868 - Group: 'Bone.009', Weight: 0.000634163327049464 -Vertex 2022: -Vertex groups: 1 - Group: 'Bone', Weight: 0.13525132834911346 -Vertex 2023: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2143944948911667 - Group: 'Bone.009', Weight: 5.9035548474639654e-05 -Vertex 2024: -Vertex groups: 2 - Group: 'Bone', Weight: 0.19253909587860107 - Group: 'Bone.009', Weight: 0.00043882965110242367 -Vertex 2025: -Vertex groups: 2 - Group: 'Bone', Weight: 0.11619611084461212 - Group: 'Bone.009', Weight: 0.06880778074264526 -Vertex 2026: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10071726888418198 - Group: 'Bone.008', Weight: 0.10082516819238663 - Group: 'Bone.009', Weight: 0.06629685312509537 -Vertex 2027: -Vertex groups: 3 - Group: 'Bone', Weight: 0.1360192745923996 - Group: 'Bone.008', Weight: 0.12656617164611816 - Group: 'Bone.009', Weight: 0.00241035595536232 -Vertex 2028: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0065716709941625595 - Group: 'Bone.008', Weight: 0.0056327893398702145 - Group: 'Bone.009', Weight: 0.053317584097385406 -Vertex 2029: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0005326177342794836 - Group: 'Bone.009', Weight: 0.036843255162239075 -Vertex 2030: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0007414508145302534 - Group: 'Bone.009', Weight: 0.0005176271661184728 -Vertex 2031: -Vertex groups: 1 - Group: 'Bone', Weight: 0.0024164621718227863 -Vertex 2032: -Vertex groups: 1 - Group: 'Bone', Weight: 0.004538595676422119 -Vertex 2033: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0008566356846131384 - Group: 'Bone.009', Weight: 0.0018586457008495927 -Vertex 2034: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.029181335121393204 -Vertex 2035: -Vertex groups: 1 - Group: 'Bone.009', Weight: 0.003408932825550437 -Vertex 2036: -Vertex groups: 1 - Group: 'Bone', Weight: 0.4741714596748352 -Vertex 2037: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10365284234285355 - Group: 'Bone.005', Weight: 0.2781144380569458 - Group: 'Bone.020', Weight: 0.848720133304596 -Vertex 2038: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9220407605171204 -Vertex 2039: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5138729810714722 - Group: 'Bone.002', Weight: 0.042966634035110474 - Group: 'Bone.020', Weight: 0.3889026641845703 -Vertex 2040: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0077127814292907715 - Group: 'Bone.005', Weight: 0.9048851728439331 - Group: 'Bone.020', Weight: 0.3791961371898651 -Vertex 2041: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.8331894278526306 -Vertex 2042: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5379424691200256 - Group: 'Bone.002', Weight: 0.0027899863198399544 - Group: 'Bone.020', Weight: 0.34702253341674805 -Vertex 2043: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2660539150238037 - Group: 'Bone.020', Weight: 0.7789483666419983 -Vertex 2044: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370262861251831 - Group: 'Bone.002', Weight: 0.03152243047952652 - Group: 'Bone.020', Weight: 0.38828492164611816 -Vertex 2045: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0003679707588162273 - Group: 'Bone.005', Weight: 0.9255130290985107 - Group: 'Bone.020', Weight: 0.3810221254825592 -Vertex 2046: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9253545999526978 - Group: 'Bone.020', Weight: 0.26827472448349 -Vertex 2047: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9082291722297668 -Vertex 2048: -Vertex groups: 2 - Group: 'Bone', Weight: 0.716545820236206 - Group: 'Bone.020', Weight: 0.025996865704655647 -Vertex 2049: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8474403619766235 -Vertex 2050: -Vertex groups: 2 - Group: 'Bone.005', Weight: 0.9244058728218079 - Group: 'Bone.020', Weight: 0.010694457218050957 -Vertex 2051: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0006096247234381735 - Group: 'Bone.009', Weight: 0.006055811420083046 -Vertex 2052: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8561203479766846 -Vertex 2053: -Vertex groups: 1 - Group: 'Bone.005', Weight: 0.9189656376838684 -Vertex 2054: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8818888664245605 -Vertex 2055: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9714851379394531 -Vertex 2056: -Vertex groups: 3 - Group: 'Bone', Weight: 0.10120570659637451 - Group: 'Bone.008', Weight: 2.900128129113e-05 - Group: 'Bone.009', Weight: 0.035348400473594666 -Vertex 2057: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4937639534473419 - Group: 'Bone.001', Weight: 0.1962788999080658 - Group: 'Bone.017', Weight: 0.5910996794700623 -Vertex 2058: -Vertex groups: 3 - Group: 'Bone', Weight: 0.33748066425323486 - Group: 'Bone.001', Weight: 0.2803996503353119 - Group: 'Bone.017', Weight: 0.6290571689605713 -Vertex 2059: -Vertex groups: 3 - Group: 'Bone', Weight: 0.12782758474349976 - Group: 'Bone.001', Weight: 0.41593167185783386 - Group: 'Bone.017', Weight: 0.6096845269203186 -Vertex 2060: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011773424223065376 - Group: 'Bone.001', Weight: 0.4707968831062317 - Group: 'Bone.017', Weight: 0.5059013962745667 -Vertex 2061: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06258145719766617 - Group: 'Bone.001', Weight: 0.34954407811164856 - Group: 'Bone.017', Weight: 0.5340985655784607 -Vertex 2062: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20888927578926086 - Group: 'Bone.001', Weight: 0.4188723862171173 - Group: 'Bone.017', Weight: 0.5719171762466431 -Vertex 2063: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22207315266132355 - Group: 'Bone.001', Weight: 0.5619766712188721 - Group: 'Bone.017', Weight: 0.6473966836929321 -Vertex 2064: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22075098752975464 - Group: 'Bone.001', Weight: 0.6006755828857422 - Group: 'Bone.017', Weight: 0.6292382478713989 -Vertex 2065: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2208554446697235 - Group: 'Bone.001', Weight: 0.5963418483734131 - Group: 'Bone.017', Weight: 0.6508263349533081 -Vertex 2066: -Vertex groups: 3 - Group: 'Bone', Weight: 0.21060341596603394 - Group: 'Bone.001', Weight: 0.5147286057472229 - Group: 'Bone.017', Weight: 0.6510235071182251 -Vertex 2067: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5372461080551147 - Group: 'Bone.001', Weight: 0.4302692711353302 - Group: 'Bone.017', Weight: 0.6369553804397583 -Vertex 2068: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5320814847946167 - Group: 'Bone.001', Weight: 0.7430121898651123 - Group: 'Bone.017', Weight: 0.6430104970932007 -Vertex 2069: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2534996271133423 - Group: 'Bone.001', Weight: 0.751028299331665 - Group: 'Bone.017', Weight: 0.6596911549568176 -Vertex 2070: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04134001210331917 - Group: 'Bone.001', Weight: 0.7254793047904968 - Group: 'Bone.017', Weight: 0.6588659882545471 -Vertex 2071: -Vertex groups: 4 - Group: 'Bone', Weight: 0.0384901724755764 - Group: 'Bone.001', Weight: 0.7338229417800903 - Group: 'Bone.017', Weight: 0.660473108291626 - Group: 'Bone.019', Weight: 0.0071802567690610886 -Vertex 2072: -Vertex groups: 3 - Group: 'Bone', Weight: 0.15296682715415955 - Group: 'Bone.001', Weight: 0.6405988335609436 - Group: 'Bone.017', Weight: 0.6494307518005371 -Vertex 2073: -Vertex groups: 4 - Group: 'Bone', Weight: 0.28823691606521606 - Group: 'Bone.001', Weight: 0.605425238609314 - Group: 'Bone.017', Weight: 0.48851168155670166 - Group: 'Bone.019', Weight: 0.00011073777568526566 -Vertex 2074: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2222350537776947 - Group: 'Bone.001', Weight: 0.6049286127090454 - Group: 'Bone.017', Weight: 0.6546851396560669 -Vertex 2075: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22222860157489777 - Group: 'Bone.001', Weight: 0.5663058757781982 - Group: 'Bone.017', Weight: 0.6010057330131531 -Vertex 2076: -Vertex groups: 4 - Group: 'Bone', Weight: 0.22334976494312286 - Group: 'Bone.001', Weight: 0.3048090934753418 - Group: 'Bone.002', Weight: 0.0005999435670673847 - Group: 'Bone.017', Weight: 0.6184049844741821 -Vertex 2077: -Vertex groups: 4 - Group: 'Bone', Weight: 0.3353959918022156 - Group: 'Bone.001', Weight: 0.2459646463394165 - Group: 'Bone.002', Weight: 0.0060083819553256035 - Group: 'Bone.017', Weight: 0.014890891499817371 -Vertex 2078: -Vertex groups: 3 - Group: 'Bone', Weight: 0.3059978783130646 - Group: 'Bone.001', Weight: 0.3059070110321045 - Group: 'Bone.017', Weight: 0.023845139890909195 -Vertex 2079: -Vertex groups: 3 - Group: 'Bone', Weight: 0.36273714900016785 - Group: 'Bone.001', Weight: 0.7193559408187866 - Group: 'Bone.019', Weight: 0.3247917592525482 -Vertex 2080: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01989702694118023 - Group: 'Bone.001', Weight: 0.47603878378868103 - Group: 'Bone.019', Weight: 0.7661817073822021 -Vertex 2081: -Vertex groups: 3 - Group: 'Bone.001', Weight: 0.04184889793395996 - Group: 'Bone.003', Weight: 0.0014910578029230237 - Group: 'Bone.019', Weight: 0.8642698526382446 -Vertex 2082: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4899385869503021 - Group: 'Bone.019', Weight: 0.7838307619094849 -Vertex 2083: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48919904232025146 - Group: 'Bone.019', Weight: 0.855003833770752 -Vertex 2084: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.7870789766311646 - Group: 'Bone.019', Weight: 0.22998732328414917 -Vertex 2085: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8642288446426392 -Vertex 2086: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.884673535823822 -Vertex 2087: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909209668636322 -Vertex 2088: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9012101292610168 -Vertex 2089: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6969340443611145 -Vertex 2090: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16199210286140442 - Group: 'Bone.001', Weight: 0.7503730058670044 - Group: 'Bone.019', Weight: 0.33950430154800415 -Vertex 2091: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5484620928764343 - Group: 'Bone.001', Weight: 0.7592359185218811 - Group: 'Bone.019', Weight: 0.3148564398288727 -Vertex 2092: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5371038317680359 - Group: 'Bone.001', Weight: 0.0024846468586474657 - Group: 'Bone.019', Weight: 0.2761439383029938 -Vertex 2093: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 2.851577285412077e-08 - Group: 'Bone.019', Weight: 0.24024522304534912 -Vertex 2094: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8446110486984253 - Group: 'Bone.019', Weight: 0.3218480944633484 - Group: 'Bone.001', Weight: 0.0 -Vertex 2095: -Vertex groups: 2 - Group: 'Bone', Weight: 0.3269881010055542 - Group: 'Bone.019', Weight: 0.30931854248046875 -Vertex 2096: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5165446996688843 - Group: 'Bone.001', Weight: 0.24934977293014526 - Group: 'Bone.019', Weight: 0.21637164056301117 -Vertex 2097: -Vertex groups: 4 - Group: 'Bone', Weight: 0.8044102787971497 - Group: 'Bone.001', Weight: 0.598133385181427 - Group: 'Bone.017', Weight: 0.0023836714681237936 - Group: 'Bone.019', Weight: 0.0012931314995512366 -Vertex 2098: -Vertex groups: 3 - Group: 'Bone', Weight: 0.7861859202384949 - Group: 'Bone.001', Weight: 0.6041586995124817 - Group: 'Bone.019', Weight: 0.3290158212184906 -Vertex 2099: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8227914571762085 - Group: 'Bone.001', Weight: 0.6028863787651062 - Group: 'Bone.019', Weight: 0.3102220296859741 -Vertex 2100: -Vertex groups: 3 - Group: 'Bone', Weight: 0.28179067373275757 - Group: 'Bone.001', Weight: 0.23928621411323547 - Group: 'Bone.019', Weight: 0.33920982480049133 -Vertex 2101: -Vertex groups: 2 - Group: 'Bone', Weight: 0.25934234261512756 - Group: 'Bone.019', Weight: 0.3393256366252899 -Vertex 2102: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8159911036491394 - Group: 'Bone.019', Weight: 0.3495370149612427 -Vertex 2103: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370451211929321 - Group: 'Bone.001', Weight: 9.737810557908233e-08 - Group: 'Bone.019', Weight: 0.3410862684249878 -Vertex 2104: -Vertex groups: 3 - Group: 'Bone', Weight: 0.551862895488739 - Group: 'Bone.001', Weight: 0.001404701848514378 - Group: 'Bone.019', Weight: 0.3328368067741394 -Vertex 2105: -Vertex groups: 3 - Group: 'Bone', Weight: 0.669015645980835 - Group: 'Bone.001', Weight: 0.7592587471008301 - Group: 'Bone.019', Weight: 0.33835870027542114 -Vertex 2106: -Vertex groups: 3 - Group: 'Bone', Weight: 0.023679202422499657 - Group: 'Bone.001', Weight: 0.7440932989120483 - Group: 'Bone.019', Weight: 0.8400124311447144 -Vertex 2107: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.0962342768907547 - Group: 'Bone.019', Weight: 0.8655157089233398 -Vertex 2108: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4831545948982239 - Group: 'Bone.019', Weight: 0.8109387755393982 -Vertex 2109: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.498027503490448 - Group: 'Bone.019', Weight: 0.8154587745666504 -Vertex 2110: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6440632939338684 - Group: 'Bone.019', Weight: 0.1680716872215271 -Vertex 2111: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7662738561630249 -Vertex 2112: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9127210378646851 -Vertex 2113: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9103946089744568 -Vertex 2114: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9020301103591919 -Vertex 2115: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.7172279357910156 -Vertex 2116: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16352714598178864 - Group: 'Bone.001', Weight: 0.7592589259147644 - Group: 'Bone.019', Weight: 0.8547370433807373 -Vertex 2117: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5205658674240112 - Group: 'Bone.001', Weight: 0.0049001662991940975 - Group: 'Bone.019', Weight: 0.8690322041511536 -Vertex 2118: -Vertex groups: 3 - Group: 'Bone', Weight: 0.38612693548202515 - Group: 'Bone.019', Weight: 0.31422412395477295 - Group: 'Bone.001', Weight: 0.0 -Vertex 2119: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7082890868186951 - Group: 'Bone.019', Weight: 0.7482312321662903 -Vertex 2120: -Vertex groups: 2 - Group: 'Bone', Weight: 0.22442013025283813 - Group: 'Bone.019', Weight: 0.85601407289505 -Vertex 2121: -Vertex groups: 3 - Group: 'Bone', Weight: 0.13001243770122528 - Group: 'Bone.001', Weight: 0.009173105470836163 - Group: 'Bone.019', Weight: 0.6394990682601929 -Vertex 2122: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0769721269607544 - Group: 'Bone.001', Weight: 0.2565513551235199 - Group: 'Bone.019', Weight: 0.49965181946754456 -Vertex 2123: -Vertex groups: 4 - Group: 'Bone', Weight: 2.884945752157364e-05 - Group: 'Bone.001', Weight: 0.00031541677890345454 - Group: 'Bone.003', Weight: 0.006384745705872774 - Group: 'Bone.019', Weight: 0.8620535135269165 -Vertex 2124: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48260611295700073 - Group: 'Bone.019', Weight: 0.8543375134468079 -Vertex 2125: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48178184032440186 - Group: 'Bone.019', Weight: 0.8699126243591309 -Vertex 2126: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.5898439288139343 - Group: 'Bone.019', Weight: 0.4921235144138336 -Vertex 2127: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.892120361328125 - Group: 'Bone.019', Weight: 5.690723628504202e-05 -Vertex 2128: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9004399180412292 -Vertex 2129: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9058812856674194 -Vertex 2130: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8840593099594116 -Vertex 2131: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6403117179870605 -Vertex 2132: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06288675963878632 - Group: 'Bone.001', Weight: 0.24940966069698334 - Group: 'Bone.019', Weight: 0.522996723651886 -Vertex 2133: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0018693875754252076 - Group: 'Bone.003', Weight: 0.035268958657979965 - Group: 'Bone.019', Weight: 0.8703492283821106 -Vertex 2134: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0001786275824997574 - Group: 'Bone.003', Weight: 0.48344457149505615 - Group: 'Bone.019', Weight: 0.8697834014892578 -Vertex 2135: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.48302385210990906 - Group: 'Bone.019', Weight: 0.8666332960128784 -Vertex 2136: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.6905149221420288 - Group: 'Bone.019', Weight: 0.4374362826347351 -Vertex 2137: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.908560574054718 -Vertex 2138: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135680198669434 -Vertex 2139: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.909873366355896 -Vertex 2140: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8902109265327454 -Vertex 2141: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6588597893714905 -Vertex 2142: -Vertex groups: 3 - Group: 'Bone', Weight: 0.07538775354623795 - Group: 'Bone.003', Weight: 0.022730160504579544 - Group: 'Bone.019', Weight: 0.8696448802947998 -Vertex 2143: -Vertex groups: 3 - Group: 'Bone', Weight: 0.016038818284869194 - Group: 'Bone.003', Weight: 0.4838883876800537 - Group: 'Bone.019', Weight: 0.8699580430984497 -Vertex 2144: -Vertex groups: 3 - Group: 'Bone', Weight: 0.003833683906123042 - Group: 'Bone.003', Weight: 0.5450201630592346 - Group: 'Bone.019', Weight: 0.7631115317344666 -Vertex 2145: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0002683525672182441 - Group: 'Bone.003', Weight: 0.8503948450088501 - Group: 'Bone.019', Weight: 0.09874068200588226 -Vertex 2146: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9129960536956787 -Vertex 2147: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133521318435669 -Vertex 2148: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135801792144775 -Vertex 2149: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.870356023311615 -Vertex 2150: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5913198590278625 -Vertex 2151: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22230735421180725 - Group: 'Bone.003', Weight: 0.015918074175715446 - Group: 'Bone.019', Weight: 0.8688360452651978 -Vertex 2152: -Vertex groups: 3 - Group: 'Bone', Weight: 0.16949841380119324 - Group: 'Bone.003', Weight: 0.8132467865943909 - Group: 'Bone.019', Weight: 0.8694364428520203 -Vertex 2153: -Vertex groups: 3 - Group: 'Bone', Weight: 0.04385790601372719 - Group: 'Bone.003', Weight: 0.9090870022773743 - Group: 'Bone.019', Weight: 0.7322637438774109 -Vertex 2154: -Vertex groups: 3 - Group: 'Bone', Weight: 0.011904995888471603 - Group: 'Bone.003', Weight: 0.9135782718658447 - Group: 'Bone.019', Weight: 0.005179595202207565 -Vertex 2155: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00041442830115556717 - Group: 'Bone.003', Weight: 0.9135785102844238 -Vertex 2156: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9133786559104919 -Vertex 2157: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9112131595611572 -Vertex 2158: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8889446258544922 -Vertex 2159: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6605839133262634 -Vertex 2160: -Vertex groups: 3 - Group: 'Bone', Weight: 0.22311583161354065 - Group: 'Bone.003', Weight: 0.008605518378317356 - Group: 'Bone.019', Weight: 0.8122735023498535 -Vertex 2161: -Vertex groups: 3 - Group: 'Bone', Weight: 0.19944609701633453 - Group: 'Bone.003', Weight: 0.7518014311790466 - Group: 'Bone.019', Weight: 0.8678725361824036 -Vertex 2162: -Vertex groups: 3 - Group: 'Bone', Weight: 0.06896208971738815 - Group: 'Bone.003', Weight: 0.9120296239852905 - Group: 'Bone.019', Weight: 0.5257700681686401 -Vertex 2163: -Vertex groups: 2 - Group: 'Bone', Weight: 0.020703839138150215 - Group: 'Bone.003', Weight: 0.9132521748542786 -Vertex 2164: -Vertex groups: 2 - Group: 'Bone', Weight: 0.001454471843317151 - Group: 'Bone.003', Weight: 0.9122639298439026 -Vertex 2165: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.903771698474884 -Vertex 2166: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9123044610023499 -Vertex 2167: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8746376633644104 -Vertex 2168: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.6540307402610779 -Vertex 2169: -Vertex groups: 4 - Group: 'Bone', Weight: 0.11326328665018082 - Group: 'Bone.003', Weight: 0.06872649490833282 - Group: 'Bone.019', Weight: 0.642318844795227 - Group: 'Bone.001', Weight: 0.0 -Vertex 2170: -Vertex groups: 3 - Group: 'Bone', Weight: 0.01995832286775112 - Group: 'Bone.003', Weight: 0.48715245723724365 - Group: 'Bone.019', Weight: 0.45309603214263916 -Vertex 2171: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0010193053167313337 - Group: 'Bone.003', Weight: 0.7936093211174011 - Group: 'Bone.019', Weight: 0.10322554409503937 -Vertex 2172: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.8027834892272949 - Group: 'Bone.019', Weight: 0.00018093717517331243 -Vertex 2173: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.911983072757721 -Vertex 2174: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9010961055755615 -Vertex 2175: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8980411291122437 -Vertex 2176: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8364611268043518 -Vertex 2177: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5140823721885681 -Vertex 2178: -Vertex groups: 4 - Group: 'Bone', Weight: 0.16903668642044067 - Group: 'Bone.001', Weight: 0.02023293450474739 - Group: 'Bone.003', Weight: 0.0010986605193465948 - Group: 'Bone.019', Weight: 0.8376069068908691 -Vertex 2179: -Vertex groups: 2 - Group: 'Bone.001', Weight: 0.5941541790962219 - Group: 'Bone.019', Weight: 0.8683758974075317 -Vertex 2180: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.34792861342430115 - Group: 'Bone.019', Weight: 0.8466821312904358 -Vertex 2181: -Vertex groups: 4 - Group: 'Bone', Weight: 0.15381887555122375 - Group: 'Bone.003', Weight: 0.48170769214630127 - Group: 'Bone.019', Weight: 0.8384891748428345 - Group: 'Bone.001', Weight: 0.0 -Vertex 2182: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.4819498360157013 - Group: 'Bone.019', Weight: 0.8435502052307129 -Vertex 2183: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.5383453965187073 - Group: 'Bone.019', Weight: 0.8058308362960815 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.13470034301280975 -Vertex 2184: -Vertex groups: 2 - Group: 'Bone.003', Weight: 0.622546911239624 - Group: 'Bone.019', Weight: 0.1134270653128624 -Vertex 2185: -Vertex groups: 4 - Group: 'Bone.003', Weight: 0.650120735168457 - Group: 'Bone.019', Weight: 0.03068242035806179 - Group: 'Bone.001', Weight: 0.0 - Group: 'Bone', Weight: 0.0008958065882325172 -Vertex 2186: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8477078676223755 -Vertex 2187: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9002895355224609 -Vertex 2188: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8984965085983276 -Vertex 2189: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9076868891716003 -Vertex 2190: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9097669124603271 -Vertex 2191: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9044426679611206 -Vertex 2192: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8769593834877014 -Vertex 2193: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.727333128452301 -Vertex 2194: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.26155760884284973 -Vertex 2195: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5900701880455017 -Vertex 2196: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5736561417579651 - Group: 'Bone.001', Weight: 0.456780344247818 - Group: 'Bone.019', Weight: 0.0291464664041996 -Vertex 2197: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5747989416122437 - Group: 'Bone.001', Weight: 0.5016745924949646 - Group: 'Bone.017', Weight: 2.9240958610898815e-05 -Vertex 2198: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5674872994422913 - Group: 'Bone.001', Weight: 5.9069832786917686e-05 - Group: 'Bone.019', Weight: 0.004024884197860956 -Vertex 2199: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5376659035682678 - Group: 'Bone.001', Weight: 0.19652165472507477 -Vertex 2200: -Vertex groups: 3 - Group: 'Bone', Weight: 0.640326738357544 - Group: 'Bone.001', Weight: 7.411908882204443e-05 - Group: 'Bone.019', Weight: 0.2513620853424072 -Vertex 2201: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5771398544311523 - Group: 'Bone.001', Weight: 0.00659797852858901 - Group: 'Bone.019', Weight: 4.00139470002614e-06 -Vertex 2202: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5390236377716064 - Group: 'Bone.001', Weight: 0.0 -Vertex 2203: -Vertex groups: 2 - Group: 'Bone', Weight: 0.537453830242157 - Group: 'Bone.001', Weight: 0.0 -Vertex 2204: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5504456758499146 - Group: 'Bone.001', Weight: 0.0 -Vertex 2205: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5373719334602356 - Group: 'Bone.001', Weight: 0.0 -Vertex 2206: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6296436190605164 - Group: 'Bone.019', Weight: 0.008257000707089901 - Group: 'Bone.001', Weight: 0.0 -Vertex 2207: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8550821542739868 - Group: 'Bone.019', Weight: 0.07590465247631073 -Vertex 2208: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6062835454940796 - Group: 'Bone.019', Weight: 0.33943086862564087 -Vertex 2209: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5489317178726196 - Group: 'Bone.001', Weight: 0.0 -Vertex 2210: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8570448756217957 - Group: 'Bone.019', Weight: 0.0009272648603655398 -Vertex 2211: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8402199149131775 - Group: 'Bone.019', Weight: 0.08913616091012955 -Vertex 2212: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5547479391098022 -Vertex 2213: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5940132141113281 -Vertex 2214: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5527427196502686 - Group: 'Bone.001', Weight: 0.0 -Vertex 2215: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8768099546432495 - Group: 'Bone.001', Weight: 0.0 -Vertex 2216: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9008077383041382 -Vertex 2217: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8362331986427307 -Vertex 2218: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9613276124000549 -Vertex 2219: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7739046812057495 - Group: 'Bone.010', Weight: 0.0 -Vertex 2220: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8704529404640198 - Group: 'Bone.001', Weight: 0.0 -Vertex 2221: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9963401556015015 -Vertex 2222: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9499073624610901 -Vertex 2223: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579961061477661 -Vertex 2224: -Vertex groups: 3 - Group: 'Bone', Weight: 0.4966181516647339 - Group: 'Bone.001', Weight: 0.4406551718711853 - Group: 'Bone.017', Weight: 0.04988135024905205 -Vertex 2225: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8426170945167542 - Group: 'Bone.001', Weight: 0.1917268931865692 - Group: 'Bone.019', Weight: 3.686467607622035e-05 -Vertex 2226: -Vertex groups: 3 - Group: 'Bone', Weight: 0.527841329574585 - Group: 'Bone.001', Weight: 0.24678972363471985 - Group: 'Bone.019', Weight: 0.321690171957016 -Vertex 2227: -Vertex groups: 4 - Group: 'Bone', Weight: 0.6196498274803162 - Group: 'Bone.001', Weight: 0.18962866067886353 - Group: 'Bone.019', Weight: 0.0506400540471077 - Group: 'Bone.007', Weight: 0.0 -Vertex 2228: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8096480369567871 - Group: 'Bone.007', Weight: 0.0 -Vertex 2229: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577462434768677 -Vertex 2230: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8806244730949402 -Vertex 2231: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9612431526184082 -Vertex 2232: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9999770522117615 -Vertex 2233: -Vertex groups: 1 - Group: 'Bone', Weight: 0.999779999256134 -Vertex 2234: -Vertex groups: 1 - Group: 'Bone', Weight: 0.998011589050293 -Vertex 2235: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9890933632850647 -Vertex 2236: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9727264642715454 -Vertex 2237: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8543583154678345 - Group: 'Bone.001', Weight: 0.24680955708026886 -Vertex 2238: -Vertex groups: 3 - Group: 'Bone', Weight: 0.8502779603004456 - Group: 'Bone.001', Weight: 0.24682214856147766 - Group: 'Bone.002', Weight: 0.0013312948867678642 -Vertex 2239: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8539016842842102 - Group: 'Bone.001', Weight: 0.18964660167694092 -Vertex 2240: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8563956022262573 - Group: 'Bone.007', Weight: 0.0 -Vertex 2241: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577989935874939 -Vertex 2242: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9450138807296753 -Vertex 2243: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8659285306930542 -Vertex 2244: -Vertex groups: 2 - Group: 'Bone', Weight: 0.843024492263794 - Group: 'Bone.007', Weight: 0.0005702608032152057 -Vertex 2245: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8254867196083069 -Vertex 2246: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8080057501792908 -Vertex 2247: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8434308767318726 -Vertex 2248: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8907046914100647 -Vertex 2249: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8659927248954773 - Group: 'Bone.010', Weight: 0.0 -Vertex 2250: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8577430844306946 -Vertex 2251: -Vertex groups: 2 - Group: 'Bone', Weight: 0.6771449446678162 - Group: 'Bone.010', Weight: 0.005456089042127132 -Vertex 2252: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6870198845863342 - Group: 'Bone.010', Weight: 0.0 - Group: 'Bone.007', Weight: 0.0 -Vertex 2253: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6256878972053528 - Group: 'Bone.007', Weight: 0.0037197342608124018 - Group: 'Bone.010', Weight: 0.0 -Vertex 2254: -Vertex groups: 2 - Group: 'Bone', Weight: 0.5531655550003052 - Group: 'Bone.010', Weight: 0.0 -Vertex 2255: -Vertex groups: 1 - Group: 'Bone', Weight: 0.3665863871574402 -Vertex 2256: -Vertex groups: 1 - Group: 'Bone', Weight: 0.16883036494255066 -Vertex 2257: -Vertex groups: 1 - Group: 'Bone', Weight: 0.30172649025917053 -Vertex 2258: -Vertex groups: 1 - Group: 'Bone', Weight: 0.5636988282203674 -Vertex 2259: -Vertex groups: 1 - Group: 'Bone', Weight: 0.012452268041670322 -Vertex 2260: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026035239920020103 - Group: 'Bone.010', Weight: 0.0010547785786911845 -Vertex 2261: -Vertex groups: 1 - Group: 'Bone', Weight: 0.016943812370300293 -Vertex 2262: -Vertex groups: 2 - Group: 'Bone', Weight: 0.08507823944091797 - Group: 'Bone.010', Weight: 0.0 -Vertex 2263: -Vertex groups: 2 - Group: 'Bone', Weight: 0.1745375692844391 - Group: 'Bone.010', Weight: 0.0010215530637651682 -Vertex 2264: -Vertex groups: 3 - Group: 'Bone', Weight: 0.20134496688842773 - Group: 'Bone.007', Weight: 0.002132100984454155 - Group: 'Bone.010', Weight: 6.19207858107984e-05 -Vertex 2265: -Vertex groups: 3 - Group: 'Bone', Weight: 0.23580202460289001 - Group: 'Bone.007', Weight: 0.0956849604845047 - Group: 'Bone.010', Weight: 0.0011248408118262887 -Vertex 2266: -Vertex groups: 3 - Group: 'Bone', Weight: 0.24104271829128265 - Group: 'Bone.007', Weight: 0.1020280048251152 - Group: 'Bone.010', Weight: 0.014522138051688671 -Vertex 2267: -Vertex groups: 2 - Group: 'Bone', Weight: 0.026728816330432892 - Group: 'Bone.010', Weight: 0.038513779640197754 -Vertex 2268: -Vertex groups: 2 - Group: 'Bone', Weight: 0.013007023371756077 - Group: 'Bone.010', Weight: 0.08415423333644867 -Vertex 2269: -Vertex groups: 3 - Group: 'Bone', Weight: 0.00232179113663733 - Group: 'Bone.010', Weight: 0.061603084206581116 - Group: 'Bone.007', Weight: 0.0 -Vertex 2270: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0014068633317947388 - Group: 'Bone.010', Weight: 0.03607906773686409 -Vertex 2271: -Vertex groups: 2 - Group: 'Bone', Weight: 0.00012634116865228862 - Group: 'Bone.010', Weight: 0.025580156594514847 -Vertex 2272: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.011975654400885105 -Vertex 2273: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.03779645636677742 -Vertex 2274: -Vertex groups: 1 - Group: 'Bone.010', Weight: 0.003499736310914159 -Vertex 2275: -Vertex groups: 3 - Group: 'Bone', Weight: 0.6405783891677856 - Group: 'Bone.007', Weight: 0.0016090882709249854 - Group: 'Bone.010', Weight: 1.0987286032104748e-06 -Vertex 2276: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2268013209104538 - Group: 'Bone.003', Weight: 0.004806642420589924 - Group: 'Bone.019', Weight: 0.8572536706924438 -Vertex 2277: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.8665817379951477 -Vertex 2278: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5313237905502319 - Group: 'Bone.001', Weight: 0.03357388451695442 - Group: 'Bone.019', Weight: 0.33947911858558655 -Vertex 2279: -Vertex groups: 3 - Group: 'Bone', Weight: 0.05757206678390503 - Group: 'Bone.003', Weight: 0.6826171278953552 - Group: 'Bone.019', Weight: 0.8695490956306458 -Vertex 2280: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.5813059210777283 -Vertex 2281: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370369553565979 - Group: 'Bone.001', Weight: 0.003375070635229349 - Group: 'Bone.019', Weight: 0.33416908979415894 -Vertex 2282: -Vertex groups: 2 - Group: 'Bone', Weight: 0.2248452752828598 - Group: 'Bone.019', Weight: 0.544377326965332 -Vertex 2283: -Vertex groups: 3 - Group: 'Bone', Weight: 0.5370367765426636 - Group: 'Bone.001', Weight: 0.05698928236961365 - Group: 'Bone.019', Weight: 0.33489546179771423 -Vertex 2284: -Vertex groups: 3 - Group: 'Bone', Weight: 0.015020866878330708 - Group: 'Bone.003', Weight: 0.805801510810852 - Group: 'Bone.019', Weight: 0.5808215737342834 -Vertex 2285: -Vertex groups: 3 - Group: 'Bone', Weight: 0.0026177638210356236 - Group: 'Bone.003', Weight: 0.9057215452194214 - Group: 'Bone.019', Weight: 0.0015531096141785383 -Vertex 2286: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9130526185035706 -Vertex 2287: -Vertex groups: 3 - Group: 'Bone', Weight: 0.537029504776001 - Group: 'Bone.019', Weight: 0.10199544578790665 - Group: 'Bone.007', Weight: 0.0 -Vertex 2288: -Vertex groups: 2 - Group: 'Bone', Weight: 0.7239447832107544 - Group: 'Bone.007', Weight: 0.0 -Vertex 2289: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9135665893554688 -Vertex 2290: -Vertex groups: 2 - Group: 'Bone', Weight: 0.0071668680757284164 - Group: 'Bone.010', Weight: 0.06486101448535919 -Vertex 2291: -Vertex groups: 1 - Group: 'Bone', Weight: 0.8579387664794922 -Vertex 2292: -Vertex groups: 1 - Group: 'Bone.003', Weight: 0.9132552146911621 -Vertex 2293: -Vertex groups: 2 - Group: 'Bone', Weight: 0.8604859709739685 - Group: 'Bone.010', Weight: 0.0 -Vertex 2294: -Vertex groups: 1 - Group: 'Bone', Weight: 0.9797206521034241 -Vertex 2295: -Vertex groups: 3 - Group: 'Bone', Weight: 0.2102178931236267 - Group: 'Bone.007', Weight: 0.006347442511469126 - Group: 'Bone.010', Weight: 0.0008556771208532155 -=== Animation Keyframes === -=== Bone Transforms per Keyframe === -Keyframes: 14 -Frame: 0 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 5 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 7 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 8 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 10 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 15 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 16 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 17 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 20 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 22 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 23 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 24 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 25 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - - -Frame: 30 - Bone: Bone - Location: - Rotation: - Matrix: - - - - - Bone: Bone.003 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.004 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.005 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.006 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.017 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.018 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.001 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.019 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.002 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.020 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.007 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.010 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.011 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.015 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.016 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.008 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.009 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.012 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.013 - Location: - Rotation: - Matrix: - - - - - Bone: Bone.014 - Location: - Rotation: - Matrix: - - - -